2023-01-04 21:07:30 -08:00
|
|
|
require_relative "boot"
|
2014-08-01 02:23:47 -07:00
|
|
|
|
2023-01-04 21:07:30 -08:00
|
|
|
require "rails"
|
|
|
|
|
|
|
|
# only require Rails components we need
|
|
|
|
require "active_record/railtie"
|
|
|
|
# require "active_storage/engine"
|
|
|
|
require "action_controller/railtie"
|
|
|
|
require "action_view/railtie"
|
|
|
|
require "action_mailer/railtie"
|
|
|
|
require "active_job/railtie"
|
|
|
|
# require "action_cable/engine"
|
|
|
|
# require "action_mailbox/engine"
|
|
|
|
# require "action_text/engine"
|
|
|
|
# require "rails/test_unit/railtie"
|
|
|
|
require "sprockets/railtie"
|
2014-08-01 02:23:47 -07:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
2017-03-31 13:38:23 -07:00
|
|
|
start = Time.now
|
2014-08-01 02:23:47 -07:00
|
|
|
Bundler.require(*Rails.groups)
|
2017-03-31 13:38:23 -07:00
|
|
|
puts 'processing time of bundler require: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
|
2014-08-01 02:23:47 -07:00
|
|
|
|
2014-10-27 22:36:38 -07:00
|
|
|
module Justask
|
2014-08-01 02:23:47 -07:00
|
|
|
class Application < Rails::Application
|
|
|
|
# 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.
|
|
|
|
|
2022-01-11 17:24:38 -08:00
|
|
|
config.load_defaults 6.0
|
2022-12-28 21:49:15 -08:00
|
|
|
# add `lib/` to the autoload paths so zeitwerk can find e.g. our `UseCase`s
|
|
|
|
# without an explicit `require`, and also take care of hot reloading the code
|
|
|
|
# (really useful in development!)
|
|
|
|
config.autoload_paths << config.root.join("lib")
|
|
|
|
config.eager_load_paths << config.root.join("lib")
|
2015-05-09 17:57:27 -07:00
|
|
|
|
|
|
|
# Use Sidekiq for background jobs
|
|
|
|
config.active_job.queue_adapter = :sidekiq
|
2015-05-11 02:10:42 -07:00
|
|
|
|
2015-05-25 20:26:40 -07:00
|
|
|
config.i18n.default_locale = "en"
|
2020-12-25 06:07:47 -08:00
|
|
|
config.i18n.fallbacks = [I18n.default_locale]
|
2015-05-26 18:43:33 -07:00
|
|
|
config.i18n.enforce_available_locales = false
|
|
|
|
|
2022-11-18 13:52:02 -08:00
|
|
|
config.action_dispatch.rescue_responses["Pundit::NotAuthorizedError"] = :forbidden
|
2014-08-01 02:23:47 -07:00
|
|
|
end
|
|
|
|
end
|