Skip to content

Commit

Permalink
Provide a 'Changelog' link on rubygems.org/gems/ssrf_filter
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/ssrf_filter
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/#metadata
  • Loading branch information
mark-young-atg committed Dec 31, 2024
1 parent acb5a90 commit 32f7f9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ssrf_filter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Gem::Specification.new do |gem|
gem.homepage = 'https://github.com/arkadiyt/ssrf_filter'
gem.license = 'MIT'
gem.files = Dir['lib/**/*.rb']
gem.metadata = {'rubygems_mfa_required' => 'true'}
gem.metadata = {'changelog_uri' => "#{gem.homepage}/blob/main/CHANGELOG.md",
'rubygems_mfa_required' => 'true'}

gem.add_development_dependency('base64', '~> 0.2.0') # For ruby >= 3.4
gem.add_development_dependency('bundler-audit', '~> 0.9.2')
Expand Down

0 comments on commit 32f7f9f

Please sign in to comment.