class Net::LDAP::Filter

def ge(attribute, value)

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