2020-04-19 00:59:18 +02:00
|
|
|
require_relative 'boot'
|
2014-08-01 11:23:47 +02:00
|
|
|
|
|
|
|
require 'rails/all'
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
2017-03-31 22:38:23 +02:00
|
|
|
start = Time.now
|
2014-08-01 11:23:47 +02:00
|
|
|
Bundler.require(*Rails.groups)
|
2017-03-31 22:38:23 +02:00
|
|
|
puts 'processing time of bundler require: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
|
2014-08-01 11:23:47 +02:00
|
|
|
|
2022-04-16 03:47:48 +02:00
|
|
|
require_relative "../lib/version"
|
|
|
|
|
2014-10-28 06:36:38 +01:00
|
|
|
module Justask
|
2014-08-01 11:23:47 +02: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-12 02:24:38 +01:00
|
|
|
config.load_defaults 6.0
|
2015-01-09 14:12:52 +01:00
|
|
|
config.autoload_paths += %W["#{config.root}/app/validators"]
|
2015-05-10 02:57:27 +02:00
|
|
|
|
|
|
|
# Use Sidekiq for background jobs
|
|
|
|
config.active_job.queue_adapter = :sidekiq
|
2015-05-11 11:10:42 +02:00
|
|
|
|
2015-05-26 05:26:40 +02:00
|
|
|
config.i18n.default_locale = "en"
|
2020-12-25 15:07:47 +01:00
|
|
|
config.i18n.fallbacks = [I18n.default_locale]
|
2015-05-27 03:43:33 +02:00
|
|
|
config.i18n.enforce_available_locales = false
|
|
|
|
|
2015-06-09 19:57:32 +02:00
|
|
|
config.after_initialize do
|
|
|
|
Dir.glob Rails.root.join('config/late_initializers/*.rb') do |f|
|
|
|
|
require f
|
|
|
|
end
|
|
|
|
end
|
2014-08-01 11:23:47 +02:00
|
|
|
end
|
|
|
|
end
|