Skip to content

Instantly share code, notes, and snippets.

@traviskroberts
Created December 3, 2008 13:27
Show Gist options
  • Save traviskroberts/31534 to your computer and use it in GitHub Desktop.
Save traviskroberts/31534 to your computer and use it in GitHub Desktop.
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.1.2' unless defined? RAILS_GEM_VERSION
# 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 those specified here
# Skip frameworks you're not going to use
# config.frameworks -= [ :action_web_service, :action_mailer ]
# Add additional load paths for your own custom dirs
# config.load_paths += %W( #{RAILS_ROOT}/extras )
config.load_paths += %W( #{RAILS_ROOT}/app/sweepers )
# Force all environments to use the same logger level
# (by default production uses :info, the others :debug)
# config.log_level = :debug
# Use the database for sessions instead of the file system
# (create the session table with 'rake db:sessions:create')
config.action_controller.session_store = :active_record_store
# Use SQL instead of Active Record's schema dumper when creating the test database.
# This is necessary if your schema can't be completely dumped by the schema dumper,
# like if you have constraints or database-specific column types
# config.active_record.schema_format = :sql
# Activate observers that should always be running
# config.active_record.observers = :cacher, :garbage_collector
# config.action_controller.page_cache_directory = "#{RAILS_ROOT}/public/cache/"
# config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/public/cache/"
# Make Active Record use UTC-base instead of local time
# config.active_record.default_timezone = :utc
# See Rails::Configuration for more options
# ------------------------------------------------------
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment