Module: DataMapper::Property::Lookup
- Defined in:
- lib/dm-core/property/lookup.rb
Instance Method Summary collapse
-
#const_missing(name) ⇒ Property
protected
private
Provides transparent access to the Properties defined in DataMapper::Property.
Instance Method Details
#const_missing(name) ⇒ Property (protected)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Provides transparent access to the Properties defined in DataMapper::Property.
24 25 26 |
# File 'lib/dm-core/property/lookup.rb', line 24 def const_missing(name) Property.find_class(name.to_s) || super end |