From fa5db446edabc8668d31e633b30e182f6e60dfeb Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Fri, 11 Dec 2020 16:45:53 +0900 Subject: [PATCH] Update bug report templates to use Rails 6.1.0 --- guides/bug_report_templates/action_controller_gem.rb | 2 +- guides/bug_report_templates/action_mailbox_gem.rb | 2 +- guides/bug_report_templates/active_job_gem.rb | 2 +- guides/bug_report_templates/active_record_gem.rb | 2 +- guides/bug_report_templates/active_record_migrations_gem.rb | 2 +- guides/bug_report_templates/active_storage_gem.rb | 2 +- guides/bug_report_templates/generic_gem.rb | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/guides/bug_report_templates/action_controller_gem.rb b/guides/bug_report_templates/action_controller_gem.rb index 3ee3f9d288..d8de5887b8 100644 --- a/guides/bug_report_templates/action_controller_gem.rb +++ b/guides/bug_report_templates/action_controller_gem.rb @@ -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.0.3" + gem "rails", "6.1.0" end require "rack/test" diff --git a/guides/bug_report_templates/action_mailbox_gem.rb b/guides/bug_report_templates/action_mailbox_gem.rb index 9adfa0d859..52dab0bfa1 100644 --- a/guides/bug_report_templates/action_mailbox_gem.rb +++ b/guides/bug_report_templates/action_mailbox_gem.rb @@ -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.0.3" + gem "rails", "6.1.0" gem "sqlite3" end diff --git a/guides/bug_report_templates/active_job_gem.rb b/guides/bug_report_templates/active_job_gem.rb index 0965daf9f5..15090bc4a7 100644 --- a/guides/bug_report_templates/active_job_gem.rb +++ b/guides/bug_report_templates/active_job_gem.rb @@ -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.0.3" + gem "activejob", "6.1.0" end require "minitest/autorun" diff --git a/guides/bug_report_templates/active_record_gem.rb b/guides/bug_report_templates/active_record_gem.rb index 6f11f8559c..b84a818fa6 100644 --- a/guides/bug_report_templates/active_record_gem.rb +++ b/guides/bug_report_templates/active_record_gem.rb @@ -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.0.3" + gem "activerecord", "6.1.0" gem "sqlite3" end diff --git a/guides/bug_report_templates/active_record_migrations_gem.rb b/guides/bug_report_templates/active_record_migrations_gem.rb index 9ddad75a4c..c691aab233 100644 --- a/guides/bug_report_templates/active_record_migrations_gem.rb +++ b/guides/bug_report_templates/active_record_migrations_gem.rb @@ -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.0.3" + gem "activerecord", "6.1.0" gem "sqlite3" end diff --git a/guides/bug_report_templates/active_storage_gem.rb b/guides/bug_report_templates/active_storage_gem.rb index 9309f01d2d..a368f004ec 100644 --- a/guides/bug_report_templates/active_storage_gem.rb +++ b/guides/bug_report_templates/active_storage_gem.rb @@ -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.0.3" + gem "rails", "6.1.0" gem "sqlite3" end diff --git a/guides/bug_report_templates/generic_gem.rb b/guides/bug_report_templates/generic_gem.rb index 3e9e81551c..e8a34c5ad7 100644 --- a/guides/bug_report_templates/generic_gem.rb +++ b/guides/bug_report_templates/generic_gem.rb @@ -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.0.3" + gem "activesupport", "6.1.0" end require "active_support"