2010-04-11 23:59:18 +00:00
|
|
|
require 'lib/locomotive.rb'
|
2010-04-25 00:33:38 +00:00
|
|
|
require 'lib/core_ext.rb'
|
2010-04-11 23:59:18 +00:00
|
|
|
|
|
|
|
Locomotive.configure do |config|
|
2010-04-10 15:25:07 +00:00
|
|
|
config.default_domain = 'example.com'
|
2010-05-26 00:41:10 +00:00
|
|
|
|
|
|
|
config.lastest_items_nb = 5
|
2010-04-13 13:24:12 +00:00
|
|
|
end
|
|
|
|
|
2010-05-10 22:39:52 +00:00
|
|
|
# TODO: embed them in Locomotive right after configure
|
2010-04-22 23:52:11 +00:00
|
|
|
ActionMailer::Base.default_url_options[:host] = Locomotive.config.default_domain + (Rails.env.development? ? ':3000' : '')
|
2010-05-10 22:39:52 +00:00
|
|
|
|
|
|
|
Rails.application.config.session_store :cookie_store, {
|
|
|
|
:key => '_locomotive_session',
|
|
|
|
:domain => ".#{Locomotive.config.default_domain}"
|
|
|
|
}
|