Grab latest dependencies (#23)
Updates dependencies including latest Rails from main. Comes with two new depredations caused by https://github.com/rails/rails/pull/52422 Reviewed-on: #23
This commit is contained in:
parent
a705b07d01
commit
b8d928f4ea
8 changed files with 46 additions and 34 deletions
|
@ -1,5 +1,3 @@
|
|||
require "active_support/core_ext/integer/time"
|
||||
|
||||
Rails.application.configure do
|
||||
# Settings specified here will take precedence over those in config/application.rb.
|
||||
|
||||
|
@ -56,7 +54,7 @@ Rails.application.configure do
|
|||
|
||||
# Log to STDOUT by default
|
||||
config.logger = ActiveSupport::Logger.new(STDOUT)
|
||||
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
||||
.tap { |logger| logger.formatter = ::Logger::Formatter.new }
|
||||
.then { |logger| ActiveSupport::TaggedLogging.new(logger) }
|
||||
|
||||
# Prepend all log lines with the following tags.
|
||||
|
@ -74,6 +72,8 @@ Rails.application.configure do
|
|||
config.active_job.queue_adapter = :solid_queue
|
||||
# config.active_job.queue_name_prefix = "family_budget_production"
|
||||
|
||||
# Disable caching for Action Mailer templates even if Action Controller
|
||||
# caching is enabled.
|
||||
config.action_mailer.perform_caching = false
|
||||
|
||||
# Ignore bad email addresses and do not raise email delivery errors.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue