Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add metadata for rubygems.org #7435

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion rubygems-update.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ Gem::Specification.new do |s|
repository of Gems that allows you to publish a Gem that can be shared and used by other
developers. See our guide on publishing a Gem at guides.rubygems.org"
s.homepage = "https://guides.rubygems.org"
s.metadata = { "source_code_uri" => "https://github.com/rubygems/rubygems" }
s.metadata = {
"source_code_uri" => "https://github.com/rubygems/rubygems",
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues",
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/CHANGELOG.md",
"funding_uri" => "https://rubycentral.org/#/portal/signup",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@indirect I'm not sure this is correct URI for funding Ruby Central. Can you look this?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that is the correct URI for the membership signup page. I don't know why, but Ghost uses javascript to show the signup page over the regular home page :(

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it. Thanks.

}
s.licenses = ["Ruby", "MIT"]

s.files = File.read(File.expand_path("Manifest.txt", __dir__)).split
Expand Down