mirror of https://github.com/rails/rails
Change :github git source for bug report templates
:github source uses `git://` url by default, `https://` is recommended. See http://bundler.io/v1.15/guides/git.html#security We do the same in our `Gemfile` and templates.
This commit is contained in:
parent
aa1cf119a6
commit
3e0a858aed
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
# Activate the gem you are reporting the issue against.
|
||||
gem "rails", "5.1.0"
|
||||
end
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
end
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
# Activate the gem you are reporting the issue against.
|
||||
gem "activejob", "5.1.0"
|
||||
end
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
end
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
# Activate the gem you are reporting the issue against.
|
||||
gem "activerecord", "5.1.0"
|
||||
gem "sqlite3"
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
gem "sqlite3"
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
# Activate the gem you are reporting the issue against.
|
||||
gem "activerecord", "5.1.0"
|
||||
gem "sqlite3"
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
gem "sqlite3"
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
gem "benchmark-ips"
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
# Activate the gem you are reporting the issue against.
|
||||
gem "activesupport", "5.1.0"
|
||||
end
|
||||
|
|
|
@ -9,6 +9,7 @@ end
|
|||
|
||||
gemfile(true) do
|
||||
source "https://rubygems.org"
|
||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||
gem "rails", github: "rails/rails"
|
||||
gem "arel", github: "rails/arel"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue