Module: LOM::EntryEnhanced
- Defined in:
- lib/lom/mapper.rb
Overview
This module is to be prepend to Entry instance when processing block ‘from_ldap`
It will allow the use of refined methods #first, #[], #all without requiring an explicit import of LDAPExt refinement in the class being mapped.
Instance Method Summary collapse
- #[](*args) ⇒ Object (also: #all)
- #first(*args) ⇒ Object
Instance Method Details
#[](*args) ⇒ Object Also known as: all
18 |
# File 'lib/lom/mapper.rb', line 18 def [](*args) ; super ; end |
#first(*args) ⇒ Object
17 |
# File 'lib/lom/mapper.rb', line 17 def first(*args) ; super ; end |