Skip to content

Commit 31bdab9

Browse files
authored
Merge pull request rails#42662 from hahmed/fix-bug-report-scripts-rails-version
Fix bug report templates failing to run
2 parents 53d5469 + 6fbb154 commit 31bdab9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

guides/bug_report_templates/action_controller_gem.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
99

1010
# Activate the gem you are reporting the issue against.
11-
gem "rails", "6.1.0"
11+
gem "rails", "~>6.1.0"
1212
end
1313

1414
require "rack/test"

guides/bug_report_templates/action_mailbox_gem.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
99

1010
# Activate the gem you are reporting the issue against.
11-
gem "rails", "6.1.0"
11+
gem "rails", "~>6.1.0"
1212
gem "sqlite3"
1313
if RUBY_VERSION >= "3.1"
1414
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.

guides/bug_report_templates/active_storage_gem.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
99

1010
# Activate the gem you are reporting the issue against.
11-
gem "rails", "6.1.0"
11+
gem "rails", "~>6.1.0"
1212
gem "sqlite3"
1313
end
1414

0 commit comments

Comments
 (0)