2010-04-22 23:52:11 +00:00
|
|
|
# require 'locomotive/patches'
|
|
|
|
require 'locomotive/configuration'
|
2010-05-30 23:57:33 +00:00
|
|
|
require 'locomotive/liquid'
|
2010-06-01 00:06:46 +00:00
|
|
|
require 'locomotive/mongoid'
|
2010-04-22 23:52:11 +00:00
|
|
|
|
2010-06-02 00:39:05 +00:00
|
|
|
|
2010-04-11 23:59:18 +00:00
|
|
|
module Locomotive
|
|
|
|
|
|
|
|
class << self
|
|
|
|
attr_accessor :config
|
|
|
|
|
|
|
|
def config
|
|
|
|
self.config = Configuration.new unless @config
|
|
|
|
@config
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.configure
|
|
|
|
self.config ||= Configuration.new
|
|
|
|
yield(self.config)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|