Changeset 18439

Show
Ignore:
Timestamp:
08/29/08 22:42:08 (4 months ago)
Author:
tokuhirom
Message:

this plugin was obsoleted

Location:
lang/perl/mobirc/trunk
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/mobirc/trunk/lib/App/Mobirc/Plugin/Component/Twitter.pm

    r13013 r18439  
    2525    isa     => 'Str', 
    2626    lazy    => 1, 
    27     default => { shift->username }, 
     27    default => sub { shift->username }, 
    2828); 
    2929 
     
    6464 
    6565hook 'run_component' => sub { 
    66     my ( $sself $global_context ) = @_; 
     66    my ( $self, $global_context ) = @_; 
    6767 
    6868    my $twitter = POE::Component::Client::Twitter->spawn( %{ $self } ); 
     
    107107}; 
    108108 
     109no Moose; __PACKAGE__->meta->make_immutable; 
    1091101; 
    110111__END__