Sha256: 008c254e663905512ac41bdee9ff4d158c20fb8d08db2d15ae031a0c81d13393
Contents?: true
Size: 1.25 KB
Versions: 1
Compression:
Stored size: 1.25 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path '../lib/asciidoctor-bespoke/version', __FILE__ Gem::Specification.new do |s| s.name = 'asciidoctor-bespoke' s.version = Asciidoctor::Bespoke::VERSION s.authors = ['Dan Allen'] s.email = ['dan.j.allen@gmail.com'] s.homepage = 'https://github.com/asciidoctor/asciidoctor-bespoke' s.summary = 'Converts AsciiDoc to HTML for a Bespoke.js presentation' s.description = 'An Asciidoctor converter that generates the HTML component of a Bespoke.js presentation from AsciiDoc.' 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 %r/^(?:(?:lib|templates)\/.+|Gemfile|Rakefile|LICENSE|(?:CHANGELOG|README)\.adoc|#{s.name}\.gemspec)$/ s.executables = ['asciidoctor-bespoke'] s.extra_rdoc_files = ['CHANGELOG.adoc', 'LICENSE', 'README.adoc'] s.require_paths = ['lib'] # QUESTION should asciidoctor be a runtime dependency? s.add_runtime_dependency 'asciidoctor', '>= 1.5.0' s.add_runtime_dependency 'slim', '~> 3.0.6' s.add_runtime_dependency 'thread_safe', '~> 0.3.5' s.add_development_dependency 'rake', '~> 10.4.2' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
asciidoctor-bespoke-1.0.0.alpha.2 | asciidoctor-bespoke.gemspec |