forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
34 lines (30 loc) · 949 Bytes
/
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
source 'https://rubygems.org'
# Look in asciidoctor.gemspec for runtime and development dependencies
gemspec
group :development do
if (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '1.9.3')
gem 'cucumber', '~> 1.3.0'
gem 'nokogiri', '~> 1.5.0'
gem 'slim', '~> 2.0.0'
elsif (Gem::Version.new RUBY_VERSION) < (Gem::Version.new '2.1.0')
gem 'nokogiri', '~> 1.6.0'
end
gem 'racc', '~> 1.4.0' if RUBY_VERSION == '2.1.0' && RUBY_ENGINE == 'rbx'
end
# enable this group to use Guard for continuous testing
# after removing comments, run `bundle install` then `guard`
#group :guardtest do
# gem 'guard'
# gem 'guard-test'
# gem 'libnotify'
# gem 'listen', :github => 'guard/listen'
#end
group :ci do
gem 'simplecov', '~> 0.9.1'
if ENV['SHIPPABLE']
gem 'simplecov-csv', '~> 0.1.3'
gem 'ci_reporter', '~> 2.0.0'
gem 'ci_reporter_minitest', '~> 1.0.0'
#gem 'ci_reporter_cucumber', '~> 1.0.0'
end
end