root/config/environment.rb @ 65c73cde
b689e231 | Marc Dequènes (Duck) | # Be sure to restart your server when you modify this file
|
|
# Specifies gem version of Rails to use when vendor/rails is not present
|
|||
05f13042 | Marc Dequènes (Duck) | RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION
|
|
b689e231 | Marc Dequènes (Duck) | ||
# Bootstrap the Rails environment, frameworks, and default configuration
|
|||
require File.join(File.dirname(__FILE__), 'boot')
|
|||
Rails::Initializer.run do |config|
|
|||
# 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.
|
|||
05f13042 | Marc Dequènes (Duck) | # Add additional load paths for your own custom dirs
|
|
# config.load_paths += %W( #{RAILS_ROOT}/extras )
|
|||
b689e231 | Marc Dequènes (Duck) | ||
05f13042 | Marc Dequènes (Duck) | # Specify gems that this application depends on and have them installed with rake gems:install
|
|
b689e231 | Marc Dequènes (Duck) | # config.gem "bj"
|
|
# config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net"
|
|||
05f13042 | Marc Dequènes (Duck) | # config.gem "sqlite3-ruby", :lib => "sqlite3"
|
|
b689e231 | Marc Dequènes (Duck) | # config.gem "aws-s3", :lib => "aws/s3"
|
|
05f13042 | Marc Dequènes (Duck) | # Only load the plugins named here, in the order given (default is alphabetical).
|
|
b689e231 | Marc Dequènes (Duck) | # :all can be used as a placeholder for all plugins not explicitly named
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|||
05f13042 | Marc Dequènes (Duck) | # 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 ]
|
|||
b689e231 | Marc Dequènes (Duck) | ||
05f13042 | Marc Dequènes (Duck) | # Activate observers that should always be running
|
|
# config.active_record.observers = :cacher, :garbage_collector, :forum_observer
|
|||
b689e231 | Marc Dequènes (Duck) | ||
05f13042 | Marc Dequènes (Duck) | # 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.
|
|||
b689e231 | Marc Dequènes (Duck) | config.time_zone = 'UTC'
|
|
05f13042 | Marc Dequènes (Duck) | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
|
|||
# config.i18n.default_locale = :de
|
|||
b689e231 | Marc Dequènes (Duck) | end
|