1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Update bug report templates

Prepare bug report templates for Rails 6.0 development

Add missing `require "active_support"` in `guides/bug_report_templates/generic_gem.rb`
This commit is contained in:
bogdanvlviv 2018-02-18 02:39:01 +02:00 committed by Jeremy Daer
parent 8f98054ef9
commit 690ce38cfe
6 changed files with 8 additions and 7 deletions

View file

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

View file

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

View file

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

View file

@ -13,7 +13,7 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activerecord", "5.1.0"
gem "activerecord", "5.2.0.rc1"
gem "sqlite3"
end
@ -37,7 +37,7 @@ end
class Payment < ActiveRecord::Base
end
class ChangeAmountToAddScale < ActiveRecord::Migration[5.1]
class ChangeAmountToAddScale < ActiveRecord::Migration[5.2]
def change
reversible do |dir|
dir.up do

View file

@ -36,7 +36,7 @@ end
class Payment < ActiveRecord::Base
end
class ChangeAmountToAddScale < ActiveRecord::Migration[5.2]
class ChangeAmountToAddScale < ActiveRecord::Migration[6.0]
def change
reversible do |dir|
dir.up do

View file

@ -13,9 +13,10 @@ gemfile(true) do
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "activesupport", "5.1.0"
gem "activesupport", "5.2.0.rc1"
end
require "active_support"
require "active_support/core_ext/object/blank"
require "minitest/autorun"