Sha256: 689ac52f0ebef35a48812fafd784c66fba475b86e2a70e93ca70d0f685233124
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('lib/asciidoctor-pdf/version', File.dirname(__FILE__)) require 'open3' unless defined? Open3 Gem::Specification.new do |s| s.name = 'asciidoctor-pdf' s.version = Asciidoctor::Pdf::VERSION s.summary = 'Converts AsciiDoc documents to PDF using Prawn' s.description = <<-EOS An extension for Asciidoctor that converts AsciiDoc documents to PDF using the Prawn PDF library. EOS s.authors = ['Dan Allen', 'Sarah White'] s.email = 'dan@opendevise.io' s.homepage = 'https://github.com/asciidoctor/asciidoctor-pdf' s.license = 'MIT' s.required_ruby_version = '>= 1.9.3' files = begin (result = Open3.popen3('git ls-files -z') {|_, out| out.read }.split %(\0)).empty? ? Dir['**/*'] : result rescue Dir['**/*'] end s.files = files.grep /^(?:(?:data|docs|lib)\/.+|Gemfile|Rakefile|(?:LICENSE|NOTICE|README)\.adoc|#{s.name}\.gemspec)$/ # FIXME optimize-pdf is currently a shell script, so listing it here won't work #s.executables = ['asciidoctor-pdf', 'optimize-pdf'] s.executables = ['asciidoctor-pdf'] s.test_files = files.grep /^(?:test|spec|feature)\/.*$/ s.require_paths = ['lib'] s.has_rdoc = true s.rdoc_options = ['--charset=UTF-8', '--title="Asciidoctor PDF"', '--main=README.adoc', '-ri'] s.extra_rdoc_files = ['README.adoc', 'LICENSE.adoc', 'NOTICE.adoc'] s.add_development_dependency 'rake' #s.add_development_dependency 'rdoc', '~> 4.1.0' s.add_runtime_dependency 'asciidoctor', '>= 1.5.0' # Prawn 2.x requires Ruby 2.x, so cast a wider net s.add_runtime_dependency 'prawn', '>= 1.3.0', '< 3.0.0' s.add_runtime_dependency 'prawn-table', '0.2.2' s.add_runtime_dependency 'prawn-templates', '0.0.3' s.add_runtime_dependency 'prawn-svg', '0.25.1' s.add_runtime_dependency 'prawn-icon', '1.1.0' s.add_runtime_dependency 'safe_yaml', '~> 1.0.4' s.add_runtime_dependency 'thread_safe', '~> 0.3.5' # For our usage, treetop 1.6.2 is slower than 1.5.3 s.add_runtime_dependency 'treetop', '1.5.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
asciidoctor-pdf-1.5.0.alpha.12 | asciidoctor-pdf.gemspec |