mirror of
https://github.com/foo-dogsquared/asciidoctor-foodogsquared-extensions.git
synced 2025-01-30 22:57:56 +00:00
25 lines
919 B
Ruby
25 lines
919 B
Ruby
Gem::Specification.new do |s|
|
|
s.name = 'asciidoctor-foodogsquared-extensions'
|
|
s.version = '1.0.1'
|
|
s.licenses = ['MIT']
|
|
s.summary = "foo-dogsquared's custom Asciidoctor extensions"
|
|
s.description = <<-DESC
|
|
foo-dogsquared's set of Asciidoctor extensions as a Gem. This is where I
|
|
implemented several pet features that will most likely never be a part of
|
|
Asciidoctor.
|
|
DESC
|
|
|
|
s.required_ruby_version = '>= 3.0.0'
|
|
|
|
s.authors = ['Gabriel Arazas']
|
|
s.email = 'foodogsquared@foodogsquared.one'
|
|
s.metadata = { 'source_code_uri' => 'https://github.com/foo-dogsquared/asciidoctor-foodogsquared-extensions' }
|
|
|
|
s.files = Dir['lib/**/*', '*.gemspec', 'LICENSE', 'CHANGELOG.adoc', 'README.adoc']
|
|
|
|
s.add_runtime_dependency 'asciidoctor', '~> 2.0'
|
|
s.add_runtime_dependency 'rugged', '~> 1.0'
|
|
|
|
s.add_development_dependency 'rspec', '~> 3.0'
|
|
end
|