Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save MaksimAbramchuk/ffb3190b139c0463616aa2004be5f623 to your computer and use it in GitHub Desktop.
module BotCommand
class AccomplishTutorial < Base
def should_start?
text =~ /\A\/accomplish_tutorial/
end
def start
send_message("It was hard, but it’s over! Models, controllers, views, wow, a lot stuff! Let’s practice now. What do you think about writing a Rails blog? Type /write_blog to continue.")
user.set_next_bot_command(‘BotCommand::WriteBlog’)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment