From 6f1648061734065cba360669bc51d723583cc67e Mon Sep 17 00:00:00 2001 From: Alex Riedler Date: Wed, 3 Apr 2024 17:38:03 -0400 Subject: [PATCH] chore: update gemspec for changelog and source code location This allows for easier to find source code and changelog information through rubygems.org. Useful if you are using dependabot or other tools that use this information to see what has changed since previous releases etc. --- ar-multidb.gemspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ar-multidb.gemspec b/ar-multidb.gemspec index ea24a4e..981e75d 100644 --- a/ar-multidb.gemspec +++ b/ar-multidb.gemspec @@ -12,6 +12,8 @@ Gem::Specification.new do |s| s.summary = s.description = 'Multidb is an ActiveRecord extension for switching between multiple database connections, such as primary/replica setups.' s.license = 'MIT' s.metadata['rubygems_mfa_required'] = 'true' + s.metadata['changelog_uri'] = 'https://github.com/OutOfOrder/multidb/blob/master/CHANGELOG.md' + s.metadata['source_code_uri'] = 'https://github.com/OutOfOrder/multidb' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")