2013-11-13 23:09:38 +01: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.
|
2014-03-18 15:40:13 +01:00
|
|
|
Bundler.require(*Rails.groups)
|
2013-11-13 23:09:38 +01:00
|
|
|
|
|
|
|
module AgendaDuLibreRails
|
2014-08-06 14:47:47 +02:00
|
|
|
# All the specific configuraton for ADL
|
2013-11-13 23:09:38 +01:00
|
|
|
class Application < Rails::Application
|
2014-08-06 14:47:47 +02:00
|
|
|
# Settings in config/environments/* take precedence over those specified
|
|
|
|
# here.
|
2013-11-13 23:09:38 +01:00
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# 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.
|
2013-11-13 23:09:38 +01:00
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
|
2014-08-06 14:47:47 +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]
|
2014-08-25 19:49:06 +02:00
|
|
|
config.i18n.load_path +=
|
|
|
|
Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
|
2013-11-13 23:09:38 +01:00
|
|
|
# config.i18n.default_locale = :de
|
2013-11-14 11:28:19 +01:00
|
|
|
config.i18n.default_locale = :fr
|
2014-01-01 21:55:20 +01:00
|
|
|
|
2014-07-07 13:49:31 +02:00
|
|
|
config.action_mailer.default_options = {
|
|
|
|
from: 'moderateurs@agendadulibre.org',
|
|
|
|
to: 'moderateurs@agendadulibre.org'
|
|
|
|
}
|
2014-07-07 13:14:17 +02:00
|
|
|
|
2014-08-06 14:47:47 +02:00
|
|
|
# config.quiet_assets = false
|
2014-08-07 00:33:24 +02:00
|
|
|
config.sass.preferred_syntax = :sass
|
2014-08-29 21:46:07 +02:00
|
|
|
|
|
|
|
config.action_dispatch.default_headers
|
|
|
|
.merge! 'X-Frame-Options' => 'ALLOWALL'
|
2013-11-13 23:09:38 +01:00
|
|
|
end
|
|
|
|
end
|