Skip to content

Instantly share code, notes, and snippets.

@leandro
Created January 23, 2010 18:05
Show Gist options
  • Select an option

  • Save leandro/284707 to your computer and use it in GitHub Desktop.

Select an option

Save leandro/284707 to your computer and use it in GitHub Desktop.
class NilClass
def > value
false
end
def <=> value
return 0 if value.nil?
end
alias_method :<, :>
alias_method :<=, :>
alias_method :>=, :>
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment