Sha256: a31f9762b7a5b9d3598ae85c95b1b41ff44689930659c902631c39a79c9007fc
Contents?: true
Size: 1.96 KB
Versions: 1
Compression:
Stored size: 1.96 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path '../lib/asciidoctor-revealjs/version', __FILE__ require 'open3' Gem::Specification.new do |s| s.name = 'asciidoctor-revealjs' s.version = Asciidoctor::Revealjs::VERSION s.authors = ['Olivier Bilodeau'] s.email = ['olivier@bottomlesspit.org'] s.homepage = 'https://github.com/asciidoctor/asciidoctor-reveal.js' s.summary = 'Converts AsciiDoc to HTML for a Reveal.js presentation' s.description = 'Reveal.JS back-end for Asciidoctor and Asciidoctor.js. Write slides in AsciiDoc!' s.license = 'MIT' files = begin if (result = Open3.popen3('git ls-files -z') {|_, out| out.read }.split %(\0)).empty? Dir['**/*'] else # converter.rb is built locally before packaging but ignored by git. Adding manually. result + ['lib/asciidoctor-revealjs/converter.rb'] end rescue Dir['**/*'] end # TODO should we still package template files now that they are built into ruby? s.files = files.grep %r/^(?:(?:examples|lib|templates)\/.+|Gemfile|Rakefile|(?:CHANGELOG|LICENSE|README)\.adoc|#{s.name}\.gemspec)$/ s.executables = ['asciidoctor-revealjs'] s.extra_rdoc_files = Dir['README.adoc', 'LICENSE.adoc', 'HACKING.adoc'] s.require_paths = ['lib'] s.add_runtime_dependency 'asciidoctor', ['>= 1.5.6', '< 2.1'] s.add_runtime_dependency 'thread_safe', '~> 0.3.5' s.add_runtime_dependency 'concurrent-ruby', '~> 1.0' s.add_development_dependency 'rake', '~> 10.4.2' s.add_development_dependency 'asciidoctor-doctest', '= 2.0.0.beta.5' s.add_development_dependency 'pry', '~> 0.10.4' if RUBY_ENGINE != 'jruby' s.add_development_dependency 'pry-byebug' end s.add_development_dependency 'colorize' s.add_development_dependency 'asciidoctor-templates-compiler', '~> 0.4.2' s.add_development_dependency 'slim', '~> 3.0.6' s.add_development_dependency 'slim-htag', '~> 0.1.0' # Overriden in Gemfile and Gemfile.upstream for now #s.add_development_dependency 'opal', '~> 0.11.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
asciidoctor-revealjs-2.0.0 | asciidoctor-revealjs.gemspec |