Skip to content

Instantly share code, notes, and snippets.

@reinh
Created January 23, 2009 18:56
Show Gist options
  • Save reinh/51135 to your computer and use it in GitHub Desktop.
Save reinh/51135 to your computer and use it in GitHub Desktop.
# Thanks to Josh Susser
class Object
alias_method :try, :send
end
class NilClass
def try
nil
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment