Skip to content

Instantly share code, notes, and snippets.

@banderson623
Created August 16, 2013 04:00
Show Gist options
  • Save banderson623/6247204 to your computer and use it in GitHub Desktop.
Save banderson623/6247204 to your computer and use it in GitHub Desktop.
class Object
def try_or_else(method_name,else_thing)
return self.public_send(method_name)
rescue NoMethodError
return else_thing
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment