Sha256: 024c0b0b4544a5df86590cdbcb2b2de5b5101e20fba63a5bba0de0bd1b51cd4c
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# encoding: UTF-8 module MongoMapper module Plugins module Rails def self.configure(model) model.extend ActiveModel::Naming if defined?(ActiveModel) end module InstanceMethods def to_param id.to_s if persisted? end def to_model self end def to_key [id] if persisted? end def new_record? new? end def read_attribute(name) self[name] end def read_attribute_before_typecast(name) read_key_before_typecast(name) end def write_attribute(name, value) self[name] = value end end module ClassMethods def has_one(*args) one(*args) end def has_many(*args) many(*args) end def column_names keys.keys end def human_name self.name.demodulize.titleize end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mongo_mapper_ign-0.7.8 | lib/mongo_mapper/plugins/rails.rb |