Skip to content

Commit 4abefde

Browse files
authored
Merge pull request rails#52846 from p8/railties/add-missing-period
Add missing periods to production.rb.tt [ci-skip]
2 parents 143e58c + e1110af commit 4abefde

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

railties/lib/rails/generators/rails/app/templates/config/environments/development.rb.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Rails.application.configure do
2929
config.action_controller.perform_caching = false
3030
end
3131

32-
# Change this to :null_store to avoid any caching
32+
# Change this to :null_store to avoid any caching.
3333
config.cache_store = :memory_store
3434
<%- unless skip_active_storage? -%>
3535

railties/lib/rails/generators/rails/app/templates/config/environments/production.rb.tt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Rails.application.configure do
6060
# Skip http-to-https redirect for the default health check endpoint.
6161
# config.ssl_options = { redirect: { exclude: ->(request) { request.path == "/up" } } }
6262

63-
# Prevent healthchecks from clogging up the logs
63+
# Prevent healthchecks from clogging up the logs.
6464
config.silence_healthcheck_path = "/up"
6565

66-
# Log to STDOUT by default
66+
# Log to STDOUT by default.
6767
config.logger = ActiveSupport::Logger.new(STDOUT)
6868
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
6969
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }

0 commit comments

Comments
 (0)