forked from zk-ruby/zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (23 loc) · 726 Bytes
/
Gemfile
File metadata and controls
30 lines (23 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
source 'https://rubygems.org'
gemspec
gem 'rake', '~> 0.9.0'
group :test do
gem "rspec" , "~> 2.11"
gem 'eventmachine', '1.0.4'
gem 'evented-spec', '~> 0.9.0'
gem 'zk-server', '~> 1.0', :git => 'https://github.com/zk-ruby/zk-server.git'
end
# ffs, :platform appears to be COMLETELY BROKEN so we just DO THAT HERE
# ...BY HAND
if RUBY_VERSION != '1.8.7' && !defined?(JRUBY_VERSION)
gem 'simplecov', :group => :coverage, :require => false
gem 'yard', '~> 0.8.0', :group => :docs
gem 'redcarpet', :group => :docs
group :development do
gem 'pry'
gem 'guard', :require => false
gem 'guard-rspec', :require => false
gem 'guard-shell', :require => false
end
end
# vim:ft=ruby