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
|
|
|
|
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.
|
2007-05-27 14:44:33 -04:00
|
|
|
|
2008-11-30 16:06:55 -05:00
|
|
|
# Add additional load paths for your own custom dirs
|
2008-12-02 00:06:29 -05:00
|
|
|
# config.load_paths += %W( #{RAILS_ROOT}/extras )
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2008-11-30 15:53:22 -05:00
|
|
|
# Specify gems that this application depends on and have them installed with rake gems:install
|
2008-04-01 13:13:05 -04:00
|
|
|
# config.gem "bj"
|
|
|
|
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
|
2008-10-16 16:13:06 -04:00
|
|
|
# config.gem "sqlite3-ruby", :lib => "sqlite3"
|
2008-04-01 13:13:05 -04:00
|
|
|
# config.gem "aws-s3", :lib => "aws/s3"
|
|
|
|
|
2008-11-30 15:53:22 -05:00
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
2008-04-01 13:15:31 -04:00
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
2008-11-30 16:06:55 -05:00
|
|
|
# Skip frameworks you're not going to use. To use Rails without a database,
|
|
|
|
# you must remove the Active Record framework.
|
|
|
|
# config.frameworks -= [ :active_record, :active_resource, :action_mailer ]
|
2005-09-11 03:01:33 -04:00
|
|
|
|
2008-11-30 16:53:21 -05:00
|
|
|
# Activate observers that should always be running
|
|
|
|
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|
|
|
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names.
|
2008-03-26 17:01:30 -04:00
|
|
|
config.time_zone = 'UTC'
|
|
|
|
|
2008-11-30 16:53:21 -05:00
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
2008-12-02 00:06:29 -05:00
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
|
2008-11-18 08:23:13 -05:00
|
|
|
# config.i18n.default_locale = :de
|
2008-11-30 16:53:21 -05:00
|
|
|
end
|