Files
baclight/config/application.rb
T

46 lines
1.5 KiB
Ruby
Raw Normal View History

2023-09-30 09:57:54 -07:00
require_relative "boot"
2021-09-26 14:51:13 -07:00
2023-09-30 09:57:54 -07:00
require "rails"
2021-09-26 14:41:38 -07:00
# Pick the frameworks you want:
2023-09-30 09:57:54 -07:00
require "active_model/railtie"
require "active_job/railtie"
require "active_record/railtie"
require "active_storage/engine"
require "action_controller/railtie"
require "action_mailer/railtie"
# require "action_mailbox/engine"
require "action_text/engine"
require "action_view/railtie"
require "action_cable/engine"
2021-09-26 14:41:38 -07:00
# require "rails/test_unit/railtie"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Baclight
2021-09-26 14:41:38 -07:00
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
2024-09-07 15:55:22 -07:00
config.load_defaults 7.2
2021-09-26 14:41:38 -07:00
2023-09-30 09:57:54 -07:00
# 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.
2023-12-30 16:30:37 -08:00
config.autoload_lib(ignore: %w[assets tasks])
2023-09-30 09:57:54 -07:00
2025-11-24 08:22:44 -05:00
config.autoload_paths += %W(#{config.root}/app/form_builders)
2021-09-26 14:41:38 -07:00
# Configuration for the application, engines, and railties goes here.
#
# These settings can be overridden in specific environments using the files
# in config/environments, which are processed later.
#
# config.time_zone = "Central Time (US & Canada)"
# config.eager_load_paths << Rails.root.join("extras")
2023-09-30 09:57:54 -07:00
# Don't generate system test files.
config.generators.system_tests = nil
2026-03-27 08:04:37 -04:00
config.active_job.queue_adapter = :solid_queue
2021-09-26 14:41:38 -07:00
end
end