asciidoctor-foodogsquared-e.../asciidoctor-foodogsquared-extensions.gemspec
Gabriel Arazas 887d2a675e
Update dependencies and generate proper gemset.nix
I keep forgetting that I've been generating the gemset.nix file from the
nixpkgs bundix instead of the forked bundix. It is not easy to install
some of the more problematic gems like Nokogiri in this way.
2023-11-17 22:01:24 +08:00

27 lines
1017 B
Ruby

Gem::Specification.new do |s|
s.name = 'asciidoctor-foodogsquared-extensions'
s.version = '1.3.0'
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 'mime-types', '~> 3.0'
s.add_runtime_dependency 'nokogiri', '~> 1.0'
s.add_runtime_dependency 'rugged', '~> 1.0'
s.add_development_dependency 'rspec', '~> 3.0'
end