Skip to content

Commit

Permalink
Provide a 'Changelog' link on rubygems.org/gems/i18n-tasks (#583)
Browse files Browse the repository at this point in the history
* Provide a 'Changelog' link on rubygems.org/gems/i18n-tasks

By providing a 'changelog_uri' in the metadata of the gemspec a
'Changelog' link will be shown on https://rubygems.org/gems/i18n-tasks
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/

* Add source_code_uri metadata to gemspec
  • Loading branch information
mark-young-atg authored Jun 7, 2024
1 parent 9852a3f commit 2d4d28e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion i18n-tasks.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ Gem::Specification.new do |s|
TEXT
s.homepage = 'https://github.com/glebm/i18n-tasks'
s.metadata = {
'changelog_uri' => 'https://github.com/glebm/i18n-tasks/blob/main/CHANGES.md',
'issue_tracker' => 'https://github.com/glebm/i18n-tasks',
'rubygems_mfa_required' => 'true'
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/glebm/i18n-tasks'
}
s.required_ruby_version = '>= 2.6', '< 4.0'

Expand Down

0 comments on commit 2d4d28e

Please sign in to comment.