File: asciidoctor-include-ext.gemspec

package info (click to toggle)
ruby-asciidoctor-include-ext 0.4.0%2Bgh-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 407; makefile: 3; ml: 1
file content (32 lines) | stat: -rw-r--r-- 1,346 bytes parent folder | download
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
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       = 'jakub@jirutka.cz'
  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'
end