Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save MaksimAbramchuk/820293f555dcdfa6fdb262c5b883422a to your computer and use it in GitHub Desktop.
module BotCommand
class WriteBlog < Base
def should_start?
text =~ /\A\/write_blog/
end
def start
send_message(‘Hmm, looks cool! Seems like you really know Rails! A real rockstar!’)
user.reset_next_bot_command
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment