class Net::LDAP::Filter

def le(attribute, value)

is less than or equal to the specified value.
Creates a Filter object indicating that a particular attribute value
#
def le(attribute, value)
  new(:le, attribute, value)
end