Retrospring/config/application.rb

40 lines
1.4 KiB
Ruby

require_relative 'boot'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
start = Time.now
Bundler.require(*Rails.groups)
puts 'processing time of bundler require: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
module Justask
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.
config.load_defaults 6.0
# 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")
# Use Sidekiq for background jobs
config.active_job.queue_adapter = :sidekiq
config.i18n.default_locale = "en"
config.i18n.fallbacks = [I18n.default_locale]
config.i18n.enforce_available_locales = false
config.action_dispatch.rescue_responses["Pundit::NotAuthorizedError"] = :forbidden
config.after_initialize do
Dir.glob Rails.root.join('config/late_initializers/*.rb') do |f|
require f
end
end
end
end