# File lib/active_ldap/ldif.rb, line 748
748: def ==(other)
749: other.is_a?(self.class) and
750: @type == other.type and
751: @criticality = other.criticality and
752: @value == other.value
753: end
# File lib/active_ldap/ldif.rb, line 724
724: def criticality?
725: @criticality
726: end
# File lib/active_ldap/ldif.rb, line 728
728: def to_a
729: [@type, @criticality, @value]
730: end
# File lib/active_ldap/ldif.rb, line 756
756: def normalize_criticality(criticality)
757: case criticality
758: when "true", true
759: true
760: when "false", false
761: false
762: when nil
763: nil
764: else
765: raise ArgumentError,
766: _("invalid criticality value: %s") % criticality.inspect
767: end
768: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.