diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-12-31 14:15:21 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-01-04 12:38:50 -0800 |
commit | b9bba2d32630e60375211fe1f62dc72789857e0b (patch) | |
tree | 37b506a778ff9123d16d672aa8189589f912d564 | |
parent | 199d5ee4bad29eca83d72f60cac7bef55468d4e2 (diff) | |
download | chef-b9bba2d32630e60375211fe1f62dc72789857e0b.tar.gz |
Add gemspec metadata
This ensures we have all the links on Rubygems now
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | chef.gemspec | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chef.gemspec b/chef.gemspec index 876ee3f513..5903a18c24 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -67,4 +67,13 @@ Gem::Specification.new do |s| Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } + Dir.glob("*.gemspec") + Dir.glob("tasks/rspec.rb") + + s.metadata = { + "bug_tracker_uri" => "https://github.com/chef/chef/issues", + "changelog_uri" => "https://github.com/chef/chef/blob/master/CHANGELOG.md", + "documentation_uri" => "https://docs.chef.io/", + "homepage_uri" => "https://www.chef.io", + "mailing_list_uri" => "https://discourse.chef.io/", + "source_code_uri" => "https://github.com/chef/chef/", + } end |