Retrospring/config/application.rb

33 lines
1.0 KiB
Ruby
Raw Normal View History

2020-04-18 15:59:18 -07:00
require_relative 'boot'
2014-08-01 02:23:47 -07:00
require 'rails/all'
# 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.
config.autoload_paths += %W["#{config.root}/app/validators"]
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
2015-06-09 10:57:32 -07:00
config.after_initialize do
Dir.glob Rails.root.join('config/late_initializers/*.rb') do |f|
require f
end
end
2014-08-01 02:23:47 -07:00
end
end