Sha256: c7cbaa81e45c56e68ace347ef3b3eb07762f5420d3733022a8db456f2a16a7ec

Contents?: true

Size: 860 Bytes

Versions: 3

Compression:

Stored size: 860 Bytes

Contents

# frozen_string_literal: true

source 'https://rubygems.org'

# Look in asciidoctor-epub3.gemspec for runtime and development dependencies.
gemspec

if ENV.key? 'ASCIIDOCTOR_VERSION'
  gem 'asciidoctor', ENV['ASCIIDOCTOR_VERSION'], require: false
  # Newer asciidoctor-diagram 1.5.x require asciidoctor >=1.5.7
  gem 'asciidoctor-diagram', '1.5.16', require: false if Gem::Version.new(ENV['ASCIIDOCTOR_VERSION']) < Gem::Version.new('2.0.0')
end

group :optional do
  # epubcheck-ruby might be safe to be converted into runtime dependency, but could have issues when packaged into asciidoctorj-epub3
  gem 'epubcheck-ruby', '~> 4.2.2.0'
  # We would like to make kindlegen a runtime dependency, but can't because of the way asciidoctorj-epub3 packaging works
  # See https://github.com/asciidoctor/asciidoctor-epub3/issues/288
  gem 'kindlegen', '~> 3.0.3'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
asciidoctor-epub3-1.5.0.alpha.17 Gemfile
asciidoctor-epub3-1.5.0.alpha.16 Gemfile
asciidoctor-epub3-1.5.0.alpha.15 Gemfile