Skip to content

Commit 09c3e48

Browse files
committed
7.1.2
1 parent 0a5436a commit 09c3e48

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source "https://rubygems.org"
33
ruby "your-ruby-version"
44

55
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
6-
gem "rails", "~> 7.1.1"
6+
gem "rails", "~> 7.1.2"
77

88
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
99
gem "sprockets-rails"
@@ -58,7 +58,6 @@ group :development do
5858

5959
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
6060
# gem "spring"
61-
6261
end
6362

6463
group :test do

config/environments/production.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
config.eager_load = true
1414

1515
# Full error reports are disabled and caching is turned on.
16-
config.consider_all_requests_local = false
16+
config.consider_all_requests_local = false
1717
config.action_controller.perform_caching = true
1818

1919
# Ensures that a master key has been made available in ENV["RAILS_MASTER_KEY"], config/master.key, or an environment
2020
# key such as config/credentials/production.key. This key is used to decrypt credentials (and other encrypted files).
2121
# config.require_master_key = true
2222

23-
# Enable static file serving from the `/public` folder (turn off if using NGINX/Apache for it).
24-
config.public_file_server.enabled = true
23+
# Disable serving static files from `public/`, relying on NGINX/Apache to do so instead.
24+
# config.public_file_server.enabled = false
2525

2626
# Compress CSS using a preprocessor.
2727
# config.assets.css_compressor = :sass
@@ -68,7 +68,7 @@
6868
# config.cache_store = :mem_cache_store
6969

7070
# Use a real queuing backend for Active Job (and separate queues per environment).
71-
# config.active_job.queue_adapter = :resque
71+
# config.active_job.queue_adapter = :resque
7272
# config.active_job.queue_name_prefix = "railsdiff_production"
7373

7474
config.action_mailer.perform_caching = false

config/environments/test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
}
2525

2626
# Show full error reports and disable caching.
27-
config.consider_all_requests_local = true
27+
config.consider_all_requests_local = true
2828
config.action_controller.perform_caching = false
2929
config.cache_store = :null_store
3030

31-
# Raise exceptions instead of rendering exception templates.
31+
# Render exception templates for rescuable exceptions and raise for other exceptions.
3232
config.action_dispatch.show_exceptions = :rescuable
3333

3434
# Disable request forgery protection in test environment.

0 commit comments

Comments
 (0)