X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d516198bbe799d21198a628aafecc29771d4bfa7..eefb42334f6d928081d5d5edbb92e75813666dbb:/config/environment.rb diff --git a/config/environment.rb b/config/environment.rb index 1289dd2fa..de5852fc4 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -44,6 +44,7 @@ Rails::Initializer.run do |config| # To use Rails without a database, you must remove the Active Record framework if OSM_STATUS == :database_offline config.frameworks -= [ :active_record ] + config.eager_load_paths = [] end # Specify gems that this application depends on. @@ -51,11 +52,12 @@ Rails::Initializer.run do |config| # config.gem "bj" # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" # config.gem "aws-s3", :lib => "aws/s3" - config.gem 'composite_primary_keys', :version => '2.2.2' + unless OSM_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.3.6' - config.gem 'oauth-plugin' config.gem 'httpclient' config.gem 'SystemTimer', :version => '>= 1.1.3', :lib => 'system_timer' config.gem 'sanitize' @@ -87,7 +89,9 @@ Rails::Initializer.run do |config| # Use the database for sessions instead of the cookie-based default, # which shouldn't be used to store highly confidential information # (create the session table with 'rake db:sessions:create') - config.action_controller.session_store = :sql_session_store + unless OSM_STATUS == :database_offline + config.action_controller.session_store = :sql_session_store + end # Use SQL instead of Active Record's schema dumper when creating the test database. # This is necessary if your schema can't be completely dumped by the schema dumper,