Skip to content

Instantly share code, notes, and snippets.

@irissilvermoon
Last active December 20, 2015 03:49
Show Gist options
  • Save irissilvermoon/6066424 to your computer and use it in GitHub Desktop.
Save irissilvermoon/6066424 to your computer and use it in GitHub Desktop.
class Bob
def hey(str)
str ||= ''
case str
when /[A-Z][^a-z]/
'Woah, chill out!'
when /\?$/
'Sure.'
when ""
'Fine. Be that way.'
else
'Whatever.'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment