Skip to content

Commit

Permalink
Provide a 'Changelog' link on rubygems.org/gems/cancancan
Browse files Browse the repository at this point in the history
By providing a 'changelog_uri' in the metadata of the gemspec a
'Changelog' link will be shown on https://rubygems.org/gems/cancancan
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/
  • Loading branch information
mark-young-atg committed Jun 7, 2024
1 parent eab3019 commit 3c4b4ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cancancan.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Gem::Specification.new do |s|
s.authors = ['Alessandro Rodi (Renuo AG)', 'Bryan Rite', 'Ryan Bates', 'Richard Wilson']
s.email = '[email protected]'
s.homepage = 'https://github.com/CanCanCommunity/cancancan'
s.metadata = { 'funding_uri' => 'https://github.com/sponsors/coorasse' }
s.metadata = { 'changelog_uri' => 'https://github.com/CanCanCommunity/cancancan/blob/develop/CHANGELOG.md',
'funding_uri' => 'https://github.com/sponsors/coorasse' }
s.summary = 'Simple authorization solution for Rails.'
s.description = 'Simple authorization solution for Rails. All permissions are stored in a single location.'
s.platform = Gem::Platform::RUBY
Expand Down

0 comments on commit 3c4b4ea

Please sign in to comment.