2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2006-06-28 18:11:03 +00:00
|
|
|
# Be sure to restart your web server when you modify this file.
|
|
|
|
|
2011-05-30 20:52:25 +02:00
|
|
|
# Uncomment below to force Rails into production mode when
|
2006-06-28 18:11:03 +00:00
|
|
|
# you don't control web/app server and can't set it the proper way
|
2007-09-27 22:30:57 +00:00
|
|
|
# ENV['RAILS_ENV'] ||= 'production'
|
2006-06-28 18:11:03 +00:00
|
|
|
|
2008-04-27 16:34:42 +00:00
|
|
|
# Specifies gem version of Rails to use when vendor/rails is not present
|
2011-06-10 10:43:12 -07:00
|
|
|
RAILS_GEM_VERSION = '2.3.12' unless defined? RAILS_GEM_VERSION
|
2008-04-27 16:34:42 +00:00
|
|
|
|
2006-06-28 18:11:03 +00:00
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
|
|
|
|
2008-03-21 19:59:43 +00: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 18:11:03 +00:00
|
|
|
Rails::Initializer.run do |config|
|
|
|
|
# Settings in config/environments/* take precedence those specified here
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-06-28 18:11:03 +00:00
|
|
|
# Skip frameworks you're not going to use
|
|
|
|
# config.frameworks -= [ :action_web_service, :action_mailer ]
|
|
|
|
|
2007-05-06 16:40:33 +00:00
|
|
|
# Add additional load paths for sweepers
|
2011-02-21 11:02:18 +00:00
|
|
|
config.autoload_paths += %W( #{RAILS_ROOT}/app/sweepers )
|
2006-06-28 18:11:03 +00:00
|
|
|
|
2011-05-30 20:52:25 +02:00
|
|
|
# Force all environments to use the same logger level
|
2006-06-28 18:11:03 +00:00
|
|
|
# (by default production uses :info, the others :debug)
|
|
|
|
# config.log_level = :debug
|
|
|
|
|
|
|
|
# Enable page/fragment caching by setting a file-based store
|
|
|
|
# (remember to create the caching directory and make it readable to the application)
|
2010-02-06 10:40:21 +00:00
|
|
|
# config.action_controller.cache_store = :file_store, "#{RAILS_ROOT}/tmp/cache"
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-06-28 18:11:03 +00:00
|
|
|
# Activate observers that should always be running
|
|
|
|
# config.active_record.observers = :cacher, :garbage_collector
|
2011-04-23 21:25:52 +02:00
|
|
|
config.active_record.observers = :journal_observer, :message_observer, :issue_observer, :news_observer, :document_observer, :wiki_content_observer, :comment_observer
|
2006-06-28 18:11:03 +00:00
|
|
|
|
|
|
|
# Make Active Record use UTC-base instead of local time
|
|
|
|
# config.active_record.default_timezone = :utc
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-06-28 18:11:03 +00:00
|
|
|
# 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
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-07-04 18:55:45 +00:00
|
|
|
# Deliveries are disabled by default. Do NOT modify this section.
|
2011-01-23 10:22:00 +00:00
|
|
|
# Define your email configuration in configuration.yml instead.
|
2008-07-04 18:55:45 +00:00
|
|
|
# It will automatically turn deliveries on
|
|
|
|
config.action_mailer.perform_deliveries = false
|
2009-11-08 02:16:42 +00:00
|
|
|
|
|
|
|
# Load any local configuration that is kept out of source control
|
2011-03-18 21:25:45 +01:00
|
|
|
# (e.g. patches).
|
2009-11-08 02:16:42 +00:00
|
|
|
if File.exists?(File.join(File.dirname(__FILE__), 'additional_environment.rb'))
|
|
|
|
instance_eval File.read(File.join(File.dirname(__FILE__), 'additional_environment.rb'))
|
|
|
|
end
|
2006-06-28 18:11:03 +00:00
|
|
|
end
|