13
Introduction To Hubot

Hubot

Embed Size (px)

DESCRIPTION

hubot 소개

Citation preview

  • 1. Introduction To Hubot

2. Hello Hubot! Made by GitHubNode.js .Coffee Script .Redis .[] . 3. Hubot Twitter Twittbot Twittbot ScriptIRCIRCbot IRCbot Script 4. Hubot Twitter Twittbot Twittbot ScriptIRCIRCbot IRCbot Script 5. Hubot Twitter Twittbot Twittbot ScriptIRCIRCbot IRCbot Script 6. Hubot Twitter Twittbot Twittbot ScriptHubotIRCIRCbot IRCbot Script 7. GitHub Hubot ! . .(wifit ) .GitHub deploy. TV .Git branch build status . SMS . . . 8. . Adapter Hubot Script shell(default) Google images Campfire Maps IRC Play Youtube ... 9. Script # hubot greeting.## (hi|hello) - say hi to your butlermodule.exports = (robot) ->robot.respond /hi|hello/i, (msg) ->msg.send "Howdy!"# > me : hubot hi# > hubot : Howdy! 10. Script # hubot greeting.## (hi|hello) - say hi to your butlermodule.exports = (robot) ->robot.respond /hi|hello/i, (msg) ->msg.send "Howdy!" 11. Script # hubot greeting.## (hi|hello) - say hi to your butlermodule.exports = (robot) ->robot.hear /hi|hello/i, (msg) ->msg.send "Howdy!"# > me : hi# > hubot : Howdy! 12. .. HTTP Request Random Message Reply to specific user ... 13. http://hubot.github.com/ https://github.com/blog/968-say-hello-to-hubot http://www.slideshare.net/dcshi/introduction-to-hubo https://github.com/github/hubot-scripts http://theprogrammingbutler.com/blog/archives/2011