Show
Ignore:
Timestamp:
11/14/07 11:09:52 (6 years ago)
Author:
tomyhero
Message:

lang/perl/Net-Twitter-Diff : Fix POD staff.

Location:
lang/perl/Net-Twitter-Diff/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Net-Twitter-Diff/trunk/Changes

    r1406 r1446  
    11Revision history for Net-Twitter-Diff 
     2 
     30.03    2007-11-14/11:04 
     4        - Relase on CPAN 
    25 
    360.02    2007-11-14/00:05 
  • lang/perl/Net-Twitter-Diff/trunk/META.yml

    r1244 r1446  
     1# http://module-build.sourceforge.net/META-spec.html 
     2#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX# 
     3name:         Net-Twitter-Diff 
     4version:      0.03 
     5version_from: lib/Net/Twitter/Diff.pm 
     6installdirs:  site 
     7requires: 
     8    Array::Diff:                   0 
     9    Net::Twitter:                  0 
     10    Test::More:                    0 
     11 
     12distribution_type: module 
     13generated_by: ExtUtils::MakeMaker version 6.30 
  • lang/perl/Net-Twitter-Diff/trunk/Makefile.PL

    r1244 r1446  
    1212        'Test::More'      => 0, 
    1313        'Net::Twitter'    => 0, 
    14         'Class::Accessor' => 0, 
    1514        'Array::Diff'     => 0, 
    1615    }, 
  • lang/perl/Net-Twitter-Diff/trunk/lib/Net/Twitter/Diff.pm

    r1406 r1446  
    66use Array::Diff; 
    77 
    8 our $VERSION = '0.02'; 
     8our $VERSION = '0.03'; 
    99 
    1010sub xfollowing { 
     
    180180=head1 DESCRIPTION 
    181181 
    182 Just handy when you want know relationshop between your followers and follwoings and when you wnat to compare your following and sombody's 
     182Handy when you want to know relationshop between your followers and follwoings and when you wnat to compare your following and sombody's. 
    183183 
    184184=head1 METHOD 
    185185 
    186 =head2 diff() 
     186=head2 diff 
    187187 
    188188run diff 
     
    190190response hash 
    191191 
    192  $res->{not_following} 
     192=over 4 
     193 
     194=item B<not_following> 
    193195 
    194196get screen_names who you are not following but they are. 
    195197 
    196  $res->{not_followed} 
     198=item B<not_followed> 
    197199 
    198200get screen_names who they are not following but you are. 
    199201 
    200  $res->{communicated} 
     202=item B<communicated> 
    201203 
    202204get screen_names who you are following them and also they follow you.  
    203205 
     206=back 
     207 
    204208=head2 comp_following( $twitter_id ) 
    205209 
     
    208212response hash 
    209213 
    210  $res->{only_me} 
     214=over 4 
     215 
     216=item B<only_me> 
    211217 
    212218only you are following 
    213219 
    214  $res->{not_me} 
     220=item B<not_me> 
    215221 
    216222you are not following but sombody is following 
    217223 
    218  $res->{share} 
     224=item B<share> 
    219225 
    220226both you and somebody are following. 
    221227 
     228=back 
     229 
    222230=head2 xfollowing 
    223231 
     
    228236can get more that 100 followers. 
    229237 
    230 =head2 SEE ALSO 
     238=head1 SEE ALSO 
    231239 
    232240L:<Net::Twitter>