Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/mongo_mapper/support.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#class_def(name, &blk) ⇒ Object
Defines an instance method within a class.
-
#meta_def(name, &blk) ⇒ Object
Adds methods to a metaclass.
- #meta_eval(&blk) ⇒ Object
-
#metaclass ⇒ Object
The hidden singleton lurks behind everyone.
Class Method Details
.from_mongo(value) ⇒ Object
120 121 122 |
# File 'lib/mongo_mapper/support.rb', line 120 def self.from_mongo(value) value end |
.to_mongo(value) ⇒ Object
116 117 118 |
# File 'lib/mongo_mapper/support.rb', line 116 def self.to_mongo(value) value end |
Instance Method Details
#class_def(name, &blk) ⇒ Object
Defines an instance method within a class
112 113 114 |
# File 'lib/mongo_mapper/support.rb', line 112 def class_def(name, &blk) class_eval { define_method(name, &blk) } end |
#meta_def(name, &blk) ⇒ Object
Adds methods to a metaclass
107 108 109 |
# File 'lib/mongo_mapper/support.rb', line 107 def (name, &blk) { define_method(name, &blk) } end |
#meta_eval(&blk) ⇒ Object
102 103 104 |
# File 'lib/mongo_mapper/support.rb', line 102 def (&blk) .instance_eval(&blk) end |
#metaclass ⇒ Object
The hidden singleton lurks behind everyone
98 99 100 |
# File 'lib/mongo_mapper/support.rb', line 98 def class << self; self end end |