Sha256: a9d61fcee0fca25e2575cbddcfb747af81ac66a5275d62695b6e16dee34907e7

Contents?: true

Size: 517 Bytes

Versions: 1

Compression:

Stored size: 517 Bytes

Contents

module Motr
  module Orm
    
    module ActiveRecord #:nodoc:
      extend ActiveSupport::Concern
      
      included do        
        extend Motr::Model
      end
      
      module Schema
        include Motr::Schema::Base
      end
      
    end
    
  end
end

ActiveRecord::Base.send :include, Motr::Orm::ActiveRecord
# ActiveRecord::ConnectionAdapters::Table.send :include, Motr::Orm::ActiveRecord::Schema
# ActiveRecord::ConnectionAdapters::TableDefinition.send :include, Motr::Orm::ActiveRecord::Schema

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
motr-0.0.5 lib/motr/orm/active_record.rb