Skip to content

Instantly share code, notes, and snippets.

@lchanmann
Last active June 1, 2018 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lchanmann/93ea9ef953bc8ac00982dc0aeabfead6 to your computer and use it in GitHub Desktop.
Save lchanmann/93ea9ef953bc8ac00982dc0aeabfead6 to your computer and use it in GitHub Desktop.
bobbot_1
class BobBot
def respond(message)
[Question, Yell, Silence, Anything].each do |type|
return type.respond if type.valid?(message)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment