Skip to content

Commit

Permalink
Update gemspec with URLs
Browse files Browse the repository at this point in the history
Otherwise it's hard to figure out where to contribute to the gem.
  • Loading branch information
byroot authored and pepijnve committed Oct 31, 2024
1 parent efb2f57 commit f19af5b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion asciimath.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,16 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]", "[email protected]"]
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)/})
Expand Down

0 comments on commit f19af5b

Please sign in to comment.