| Class | ActiveLdap::Ldif |
| In: |
lib/active_ldap/ldif.rb
|
| Parent: | Object |
| records | [R] | |
| version | [R] |
# File lib/active_ldap/ldif.rb, line 574
574: def initialize(records=[])
575: @version = 1
576: @records = records
577: end
# File lib/active_ldap/ldif.rb, line 595
595: def ==(other)
596: other.is_a?(self.class) and
597: @version == other.version and @records == other.records
598: end