2010-03-29 22:01:47 +00:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
|
2010-04-09 09:23:41 +00:00
|
|
|
require "action_controller/railtie"
|
|
|
|
require "action_mailer/railtie"
|
|
|
|
require "active_resource/railtie"
|
2010-06-08 00:45:49 +00:00
|
|
|
require "mongoid/railtie"
|
2010-03-29 22:01:47 +00:00
|
|
|
|
|
|
|
# Auto-require default libraries and those for the current Rails environment.
|
|
|
|
Bundler.require :default, Rails.env
|
|
|
|
|
|
|
|
module Locomotive
|
|
|
|
class Application < Rails::Application
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Add additional load paths for your own custom dirs
|
|
|
|
# config.load_paths += %W( #{config.root}/extras )
|
2011-07-25 21:07:32 +00:00
|
|
|
config.autoload_paths += %W( #{config.root}/app/models/extensions #{config.root}/app/models/extensions/site #{config.root}/app/models/extensions/page #{config.root}/app/models/extensions/asset #{config.root}/app/cells/admin)
|
2010-03-29 22:01:47 +00:00
|
|
|
|
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
|
|
|
# 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. Default is UTC.
|
|
|
|
# config.time_zone = 'Central Time (US & Canada)'
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# Configure generators values. Many other options are available, be sure to check the documentation.
|
|
|
|
# config.generators do |g|
|
|
|
|
# g.orm :active_record
|
|
|
|
# g.template_engine :erb
|
|
|
|
# g.test_framework :test_unit, :fixture => true
|
|
|
|
# end
|
2010-07-23 20:09:54 +00:00
|
|
|
|
2010-06-10 22:07:59 +00:00
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
|
|
|
config.encoding = "utf-8"
|
2010-03-29 22:01:47 +00:00
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
2010-06-11 09:23:20 +00:00
|
|
|
config.filter_parameters << :password
|
2010-03-29 22:01:47 +00:00
|
|
|
end
|
2011-06-28 13:38:13 +00:00
|
|
|
end
|