diff options
| author | Marc Florisson | 2014-02-28 12:23:49 +0100 | 
|---|---|---|
| committer | Marc Florisson | 2014-02-28 12:26:57 +0100 | 
| commit | cb1204bee3db1124a0482ade3f1fdd52b037b28f (patch) | |
| tree | 78ff4b784145adf98c673cddf75db8e7dbc57de9 /config/application.rb | |
| parent | abb6bd4905278433d3974ce7edbbb894a9624d6b (diff) | |
| download | chouette-core-cb1204bee3db1124a0482ade3f1fdd52b037b28f.tar.bz2 | |
fix some warning reported when rails server starts
Diffstat (limited to 'config/application.rb')
| -rw-r--r-- | config/application.rb | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/config/application.rb b/config/application.rb index 07005e9f9..865becd53 100644 --- a/config/application.rb +++ b/config/application.rb @@ -13,7 +13,7 @@ module ChouetteIhm    class Application < Rails::Application      config.generators do |g| -      g.test_framework :rspec         +      g.test_framework :rspec      end      # Settings in config/environments/* take precedence over those specified here. @@ -29,7 +29,7 @@ module ChouetteIhm      # Activate observers that should always be running.      # config.active_record.observers = :cacher, :garbage_collector, :forum_observer -     +      # custom exception pages      config.exceptions_app = self.routes @@ -40,6 +40,7 @@ module ChouetteIhm      # 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 = :fr +    I18n.enforce_available_locales = false      # Configure the default encoding used in templates for Ruby 1.9.      config.encoding = "utf-8" | 
