Skip to content

Instantly share code, notes, and snippets.

@jeffkreeftmeijer
Last active December 16, 2015 18:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jeffkreeftmeijer/5478520 to your computer and use it in GitHub Desktop.
Save jeffkreeftmeijer/5478520 to your computer and use it in GitHub Desktop.
class QuitCommand
def exectute
puts 'Goodbye'
end
end
class TweetCommand
def exectute
puts 'tweeting'
end
end
class DirectMessageCommand
def exectute
puts 'direct messaging'
end
end
class HelpCommand
def exectute
puts 'helping'
end
end
def process(input)
commands = {
'q' => GoodbyeCommand.new
'tweet' => TweetingCommand.new
'dm' => DirectMessageCommand.new
'help' => HelpingCommand.new
}
if command = commands[input]
command.execute
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment