
Hubot::Message

my $msg = Hubot::Message->new(
user => $user # $user is Hubot::User
);
$msg = Hubot::TextMessage->new(
user => $user # $user is Hubot::User
text => 'hi'
);
$msg->finish; # this message is processed.
# Hubot::Script::* will ignore this message.

Hubot::Adapter::* will make Hubot::Message stand on input.

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.