blob: ea42769f762c0022536c3caf9283b7223eff00f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
source 'https://rubygems.org'
gemspec
unless ENV.fetch('ASCIIDOCTOR_VERSION', '').empty?
if (match = ENV['ASCIIDOCTOR_VERSION'].match(/^git:(\w+)/))
gem 'asciidoctor', github: 'asciidoctor/asciidoctor', ref: match[1]
else
gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION']
end
end
group :development do
# Keep in sync with version used for asciidoctor.js.
gem 'opal', '~> 0.11.0'
end
group :ci do
gem 'codacy-coverage', '~> 1.1', require: false
end
|