Skip to content

Instantly share code, notes, and snippets.

@Spaceghost
Created December 31, 2013 07:09
Show Gist options
  • Save Spaceghost/8193591 to your computer and use it in GitHub Desktop.
Save Spaceghost/8193591 to your computer and use it in GitHub Desktop.
wrapped is unnecessary
def hooman(name)
"I am a pink, fleshy human named, #{name}."
rescue ArgumentError => e
self.logger "Someone screwed up again, bob."
raise HumanError(e)
end
def hooman(name)
begin
"I am a pink, fleshy human named, #{name}."
rescue ArgumentError => e
self.logger "Someone screwed up again, bob."
raise HumanError(e)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment