Method: LOM::Filtered#method_missing

Defined in:
lib/lom/filtered.rb

#method_missing(method_name, *args, &block) ⇒ Object (private)

Call the ldap_list defined with that name



183
184
185
186
187
188
# File 'lib/lom/filtered.rb', line 183

def method_missing(method_name, *args, &block)
    if @src&.ldap_listing.include?(method_name)
    then self & @src.send(method_name, *args, &block)
    else super
    end        
end