-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathGemfile
62 lines (47 loc) · 1.25 KB
/
Gemfile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
source "https://rubygems.org"
# gem 'slyphon-zookeeper', :path => '~/zookeeper'
# gem 'zookeeper', :path => "~/zookeeper"
# this is the last known commit that we tested against and is passing.
# keep closer track of this stuff to make bisecting easier and travis more
# accurate
# git 'git://github.com/slyphon/zookeeper.git', :tag => 'dev/zk/00013' do
# gem 'zookeeper', '~> 1.3.0'
# end
group :development, :test do
if RUBY_VERSION >= '1.9.3'
gem 'rake'
else
gem 'rake', '~> 10.5'
end
end
group :docs do
gem 'yard', '>= 0.9.20'
platform :mri_19 do
gem 'redcarpet'
end
end
# platform :mri_19 do
# gem 'simplecov', :group => :coverage, :require => false
# end
group :development do
gem 'guard', :require => false
gem 'guard-rspec', :require => false
gem 'guard-shell', :require => false
gem 'guard-bundler', :require => false
if RUBY_PLATFORM =~ /darwin/i
gem 'growl', :require => false
gem 'rb-readline', :platform => :ruby
end
platform :mri do
gem 'pry-byebug'
end
end
group :test do
gem 'pry'
gem 'rspec', '~> 3.6.0'
gem 'zk-server', '~> 1.1.4'
gem 'test-unit', :platforms => [:ruby_22, :ruby_23, :ruby_24]
end
# Specify your gem's dependencies in zk.gemspec
gemspec
# vim:ft=ruby