2013-07-06 02:14:25 +00:00
|
|
|
require 'impressionist/load'
|
2011-02-04 04:13:41 +00:00
|
|
|
|
|
|
|
module Impressionist
|
2013-05-10 21:33:37 +00:00
|
|
|
# Define default ORM
|
2012-03-12 22:06:16 +00:00
|
|
|
mattr_accessor :orm
|
|
|
|
@@orm = :active_record
|
|
|
|
|
|
|
|
# Load configuration from initializer
|
|
|
|
def self.setup
|
|
|
|
yield self
|
|
|
|
end
|
2011-12-18 20:10:34 +00:00
|
|
|
end
|