Skip to content

Instantly share code, notes, and snippets.

@radarek
Created May 7, 2014 08:19
Show Gist options
  • Save radarek/b4fada966889263051b1 to your computer and use it in GitHub Desktop.
Save radarek/b4fada966889263051b1 to your computer and use it in GitHub Desktop.
class Bob
def hey(message)
if empty?(message)
"Fine. Be that way!"
elsif yelling?(message)
"Woah, chill out!"
elsif question?(message)
"Sure."
else
"Whatever."
end
end
private
def empty?(message)
message =~ /\A\s*\z/
end
def yelling?(message)
message !~ /[a-z]/ && message =~ /[A-Z]/
end
def question?(message)
message =~ /\?\z/
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment