2009-05-22 14:13:46 +02:00
|
|
|
# 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.2' unless defined? RAILS_GEM_VERSION
|
|
|
|
|
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
|
|
|
|
2009-05-22 16:14:07 +02:00
|
|
|
|
2009-05-22 14:13:46 +02:00
|
|
|
Rails::Initializer.run do |config|
|
|
|
|
|
2009-05-22 16:14:07 +02:00
|
|
|
config.gem "authlogic"
|
2009-06-02 00:08:57 +02:00
|
|
|
config.gem 'mime-types', :lib => 'mime/types'
|
2009-05-22 16:14:07 +02:00
|
|
|
#config.gem "image_science"
|
2009-06-02 00:08:57 +02:00
|
|
|
|
|
|
|
config.load_paths += %W( #{RAILS_ROOT}/app/middleware )
|
2009-05-22 16:14:07 +02:00
|
|
|
|
2009-05-22 14:13:46 +02:00
|
|
|
config.time_zone = 'Copenhagen'
|
|
|
|
|
|
|
|
config.i18n.default_locale = 'no-NB'
|
|
|
|
|
|
|
|
config.action_mailer.smtp_settings = {
|
|
|
|
:address => "smtp.gmail.com",
|
|
|
|
:port => 587,
|
|
|
|
:domain => "espen@inspired.no",
|
|
|
|
:authentication => :plain,
|
|
|
|
:user_name => "espen@inspired.no",
|
|
|
|
:password => "tkg5megmeg"
|
|
|
|
}
|
|
|
|
end
|