8000 Update bug report template to Rails 7.2 (#8451) · activeadmin/activeadmin@df64a45 · GitHub
[go: up one dir, main page]

Skip to content

Commit df64a45

Browse files
authored
Update bug report template to Rails 7.2 (#8451)
Also set config.eager_load to avoid a warning on stdout: ``` config.eager_load is set to nil. Please update your config/environments/*.rb files accordingly: ```
1 parent 858f6b3 commit df64a45

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tasks/bug_report_template.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
end
1414

1515
# Change Rails version if necessary.
16-
gem "rails", "~> 7.1.0"
16+
gem "rails", "~> 7.2.0"
1717

1818
gem "sprockets", "~> 4.0"
1919
gem "importmap-rails", "~> 2.0"
20-
gem "sqlite3", "~> 1.x", force_ruby_platform: true, platform: :mri
20+
gem "sqlite3", force_ruby_platform: true, platform: :mri
2121

2222
# Fixes an issue on CI with default gems when using inline bundle with default
2323
# gems that are already activated
@@ -54,6 +54,7 @@ class TestApp < Rails::Application
5454
config.hosts << ".example.com"
5555
config.session_store :cookie_store, key: "cookie_store_key"
5656
config.secret_key_base = "secret_key_base"
57+
config.eager_load = false
5758

5859
config.logger = Logger.new($stdout)
5960
Rails.logger = config.logger

0 commit comments

Comments
 (0)
0