website/gems/asciidoctor-foodogsquared-extensions.gemspec
Gabriel Arazas f7e2b3a2b7
Update Asciidoctor extension dependency
Asciidoctor already handles the caching so we don't really need to. On
the plus side, it gives some choice whether the pipeline should have a
cache or not.
2023-05-28 17:49:15 +08:00

21 lines
824 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 = <<-DESC
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.
DESC
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'
s.add_runtime_dependency 'rugged', '~> 1.0'
end