Relax version constraint in bug report templates

To prevent future PRs like #41711, #37985, #36936.
This commit is contained in:
Ryuta Kamizono 2021-08-07 13:16:52 +09:00
parent 685caef33b
commit d273d0b79d
7 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "rails", "~>6.1.0"
gem "rails", "~> 6.1.0"
end
require "rack/test"

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "rails", "~>6.1.0"
gem "rails", "~> 6.1.0"
gem "sqlite3"
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.

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activejob", "6.1.0"
gem "activejob", "~> 6.1.0"
end
require "minitest/autorun"

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activerecord", "6.1.0"
gem "activerecord", "~> 6.1.0"
gem "sqlite3"
end

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activerecord", "6.1.0"
gem "activerecord", "~> 6.1.0"
gem "sqlite3"
end

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "rails", "~>6.1.0"
gem "rails", "~> 6.1.0"
gem "sqlite3"
end

View File

@ -8,7 +8,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activesupport", "6.1.0"
gem "activesupport", "~> 6.1.0"
end
require "active_support"