mirror of
https://github.com/foo-dogsquared/asciidoctor-foodogsquared-extensions.git
synced 2025-01-31 04:58:07 +00:00
20 lines
776 B
Ruby
20 lines
776 B
Ruby
|
Gem::Specification.new do |s|
|
||
|
s.name = 'asciidoctor-foodogsquared-extensions'
|
||
|
s.version = '1.0.0'
|
||
|
s.licenses = ['MIT']
|
||
|
s.summary = "foo-dogsquared's custom Asciidoctor extensions"
|
||
|
s.description = <<-EOF
|
||
|
foo-dogsquared's custom Asciidoctor extensions as a Gem. This is not meant
|
||
|
to be used in production or as a public Gem. This is used since Hugo
|
||
|
doesn't allow loading Asciidoctor extensions with path separators.
|
||
|
EOF
|
||
|
|
||
|
s.authors = ["Gabriel Arazas"]
|
||
|
s.email = "foodogsquared@foodogsquared.one"
|
||
|
s.metadata = { "source_code_uri" => "https://github.com/foo-dogsquared/foo-dogsquared.github.io" }
|
||
|
|
||
|
s.files = Dir["lib/**/*", "*.gemspec"]
|
||
|
|
||
|
s.add_runtime_dependency 'asciidoctor', '~> 2.0'
|
||
|
end
|