chore: update to rails 8

This commit is contained in:
Nelson Jovel 2024-11-20 15:16:22 -08:00
parent 1ce3ed5b6f
commit e4e1a2e96e
6 changed files with 86 additions and 92 deletions

View file

@ -9,10 +9,14 @@ Bundler.require(*Rails.groups)
module Edcontext
class Application < Rails::Application
config.load_defaults 7.1
config.load_defaults 8.0
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
config.active_support.cache_format_version 6.1
#
# Please, add to the `ignore` list any other `lib` subdirectories that do
# not contain `.rb` files, or that should not be reloaded or eager loaded.
# Common ones are `templates`, `generators`, or `middleware`, for example.
config.autoload_lib(ignore: %w[assets tasks])
end
end