Skip to content

Instantly share code, notes, and snippets.

@MaksimAbramchuk
Last active June 20, 2016 07:38
Show Gist options
  • Select an option

  • Save MaksimAbramchuk/1c0f9c805ff687bc5ae1acdbc29e3566 to your computer and use it in GitHub Desktop.

Select an option

Save MaksimAbramchuk/1c0f9c805ff687bc5ae1acdbc29e3566 to your computer and use it in GitHub Desktop.
module BotCommand
class Born < Base
def should_start?
text =~ /\A\/born/
end
def start
send_message("You have been just born! It’s time to learn some programming stuff. Type /accomplish_tutorial to start learning Rails from simple tutorial!")
user.set_next_bot_command('BotCommand::AccomplishTutorial')
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment