-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathasciidoctor-include-ext.gemspec
33 lines (27 loc) · 1.36 KB
/
asciidoctor-include-ext.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
require File.expand_path('lib/asciidoctor/include_ext/version', __dir__)
Gem::Specification.new do |s|
s.name = 'asciidoctor-include-ext'
s.version = Asciidoctor::IncludeExt::VERSION
s.author = 'Jakub Jirutka'
s.email = '[email protected]'
s.homepage = 'https://github.com/jirutka/asciidoctor-include-ext'
s.license = 'MIT'
s.summary = "Asciidoctor's standard include::[] processor reimplemented as an extension"
s.description = <<~EOF
This is a reimplementation of the Asciidoctor's built-in (pre)processor for the
include::[] directive in extensible and more clean way. It provides the same
features, but you can easily adjust it or extend for your needs. For example,
you can change how it loads included files or add another ways how to select
portions of the document to include.
EOF
s.files = Dir['lib/**/*', '*.gemspec', 'LICENSE*', 'README*']
s.required_ruby_version = '>= 2.3'
s.add_runtime_dependency 'asciidoctor', '>= 1.5.6', '< 3.0.0'
s.add_development_dependency 'kramdown', '~> 2.0'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'rubocop', '~> 0.51.0'
s.add_development_dependency 'simplecov', '~> 0.15'
s.add_development_dependency 'yard', '~> 0.9'
s.add_development_dependency 'webrick', '~> 1.8'
end