
Hubot::TextListener - text Listener for hubot

use Hubot::TextListener;
Hubot::TextListener->new(
robot => $robot, # $robot is Hubot::Robot
regex => qr/hi/,
callback => sub {
my $msg = shift; # $msg is Hubot::Response
$msg->reply('hi');
}
);

try to match Hubot::TextMessage then execute callback with matching result and input messages.


Hyungsuk Hong <hshong@perl.kr>

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.