Created
June 15, 2016 22:31
-
-
Save MaksimAbramchuk/820293f555dcdfa6fdb262c5b883422a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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