chore: upgrade to rails 7.1.

upgrade rspec

fix failing tests

upgrade devise
This commit is contained in:
rebuilt 2023-10-06 14:41:16 -07:00
parent 2fd56047d4
commit 18ab51c860
12 changed files with 268 additions and 238 deletions

View file

@ -1,7 +1,7 @@
require_relative 'boot'
require_relative "boot"
require 'csv'
require 'rails/all'
require "csv"
require "rails/all"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
@ -9,9 +9,10 @@ Bundler.require(*Rails.groups)
module Edcontext
class Application < Rails::Application
config.load_defaults 7.1
# 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_record.legacy_connection_handling = false
config.active_support.cache_format_version 6.1
end
end