2018-03-02 16:27:03 +01:00
|
|
|
require File.expand_path('boot', __dir__)
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
require 'rails/all'
|
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
2018-03-09 10:00:11 +01:00
|
|
|
Dotenv::Railtie.load
|
|
|
|
|
2015-09-01 14:17:12 +02:00
|
|
|
module TPS
|
2015-08-10 11:05:06 +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.
|
|
|
|
|
|
|
|
# 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.
|
2018-10-25 15:32:48 +02:00
|
|
|
config.time_zone = 'Paris'
|
2015-08-10 11:05:06 +02:00
|
|
|
|
|
|
|
# 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]
|
2015-08-21 11:37:13 +02:00
|
|
|
config.i18n.default_locale = :fr
|
|
|
|
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
|
2018-02-08 16:20:32 +01:00
|
|
|
config.i18n.available_locales = [:fr]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2018-10-31 19:30:06 +01:00
|
|
|
config.paths.add "#{config.root}/lib", eager_load: true
|
2018-10-31 14:56:01 +01:00
|
|
|
config.paths.add "#{config.root}/app/controllers/concerns", eager_load: true
|
2018-10-31 19:30:06 +01:00
|
|
|
|
2015-08-10 11:05:06 +02:00
|
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'javascript')
|
2017-04-04 14:37:50 +02:00
|
|
|
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
|
2018-10-01 13:55:12 +02:00
|
|
|
config.assets.precompile += ['.woff']
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2017-10-03 16:19:25 +02:00
|
|
|
config.active_job.queue_adapter = :delayed_job
|
2017-10-16 12:10:21 +02:00
|
|
|
|
|
|
|
config.action_view.sanitized_allowed_tags = ActionView::Base.sanitized_allowed_tags + ['u']
|
2019-03-01 17:54:17 +01:00
|
|
|
|
|
|
|
config.to_prepare do
|
|
|
|
# Make main application helpers available in administrate
|
|
|
|
Administrate::ApplicationController.helper(TPS::Application.helpers)
|
|
|
|
end
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
end
|