2007-11-21 10:55:57 -05:00
|
|
|
# Be sure to restart your server when you modify this file
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2007-05-27 14:44:33 -04:00
|
|
|
# Uncomment below to force Rails into production mode when
|
2005-11-09 10:11:55 -05:00
|
|
|
# you don't control web/app server and can't set it the proper way
|
|
|
|
# ENV['RAILS_ENV'] ||= 'production'
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2006-04-01 00:55:47 -05:00
|
|
|
# Specifies gem version of Rails to use when vendor/rails is not present
|
2006-04-07 13:48:47 -04:00
|
|
|
<%= '# ' if freeze %>RAILS_GEM_VERSION = '<%= Rails::VERSION::STRING %>' unless defined? RAILS_GEM_VERSION
|
2006-04-01 00:55:47 -05:00
|
|
|
|
2005-09-03 11:13:06 -04:00
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
2005-07-08 17:13:29 -04:00
|
|
|
|
2005-09-03 11:13:06 -04:00
|
|
|
Rails::Initializer.run do |config|
|
2007-11-21 10:55:57 -05:00
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
# See Rails::Configuration for more options.
|
2007-05-27 14:44:33 -04:00
|
|
|
|
2008-02-17 04:11:31 -05:00
|
|
|
# Skip frameworks you're not going to use. To use Rails without a database
|
|
|
|
# you must remove the Active Record framework.
|
2007-11-21 10:55:57 -05:00
|
|
|
# config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2008-04-01 13:13:05 -04:00
|
|
|
# Specify gems that this application depends on.
|
|
|
|
# They can then be installed with rake gem:install on new installations.
|
|
|
|
# config.gem "bj"
|
|
|
|
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
|
|
|
|
# config.gem "aws-s3", :lib => "aws/s3"
|
|
|
|
|
2008-04-01 13:15:31 -04:00
|
|
|
# Only load the plugins named here, in the order given. By default, all plugins
|
|
|
|
# in vendor/plugins are loaded in alphabetical order.
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
2006-10-30 20:29:34 -05:00
|
|
|
# Add additional load paths for your own custom dirs
|
2005-10-28 09:00:33 -04:00
|
|
|
# config.load_paths += %W( #{RAILS_ROOT}/extras )
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2007-05-27 14:44:33 -04:00
|
|
|
# Force all environments to use the same logger level
|
2005-09-12 14:05:46 -04:00
|
|
|
# (by default production uses :info, the others :debug)
|
|
|
|
# config.log_level = :debug
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2008-03-26 17:01:30 -04:00
|
|
|
# Make Time.zone default to the specified zone, and make ActiveRecord store time values
|
|
|
|
# in the database in UTC, and return them converted to the specified local zone.
|
|
|
|
# Run `rake -D time` for a list of tasks for finding time zone names. Uncomment to use default local time.
|
|
|
|
config.time_zone = 'UTC'
|
|
|
|
|
2007-02-22 19:09:22 -05:00
|
|
|
# Your secret key for verifying cookie session data integrity.
|
|
|
|
# If you change this key, all old sessions will become invalid!
|
2007-11-21 15:54:43 -05:00
|
|
|
# Make sure the secret is at least 30 characters and all random,
|
|
|
|
# no regular words or you'll be exposed to dictionary attacks.
|
2007-02-22 19:09:22 -05:00
|
|
|
config.action_controller.session = {
|
|
|
|
:session_key => '_<%= app_name %>_session',
|
2007-02-24 17:36:52 -05:00
|
|
|
:secret => '<%= app_secret %>'
|
2007-02-22 19:09:22 -05:00
|
|
|
}
|
|
|
|
|
2007-09-15 17:22:27 -04:00
|
|
|
# Use the database for sessions instead of the cookie-based default,
|
|
|
|
# which shouldn't be used to store highly confidential information
|
2006-03-18 16:19:01 -05:00
|
|
|
# (create the session table with 'rake db:sessions:create')
|
2005-09-13 06:07:37 -04:00
|
|
|
# config.action_controller.session_store = :active_record_store
|
2005-09-12 13:30:40 -04:00
|
|
|
|
2006-02-26 19:23:49 -05:00
|
|
|
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
2007-05-27 14:44:33 -04:00
|
|
|
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
2006-02-26 19:23:49 -05:00
|
|
|
# like if you have constraints or database-specific column types
|
|
|
|
# config.active_record.schema_format = :sql
|
2005-09-12 13:49:07 -04:00
|
|
|
|
2005-09-25 04:26:29 -04:00
|
|
|
# Activate observers that should always be running
|
2005-09-25 04:48:30 -04:00
|
|
|
# config.active_record.observers = :cacher, :garbage_collector
|
2007-11-21 10:55:57 -05:00
|
|
|
end
|