From f19af5b3d5446a2a878e69f3b3d72b91ff3ec081 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 31 Oct 2024 13:27:43 +0100 Subject: [PATCH] Update gemspec with URLs Otherwise it's hard to figure out where to contribute to the gem. --- asciimath.gemspec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/asciimath.gemspec b/asciimath.gemspec index 9ae1132..d3affa0 100644 --- a/asciimath.gemspec +++ b/asciimath.gemspec @@ -11,9 +11,16 @@ Gem::Specification.new do |spec| spec.email = ["pepijn@vaneeckhoudt.net", "pablo-ecobar@riseup.net"] spec.summary = %q{AsciiMath parser and converter} spec.description = %q{A pure Ruby AsciiMath parsing and conversion library.} - spec.homepage = "" + spec.homepage = "https://asciidoctor.org/" spec.license = "MIT" + spec.metadata = { + "bug_tracker_uri" => "https://github.com/asciidoctor/asciimath/issues", + "changelog_uri" => "https://github.com/asciidoctor/asciimath/blob/HEAD/CHANGELOG.adoc", + "mailing_list_uri" => "https://chat.asciidoctor.org", + "source_code_uri" => "https://github.com/asciidoctor/asciimath" + } + spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/})