Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

http:// URLs in the gemspec #6721

Merged
2 commits merged into from
Oct 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bundler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ Gem::Specification.new do |s|
"Yehuda Katz"
]
s.email = ["[email protected]"]
s.homepage = "http://bundler.io"
s.homepage = "https://bundler.io"
s.summary = "The best way to manage your application's dependencies"
s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"

if s.respond_to?(:metadata=)
s.metadata = {
"bug_tracker_uri" => "http://github.com/bundler/bundler/issues",
"bug_tracker_uri" => "https://github.com/bundler/bundler/issues",
"changelog_uri" => "https://github.com/bundler/bundler/blob/master/CHANGELOG.md",
"homepage_uri" => "https://bundler.io/",
"source_code_uri" => "http://github.com/bundler/bundler/",
"source_code_uri" => "https://github.com/bundler/bundler/",
}
end

Expand Down