mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Relax version constraint in bug report templates
To prevent future PRs like #41711, #37985, #36936.
This commit is contained in:
parent
685caef33b
commit
d273d0b79d
7 changed files with 7 additions and 7 deletions
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "rails", "~>6.1.0"
|
gem "rails", "~> 6.1.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
require "rack/test"
|
require "rack/test"
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "rails", "~>6.1.0"
|
gem "rails", "~> 6.1.0"
|
||||||
gem "sqlite3"
|
gem "sqlite3"
|
||||||
if RUBY_VERSION >= "3.1"
|
if RUBY_VERSION >= "3.1"
|
||||||
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
|
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "activejob", "6.1.0"
|
gem "activejob", "~> 6.1.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
require "minitest/autorun"
|
require "minitest/autorun"
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "activerecord", "6.1.0"
|
gem "activerecord", "~> 6.1.0"
|
||||||
gem "sqlite3"
|
gem "sqlite3"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "activerecord", "6.1.0"
|
gem "activerecord", "~> 6.1.0"
|
||||||
gem "sqlite3"
|
gem "sqlite3"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "rails", "~>6.1.0"
|
gem "rails", "~> 6.1.0"
|
||||||
gem "sqlite3"
|
gem "sqlite3"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ gemfile(true) do
|
||||||
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
||||||
|
|
||||||
# Activate the gem you are reporting the issue against.
|
# Activate the gem you are reporting the issue against.
|
||||||
gem "activesupport", "6.1.0"
|
gem "activesupport", "~> 6.1.0"
|
||||||
end
|
end
|
||||||
|
|
||||||
require "active_support"
|
require "active_support"
|
||||||
|
|
Loading…
Reference in a new issue