forked from asciidoctor/asciidoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asciidoctor.gemspec
48 lines (44 loc) · 2.31 KB
/
asciidoctor.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- encoding: utf-8 -*-
require File.expand_path '../lib/asciidoctor/version', __FILE__
Gem::Specification.new do |s|
s.name = 'asciidoctor'
s.version = Asciidoctor::VERSION
s.summary = 'An implementation of the AsciiDoc text processor and publishing toolchain in Ruby'
s.description = 'A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML5, DocBook 5 (or 4.5) and other formats.'
s.authors = ['Dan Allen', 'Sarah White', 'Ryan Waldron', 'Jason Porter', 'Nick Hengeveld', 'Jeremy McAnally']
s.email = ['dan.j.allen@gmail.com']
s.homepage = 'http://asciidoctor.org'
s.license = 'MIT'
s.files = begin
`git ls-files -z`.split "\0"
rescue
Dir['**/*']
end.grep(/^(?:(?:bin|data|features|lib|man|test)\/.+|Rakefile|(?:CHANGELOG|CONTRIBUTING|LICENSE|README)\.adoc)$/)
s.executables = s.files.grep(/^bin\//).map {|f| File.basename f }
s.test_files = s.files.grep(/^(?:test\/.*_test\.rb|features\/.*\.(?:feature|rb))$/)
s.require_paths = ['lib']
s.has_rdoc = true
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = ['CHANGELOG.adoc', 'CONTRIBUTING.adoc', 'LICENSE.adoc']
# asciimath is needed for testing AsciiMath in DocBook backend
s.add_development_dependency 'asciimath', '~> 1.0.2'
# coderay is needed for testing syntax highlighting
s.add_development_dependency 'coderay', '~> 1.1.0'
s.add_development_dependency 'cucumber', '~> 1.3.1'
# erubis is needed for testing use of alternative eRuby impls
s.add_development_dependency 'erubis', '~> 2.7.0'
# haml is needed for testing custom templates
s.add_development_dependency 'haml', '~> 4.0.0'
s.add_development_dependency 'nokogiri', '~> 1.5.10'
s.add_development_dependency 'rake', '~> 10.0.0'
s.add_development_dependency 'rspec-expectations', '~> 2.14.0'
# slim is needed for testing custom templates
s.add_development_dependency 'slim', '~> 2.0.0'
s.add_development_dependency 'thread_safe', '~> 0.3.4'
# tilt is needed for testing custom templates
s.add_development_dependency 'tilt', '~> 2.0.0'
s.add_development_dependency 'yard', '~> 0.8.7'
s.add_development_dependency 'yard-tomdoc', '~> 0.7.0'
s.add_development_dependency 'minitest', '~> 5.3.0'
s.add_development_dependency 'racc', '~> 1.4.10' if RUBY_VERSION == '2.1.0' && RUBY_ENGINE == 'rbx'
end