Skip to content

Instantly share code, notes, and snippets.

@rares
Forked from joshsusser/gist:48226
Created January 17, 2009 00:57
Show Gist options
  • Save rares/48227 to your computer and use it in GitHub Desktop.
Save rares/48227 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