Skip to content

Instantly share code, notes, and snippets.

@joshsusser
Created January 17, 2009 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joshsusser/48226 to your computer and use it in GitHub Desktop.
Save joshsusser/48226 to your computer and use it in GitHub Desktop.
# at the very least, use inheritance!
class Object
alias_method :try, :send
end
class NilClass
def try(*args)
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment