This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
require "impressionist/engine.rb"
|
|
|
|
module Impressionist
|
|
# Define ORM
|
|
mattr_accessor :orm
|
|
@@orm = :active_record
|
|
|
|
# Load configuration from initializer
|
|
def self.setup
|
|
yield self
|
|
end
|
|
end
|