module Treequel::LDAPModExtensions
Extensions to LDAP::Mods to make them grok ==.
Public Instance Methods
==( other )
click to toggle source
Returns true
if the other
LDAP::Record is equivalent to the receiver.
# File lib/treequel/monkeypatches.rb, line 34 def ==( other ) return ( other.class == self.class ) && ( self.mod_op == other.mod_op ) && ( self.mod_type == other.mod_type ) && ( self.mod_vals == other.mod_vals ) end