The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Hubot::Scripts::Bundle - optional scripts for hubot

SYNOPSIS

example hubot-scripts.json

    [
        "redisBrain",
        "help",
        "ping",
        "uptime",
        "whisper",
        "eval",
            "tell"
    ]

and then,

    $ hubot

DESCRIPTION

hubot has extensible its feature by scripts. so scripts would be increase. I don't know how many there are.

maintaining various distribution is not easy. so foo, bar, baz, .. scripts will be added to this.

SCRIPTS

redisBrain

using redis as an external storage for robot's brain

ping
    me> hubot: ping
    hubot> me: PONG
    me> hubot: die
    hubot> Goodbye, cruel world.
    * hubot has quit
uptime
    me> hubot: uptime
    hubot> I've been sentient for 0 years, 00 months, 2 days, 00 hours, 252 minutes, 07 seconds
whisper
    # IRC only
    me> /msg hubot <channel> <text>
    hubot> <text>

speak <text> behind hubot

eval
    me> eval print $^V;
    hubot> v5.14.2

evaluate <code> and show the result via http://api.dan.co.jp/lleval.cgi

tell

Tell Hubot to send a user a message when present in the room

    me> hubot tell <user> <message>
bugzilla
    me> bug <id>|<keyword>
    me> bug search <keyword>

SEE ALSO

https://github.com/aanoaa/p5-hubot-scripts

AUTHOR

Hyungsuk Hong <hshong@perl.kr>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Hyungsuk Hong.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.