diff options
| author | Mark Young <mark.young@atg.auto> | 2023-12-20 15:11:48 +0000 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-12-25 21:12:49 +0900 |
| commit | 65ec74a8dd6114d4496fde2661c4d3efe917b849 (patch) | |
| tree | e7747f7808f8a4e0dd98ff82aee746bcd80f626d | |
| parent | a01c1e821cd701998753fb072f57879ed5f990eb (diff) | |
[ruby/io-console] Provide a 'Changelog' link on rubygems.org/gems/io-console
By providing a 'changelog_uri' in the metadata of the gemspec
a 'Changelog' link will be shown on https://rubygems.org/gems/io-console
which makes it quick and easy for someone to check on the changes
introduced with a new version.
Details of this functionality can be found on https://guides.rubygems.org/specification-reference/
https://github.com/ruby/io-console/commit/6bacdbf0e1
| -rw-r--r-- | ext/io/console/io-console.gemspec | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/io/console/io-console.gemspec b/ext/io/console/io-console.gemspec index e0c2ab552a..c5e713fef1 100644 --- a/ext/io/console/io-console.gemspec +++ b/ext/io/console/io-console.gemspec @@ -10,6 +10,7 @@ Gem::Specification.new do |s| s.required_ruby_version = ">= 2.6.0" s.homepage = "https://github.com/ruby/io-console" s.metadata["source_code_url"] = s.homepage + s.metadata["changelog_uri"] = s.homepage + "/releases" s.authors = ["Nobu Nakada"] s.require_path = %[lib] s.files = %w[ |
