2023-02-25 04:11:54 +00:00
|
|
|
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"
|
2023-03-11 08:42:43 +00:00
|
|
|
s.description = <<-DESC
|
2023-02-25 04:11:54 +00:00
|
|
|
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.
|
2023-03-11 08:42:43 +00:00
|
|
|
DESC
|
2023-02-25 04:11:54 +00:00
|
|
|
|
2023-07-07 09:34:08 +00:00
|
|
|
s.required_ruby_version = '>= 3.0.0'
|
|
|
|
|
2023-03-11 08:42:43 +00:00
|
|
|
s.authors = ['Gabriel Arazas']
|
|
|
|
s.email = 'foodogsquared@foodogsquared.one'
|
|
|
|
s.metadata = { 'source_code_uri' => 'https://github.com/foo-dogsquared/foo-dogsquared.github.io' }
|
2023-02-25 04:11:54 +00:00
|
|
|
|
2023-03-11 08:42:43 +00:00
|
|
|
s.files = Dir['lib/**/*', '*.gemspec']
|
2023-02-25 04:11:54 +00:00
|
|
|
|
|
|
|
s.add_runtime_dependency 'asciidoctor', '~> 2.0'
|
2023-05-27 08:26:18 +00:00
|
|
|
s.add_runtime_dependency 'rugged', '~> 1.0'
|
2023-02-25 04:11:54 +00:00
|
|
|
end
|