2023-08-02 17:55:32 -07:00
|
|
|
require_relative "boot"
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2023-11-11 15:12:41 -08:00
|
|
|
require "rails"
|
|
|
|
|
|
|
|
# We disable some components we don't use, to: omit their routes, be confident
|
|
|
|
# that there's not e.g. surprise storage happening on the machine, and keep the
|
|
|
|
# app footprint smaller.
|
|
|
|
#
|
|
|
|
# Disabled:
|
|
|
|
# - active_storage/engine
|
|
|
|
# - active_job/railtie
|
|
|
|
# - action_cable/engine
|
|
|
|
# - action_mailbox/engine
|
|
|
|
# - action_text/engine
|
|
|
|
%w(
|
|
|
|
active_record/railtie
|
|
|
|
action_controller/railtie
|
|
|
|
action_view/railtie
|
|
|
|
action_mailer/railtie
|
|
|
|
rails/test_unit/railtie
|
|
|
|
).each do |railtie|
|
|
|
|
begin
|
|
|
|
require railtie
|
|
|
|
rescue LoadError
|
|
|
|
end
|
|
|
|
end
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2023-07-21 19:39:32 -07:00
|
|
|
# Require the gems listed in Gemfile, including any gems
|
2010-05-14 15:12:31 -07:00
|
|
|
# you've limited to :test, :development, or :production.
|
2023-07-21 19:39:32 -07:00
|
|
|
Bundler.require(*Rails.groups)
|
2010-05-14 15:12:31 -07:00
|
|
|
|
|
|
|
module OpenneoImpressItems
|
|
|
|
class Application < Rails::Application
|
2023-08-02 16:17:07 -07:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
2023-10-25 15:05:31 -07:00
|
|
|
config.load_defaults 7.1
|
2023-08-02 16:17:07 -07:00
|
|
|
|
2023-10-25 15:05:31 -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.
|
|
|
|
config.autoload_lib(ignore: %w(assets tasks))
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2023-10-25 15:05:31 -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")
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2013-01-11 13:26:07 -08:00
|
|
|
config.i18n.fallbacks = true
|
2010-05-14 15:12:31 -07:00
|
|
|
|
2011-08-02 17:01:48 -07:00
|
|
|
Mime::Type.register "image/gif", :gif
|
2013-02-24 22:14:45 -08:00
|
|
|
|
|
|
|
ActionController::Base.config.relative_url_root = ''
|
2013-03-05 18:08:57 -08:00
|
|
|
|
|
|
|
config.assets.enabled = true
|
|
|
|
config.assets.version = '1.0'
|
|
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
|
2013-03-05 20:26:14 -08:00
|
|
|
config.assets.precompile << '*.js'
|
2013-03-05 19:52:31 -08:00
|
|
|
config.assets.initialize_on_precompile = false
|
2013-07-02 14:10:01 -07:00
|
|
|
|
|
|
|
config.middleware.insert_after ActionDispatch::Flash, Rack::Attack
|
2024-01-15 01:15:35 -08:00
|
|
|
|
|
|
|
# It seems like some Neopets servers reject any user agent containing
|
|
|
|
# symbols? So I can't provide anything helpful like a URL, email address,
|
|
|
|
# version number, etc. So let's only send this to Neopets systems, where it
|
|
|
|
# should hopefully be clear who we are from context!
|
|
|
|
config.user_agent_for_neopets = "Dress to Impress"
|
2010-05-14 15:12:31 -07:00
|
|
|
end
|
|
|
|
end
|
2011-08-02 17:01:48 -07:00
|
|
|
|