Skip to content

Instantly share code, notes, and snippets.

@elricstorm
Created January 17, 2010 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elricstorm/279507 to your computer and use it in GitHub Desktop.
Save elricstorm/279507 to your computer and use it in GitHub Desktop.
# Be sure to restart your server when you modify this file
# Specifies gem version of Rails to use when vendor/rails is not present
RAILS_GEM_VERSION = '2.3.5' 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|
%w(observers sweepers mailers).each do |dir|
config.load_paths << "#{RAILS_ROOT}/app/#{dir}"
end
config.gem "acts_as_state_machine"
config.gem "restful_authentication"
config.time_zone = 'UTC'
config.action_mailer.perform_deliveries = :true
config.action_mailer.raise_delivery_errors = :true
config.action_mailer.default_charset = "utf-8"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment