- # Force all environments to use the same logger level
- # (by default production uses :info, the others :debug)
- # config.log_level = :debug
+ # Specify gems that this application depends on and have them installed with rake gems:install
+ unless STATUS == :database_offline
+ config.gem 'composite_primary_keys', :version => '2.2.2'
+ end
+ config.gem 'libxml-ruby', :version => '>= 1.1.1', :lib => 'libxml'
+ config.gem 'rmagick', :lib => 'RMagick'
+ config.gem 'oauth', :version => '>= 0.4.3'
+ config.gem 'oauth-plugin', :version => '0.3.14'
+ config.gem 'httpclient'
+ config.gem 'SystemTimer', :version => '>= 1.1.3', :lib => 'system_timer'
+ config.gem 'sanitize'
+ config.gem 'i18n', :version => '= 0.4.1'
+
+ # Only load the plugins named here, in the order given (default is alphabetical).
+ # :all can be used as a placeholder for all plugins not explicitly named
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
+
+ # Skip frameworks you're not going to use. To use Rails without a database,
+ # you must remove the Active Record framework.
+ if STATUS == :database_offline
+ config.frameworks -= [ :active_record ]
+ config.eager_load_paths = []
+ end