2014-08-01 02:23:47 -07:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
|
|
|
require 'rails/all'
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
2015-01-09 05:12:52 -08:00
|
|
|
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"
|
|
|
|
config.i18n.fallbacks = true
|
2015-05-26 18:43:33 -07:00
|
|
|
config.i18n.enforce_available_locales = false
|
|
|
|
|
2015-05-25 20:26:40 -07:00
|
|
|
|
2015-05-11 02:10:42 -07:00
|
|
|
# DEPRECATION WARNING: Currently, Active Record suppresses errors raised
|
|
|
|
# within `after_rollback`/`after_commit` callbacks and only print them to the logs.
|
|
|
|
# In the next version, these errors will no longer be suppressed.
|
|
|
|
# Instead, the errors will propagate normally just like in other Active Record callbacks.
|
|
|
|
# fix for this warning:
|
|
|
|
config.active_record.raise_in_transactional_callbacks = true
|
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
|