2024-04-04 10:21:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require_relative 'boot'
|
2024-04-02 19:33:19 +02:00
|
|
|
|
2024-04-04 10:21:23 +02:00
|
|
|
require 'rails'
|
2024-04-02 19:33:19 +02:00
|
|
|
# Pick the frameworks you want:
|
2024-04-04 10:21:23 +02:00
|
|
|
require 'active_model/railtie'
|
|
|
|
require 'active_job/railtie'
|
|
|
|
require 'active_record/railtie'
|
2024-04-02 19:33:19 +02:00
|
|
|
# require "active_storage/engine"
|
2024-04-04 10:21:23 +02:00
|
|
|
require 'action_controller/railtie'
|
2024-04-02 19:33:19 +02:00
|
|
|
# require "action_mailer/railtie"
|
|
|
|
# require "action_mailbox/engine"
|
|
|
|
# require "action_text/engine"
|
2024-04-04 10:21:23 +02:00
|
|
|
require 'action_view/railtie'
|
|
|
|
require 'action_cable/engine'
|
|
|
|
require 'rails/test_unit/railtie'
|
2024-04-02 19:33:19 +02:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
2024-04-04 10:21:23 +02: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")
|
2024-07-30 15:56:47 +02: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")
|
2024-07-30 19:44:41 +02:00
|
|
|
module Foalfetch; end
|
2024-07-30 15:56:47 +02:00
|
|
|
class Foalfetch::Application < Rails::Application
|
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
config.load_defaults 7.0
|
2024-04-02 19:33:19 +02:00
|
|
|
|
2024-07-30 15:56:47 +02: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")
|
|
|
|
end
|