# 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.
# 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'
# 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 or OSM_STATUS == :database_readonly
+ 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,