Skip to content

Instantly share code, notes, and snippets.

@lmmendes
Last active February 22, 2016 19:01
Show Gist options
  • Save lmmendes/886689 to your computer and use it in GitHub Desktop.
Save lmmendes/886689 to your computer and use it in GitHub Desktop.
try method à la Rails
def try(method, *args, &block)
__send__(method.to_sym, *args, %block) if responds_to?(method.to_sym, true)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment