2006-06-28 22:11:03 +04:00
|
|
|
# Be sure to restart your web server when you modify this file.
|
|
|
|
|
|
|
|
# Uncomment below to force Rails into production mode when
|
|
|
|
# you don't control web/app server and can't set it the proper way
|
2007-09-28 02:30:57 +04:00
|
|
|
# ENV['RAILS_ENV'] ||= 'production'
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2008-04-27 20:34:42 +04:00
|
|
|
# Specifies gem version of Rails to use when vendor/rails is not present
|
2008-12-07 12:53:27 +03:00
|
|
|
RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
|
2008-04-27 20:34:42 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
|
|
|
|
2008-03-21 22:59:43 +03:00
|
|
|
# Load Engine plugin if available
|
|
|
|
begin
|
|
|
|
require File.join(File.dirname(__FILE__), '../vendor/plugins/engines/boot')
|
|
|
|
rescue LoadError
|
|
|
|
# Not available
|
|
|
|
end
|
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
Rails::Initializer.run do |config|
|
|
|
|
# Settings in config/environments/* take precedence those specified here
|
|
|
|
|
|
|
|
# Skip frameworks you're not going to use
|
|
|
|
# config.frameworks -= [ :action_web_service, :action_mailer ]
|
|
|
|
|
2007-05-06 20:40:33 +04:00
|
|
|
# Add additional load paths for sweepers
|
|
|
|
config.load_paths += %W( #{RAILS_ROOT}/app/sweepers )
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
# Force all environments to use the same logger level
|
|
|
|
# (by default production uses :info, the others :debug)
|
|
|
|
# config.log_level = :debug
|
|
|
|
|
|
|
|
# Use the database for sessions instead of the file system
|
2008-06-28 00:18:23 +04:00
|
|
|
# (create the session table with 'rake db:sessions:create')
|
2006-06-28 22:11:03 +04:00
|
|
|
# config.action_controller.session_store = :active_record_store
|
2007-12-10 20:58:07 +03:00
|
|
|
config.action_controller.session_store = :PStore
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
# Enable page/fragment caching by setting a file-based store
|
|
|
|
# (remember to create the caching directory and make it readable to the application)
|
|
|
|
# config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
|
2007-05-14 21:03:59 +04:00
|
|
|
|
2006-06-28 22:11:03 +04:00
|
|
|
# Activate observers that should always be running
|
|
|
|
# config.active_record.observers = :cacher, :garbage_collector
|
2007-05-14 21:03:59 +04:00
|
|
|
config.active_record.observers = :message_observer
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
# Make Active Record use UTC-base instead of local time
|
|
|
|
# config.active_record.default_timezone = :utc
|
|
|
|
|
|
|
|
# Use Active Record's schema dumper instead of SQL when creating the test database
|
|
|
|
# (enables use of different database adapters for development and test environments)
|
|
|
|
# config.active_record.schema_format = :ruby
|
2007-09-28 02:30:57 +04:00
|
|
|
|
2008-07-04 22:55:45 +04:00
|
|
|
# Deliveries are disabled by default. Do NOT modify this section.
|
|
|
|
# Define your email configuration in email.yml instead.
|
|
|
|
# It will automatically turn deliveries on
|
|
|
|
config.action_mailer.perform_deliveries = false
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|