Skip to content

Commit

Permalink
Gemspec: Use less strict version requirement for asciidoctor gem
Browse files Browse the repository at this point in the history
Right now asciidoctor-reveal.js builds fails with asciidoctor-templates-compiler complains because of strict dependency requirements. Asciidoctor 2.0 is on the way and will be compatible with 1.5.8.

See asciidoctor/asciidoctor-reveal.js#216.
  • Loading branch information
obilodeau authored Nov 5, 2018
1 parent ce6493c commit beafc83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asciidoctor-templates-compiler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 2.1'

s.add_runtime_dependency 'asciidoctor', '~> 1.5'
s.add_runtime_dependency 'asciidoctor', '>= 1.5.0', '< 2.1'
s.add_runtime_dependency 'corefines', '~> 1.2'
s.add_runtime_dependency 'docopt', '~> 0.6'
s.add_runtime_dependency 'slim', '>= 2.1', '< 4.0'
Expand Down

0 comments on commit beafc83

Please sign in to comment.