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
|
|
|
|
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
|
2013-11-14 11:28:19 +01:00
|
|
|
config.i18n.default_locale = :fr
|
2014-01-01 21:55:20 +01:00
|
|
|
|
|
|
|
I18n.config.enforce_available_locales = true
|
2014-01-04 11:34:50 +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-01-04 11:34:50 +01:00
|
|
|
#config.quiet_assets = false
|
2013-11-13 23:09:38 +01:00
|
|
|
end
|
|
|
|
end
|