| Class | ActiveLdap::Ldif |
| In: |
lib/active_ldap/ldif.rb
|
| Parent: | Object |
| records | [R] | |
| version | [R] |
# File lib/active_ldap/ldif.rb, line 602
602: def initialize(records=[])
603: @version = 1
604: @records = records
605: end
# File lib/active_ldap/ldif.rb, line 623
623: def ==(other)
624: other.is_a?(self.class) and
625: @version == other.version and @records == other.records
626: end