forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
30 lines (25 loc) · 808 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
source 'https://rubygems.org'
# Look in asciidoctor.gemspec for runtime and development dependencies
gemspec
group :development do
gem 'asciimath', ENV['ASCIIMATH_VERSION'] if ENV.key? 'ASCIIMATH_VERSION'
gem 'pygments.rb', ENV['PYGMENTS_VERSION'] if ENV.key? 'PYGMENTS_VERSION'
gem 'rouge', ENV['ROUGE_VERSION'] if ENV.key? 'ROUGE_VERSION'
gem 'haml', '~> 4.0' if RUBY_ENGINE == 'truffleruby'
end
group :docs do
gem 'yard'
gem 'yard-tomdoc'
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.16.0'
gem 'json', '~> 2.2.0' if RUBY_ENGINE == 'truffleruby'
end