r53528 - in /trunk/libnet-twitter-perl: ./ debian/ lib/Net/ lib/Net/Twitter/ lib/Net/Twitter/Role/API/ t/

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Mar 3 14:59:15 UTC 2010


Author: jawnsy-guest
Date: Wed Mar  3 14:59:09 2010
New Revision: 53528

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53528
Log:
New upstream release

Added:
    trunk/libnet-twitter-perl/t/geo.t
      - copied unchanged from r53526, branches/upstream/libnet-twitter-perl/current/t/geo.t
Modified:
    trunk/libnet-twitter-perl/Changes
    trunk/libnet-twitter-perl/MANIFEST
    trunk/libnet-twitter-perl/META.yml
    trunk/libnet-twitter-perl/README
    trunk/libnet-twitter-perl/debian/changelog
    trunk/libnet-twitter-perl/lib/Net/Identica.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter.pod
    trunk/libnet-twitter-perl/lib/Net/Twitter/API.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter/Core.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter/OAuth.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter/Role/API/REST.pm
    trunk/libnet-twitter-perl/lib/Net/Twitter/Search.pm
    trunk/libnet-twitter-perl/t/99-pod_spelling.t

Modified: trunk/libnet-twitter-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/Changes?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/Changes (original)
+++ trunk/libnet-twitter-perl/Changes Wed Mar  3 14:59:09 2010
@@ -1,3 +1,7 @@
+3.11008 2010-03-02
+    - Added support for new api methods: reverse_geocode, geo_id
+    - Updated method "update" with new parameters: place_id, display_coordinates
+
 3.11007 2010-02-27
     - xAuth implemented and tested
 

Modified: trunk/libnet-twitter-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/MANIFEST?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/MANIFEST (original)
+++ trunk/libnet-twitter-perl/MANIFEST Wed Mar  3 14:59:09 2010
@@ -60,5 +60,6 @@
 t/99-pod_coverage.t
 t/99-pod_spelling.t
 t/99-pod_syntax.t
+t/geo.t
 t/lib/TestUA.pm
 t/unicode.t

Modified: trunk/libnet-twitter-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/META.yml?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/META.yml (original)
+++ trunk/libnet-twitter-perl/META.yml Wed Mar  3 14:59:09 2010
@@ -50,4 +50,4 @@
   homepage: http://github.com/semifor/Net-Twitter
   license: http://dev.perl.org/licenses/
   repository: git://github.com/semifor/Net-Twitter.git
-version: 3.11007
+version: 3.11008

Modified: trunk/libnet-twitter-perl/README
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/README?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/README (original)
+++ trunk/libnet-twitter-perl/README Wed Mar  3 14:59:09 2010
@@ -2,7 +2,7 @@
     Net::Twitter - A perl interface to the Twitter API
 
 VERSION
-    This document describes Net::Twitter version 3.11007
+    This document describes Net::Twitter version 3.11008
 
 SYNOPSIS
       use Net::Twitter;
@@ -785,6 +785,17 @@
 
         Returns: Bool
 
+    geo_id
+    geo_id(id)
+
+        Parameters: id
+        Required: id
+
+        Returns details of a place returned from the "reverse_geocode"
+        method.
+
+        Returns: HashRef
+
     home_timeline
 
         Parameters: since_id, max_id, count, page
@@ -909,7 +920,7 @@
         Returns: Arrayref[Status]
 
     retweets_of_me
-    alias: rewtweeted_of_me
+    alias: retweeted_of_me
 
         Parameters: since_id, max_id, count, page
         Required: *none*
@@ -918,6 +929,54 @@
         have been retweeted by others.
 
         Returns: ArrayRef[Status]
+
+    reverse_geocode
+    reverse_geocode(lat, long)
+
+        Parameters: lat, long, accuracy, granularity, max_results
+        Required: lat, long
+
+        Search for places (cities and neighborhoods) that can be attached to
+        a statuses/update. Given a latitude and a longitude, return a list
+        of all the valid places that can be used as a place_id when updating
+        a status. Conceptually, a query can be made from the user's
+        location, retrieve a list of places, have the user validate the
+        location he or she is at, and then send the ID of this location up
+        with a call to statuses/update.
+
+        There are multiple granularities of places that can be returned --
+        "neighborhoods", "cities", etc. At this time, only United States
+        data is available through this method.
+
+        lat Required. The latitude to query about. Valid ranges are -90.0 to
+            +90.0 (North is positive) inclusive.
+
+        long
+            Required. The longitude to query about. Valid ranges are -180.0
+            to +180.0 (East is positive) inclusive.
+
+        accuracy
+            Optional. A hint on the "region" in which to search. If a
+            number, then this is a radius in meters, but it can also take a
+            string that is suffixed with ft to specify feet. If this is not
+            passed in, then it is assumed to be 0m. If coming from a device,
+            in practice, this value is whatever accuracy the device has
+            measuring its location (whether it be coming from a GPS, WiFi
+            triangulation, etc.).
+
+        granularity
+            Optional. The minimal granularity of data to return. If this is
+            not passed in, then "neighborhood" is assumed. "city" can also
+            be passed.
+
+        max_results
+            Optional. A hint as to the number of results to return. This
+            does not guarantee that the number of results returned will
+            equal max_results, but instead informs how many "nearby" results
+            to return. Ideally, only pass in the number of places you intend
+            to display to the user here.
+
+        Returns: HashRef
 
     saved_searches
 
@@ -1037,17 +1096,51 @@
     update
     update(status)
 
-        Parameters: status, lat, long, in_reply_to_status_id
+        Parameters: status, lat, long, place_id, display_coordinates,
+        in_reply_to_status_id
         Required: status
 
         Updates the authenticating user's status. Requires the status
         parameter specified. A status update with text identical to the
         authenticating user's current status will be ignored.
 
-        The optional "lat" and "long" parameters add location data to the
-        status for a geo enabled account. They expect values in the ranges
-        -90.0 to +90.0 and -180.0 to +180.0 respectively. They are ignored
-        unless the user's "geo_enabled" field is true.
+        status
+            Required. The text of your status update. URL encode as
+            necessary. Statuses over 140 characters will cause a 403 error
+            to be returned from the API.
+
+        in_reply_to_status_id
+            Optional. The ID of an existing status that the update is in
+            reply to. o Note: This parameter will be ignored unless the
+            author of the tweet this parameter references is mentioned
+            within the status text. Therefore, you must include @username,
+            where username is the author of the referenced tweet, within the
+            update.
+
+        lat Optional. The location's latitude that this tweet refers to. The
+            valid ranges for latitude is -90.0 to +90.0 (North is positive)
+            inclusive. This parameter will be ignored if outside that range,
+            if it is not a number, if geo_enabled is disabled, or if there
+            not a corresponding long parameter with this tweet.
+
+        long
+            Optional. The location's longitude that this tweet refers to.
+            The valid ranges for longitude is -180.0 to +180.0 (East is
+            positive) inclusive. This parameter will be ignored if outside
+            that range, if it is not a number, if geo_enabled is disabled,
+            or if there not a corresponding lat parameter with this tweet.
+
+        place_id
+            Optional. The place to attach to this status update. Valid
+            place_ids can be found by querying "reverse_geocode".
+
+        display_coordinates
+            Optional. By default, geo-tweets will have their coordinates
+            exposed in the status object (to remain backwards compatible
+            with existing API applications). To turn off the display of the
+            precise latitude and longitude (but keep the contextual location
+            information), pass "display_coordinates =" 0> on the status
+            update.
 
         Returns: Status
 

Modified: trunk/libnet-twitter-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/debian/changelog?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/debian/changelog (original)
+++ trunk/libnet-twitter-perl/debian/changelog Wed Mar  3 14:59:09 2010
@@ -1,3 +1,9 @@
+libnet-twitter-perl (3.11008-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Wed, 03 Mar 2010 10:23:13 -0500
+
 libnet-twitter-perl (3.11007-1) unstable; urgency=low
 
   * New upstream release

Modified: trunk/libnet-twitter-perl/lib/Net/Identica.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Identica.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Identica.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Identica.pm Wed Mar  3 14:59:09 2010
@@ -2,7 +2,7 @@
 use Moose;
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.11007';
+our $VERSION = '3.11008';
 $VERSION     = eval $VERSION; # numify for warning-free dev releases
 
 extends 'Net::Twitter::Core';

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter.pm Wed Mar  3 14:59:09 2010
@@ -11,7 +11,7 @@
 );
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.11007';
+our $VERSION = '3.11008';
 
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter.pod
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter.pod?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter.pod (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter.pod Wed Mar  3 14:59:09 2010
@@ -4,7 +4,7 @@
 
 =head1 VERSION
 
-This document describes Net::Twitter version 3.11007
+This document describes Net::Twitter version 3.11008
 
 =head1 SYNOPSIS
 
@@ -1034,6 +1034,25 @@
 
 Returns: Bool
 
+=item B<geo_id>
+
+=item B<geo_id(id)>
+
+
+
+=over 4
+
+=item Parameters: id
+
+=item Required: id
+
+=back
+
+Returns details of a place returned from the C<reverse_geocode> method.
+
+
+Returns: HashRef
+
 =item B<home_timeline>
 
 
@@ -1238,7 +1257,7 @@
 =item B<retweets_of_me>
 
 
-=item alias: rewtweeted_of_me
+=item alias: retweeted_of_me
 
 
 =over 4
@@ -1254,6 +1273,71 @@
 
 
 Returns: ArrayRef[Status]
+
+=item B<reverse_geocode>
+
+=item B<reverse_geocode(lat, long)>
+
+
+
+=over 4
+
+=item Parameters: lat, long, accuracy, granularity, max_results
+
+=item Required: lat, long
+
+=back
+
+
+Search for places (cities and neighborhoods) that can be attached to a
+statuses/update.  Given a latitude and a longitude, return a list of all the
+valid places that can be used as a place_id when updating a status.
+Conceptually, a query can be made from the user's location, retrieve a list of
+places, have the user validate the location he or she is at, and then send the
+ID of this location up with a call to statuses/update.
+
+There are multiple granularities of places that can be returned --
+"neighborhoods", "cities", etc.  At this time, only United States data is
+available through this method. 
+
+=over 4
+
+=item lat
+
+Required.  The latitude to query about.  Valid ranges are -90.0 to +90.0 (North
+is positive) inclusive.
+
+=item long
+
+Required. The longitude to query about.  Valid ranges are -180.0 to +180.0
+(East is positive) inclusive.
+
+=item accuracy
+
+Optional. A hint on the "region" in which to search.  If a number, then this is
+a radius in meters, but it can also take a string that is suffixed with ft to
+specify feet.  If this is not passed in, then it is assumed to be 0m.  If
+coming from a device, in practice, this value is whatever accuracy the device
+has measuring its location (whether it be coming from a GPS, WiFi
+triangulation, etc.).
+
+=item granularity
+
+Optional.  The minimal granularity of data to return.  If this is not passed
+in, then C<neighborhood> is assumed.  C<city> can also be passed.
+
+=item max_results
+
+Optional.  A hint as to the number of results to return.  This does not
+guarantee that the number of results returned will equal max_results, but
+instead informs how many "nearby" results to return.  Ideally, only pass in the
+number of places you intend to display to the user here. 
+
+=back
+
+
+
+Returns: HashRef
 
 =item B<saved_searches>
 
@@ -1449,20 +1533,61 @@
 
 =over 4
 
-=item Parameters: status, lat, long, in_reply_to_status_id
+=item Parameters: status, lat, long, place_id, display_coordinates, in_reply_to_status_id
 
 =item Required: status
 
 =back
+
 
 Updates the authenticating user's status.  Requires the status parameter
 specified.  A status update with text identical to the authenticating
 user's current status will be ignored.
 
-The optional C<lat> and C<long> parameters add location data to the status for
-a geo enabled account. They expect values in the ranges -90.0 to +90.0 and
--180.0 to +180.0 respectively.  They are ignored unless the user's
-C<geo_enabled> field is true.
+=over 4
+
+=item status
+
+Required.  The text of your status update. URL encode as necessary. Statuses
+over 140 characters will cause a 403 error to be returned from the API.
+
+=item in_reply_to_status_id
+
+Optional. The ID of an existing status that the update is in reply to.  o Note:
+This parameter will be ignored unless the author of the tweet this parameter
+references is mentioned within the status text. Therefore, you must include
+ at username, where username is the author of the referenced tweet, within the
+update.
+
+=item lat
+
+Optional. The location's latitude that this tweet refers to.  The valid ranges
+for latitude is -90.0 to +90.0 (North is positive) inclusive.  This parameter
+will be ignored if outside that range, if it is not a number, if geo_enabled is
+disabled, or if there not a corresponding long parameter with this tweet.
+
+=item long
+
+Optional. The location's longitude that this tweet refers to.  The valid ranges
+for longitude is -180.0 to +180.0 (East is positive) inclusive.  This parameter
+will be ignored if outside that range, if it is not a number, if geo_enabled is
+disabled, or if there not a corresponding lat parameter with this tweet.
+
+=item place_id
+
+Optional. The place to attach to this status update.  Valid place_ids can be
+found by querying C<reverse_geocode>.
+
+=item display_coordinates
+
+Optional. By default, geo-tweets will have their coordinates exposed in the
+status object (to remain backwards compatible with existing API applications).
+To turn off the display of the precise latitude and longitude (but keep the
+contextual location information), pass C<display_coordinates => 0> on the
+status update.
+
+=back
+
 
 
 Returns: Status

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter/API.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter/API.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter/API.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter/API.pm Wed Mar  3 14:59:09 2010
@@ -68,6 +68,13 @@
                          ? $synthetic_args->{authenticate}
                          : $options{authenticate}
                          ;
+        # promote boolean parameters
+        for my $boolean_arg ( @{ $options{booleans} } ) {
+            if ( exists $args->{$boolean_arg} ) {
+                next if $args->{$boolean_arg} =~ /^true|false$/;
+                $args->{$boolean_arg} = $args->{$boolean_arg} ? 'true' : 'false';
+            }
+        }
 
         my $local_path = $modify_path->($path, $args);
         
@@ -109,6 +116,7 @@
 has required    => ( isa => 'ArrayRef[Str]', is => 'ro', default => sub { [] } );
 has returns     => ( isa => 'Str', is => 'ro', predicate => 'has_returns' );
 has deprecated  => ( isa => 'Bool', is => 'ro', default => 0 );
+has booleans    => ( isa => 'ArrayRef[Str]', is => 'ro', default => sub { [] } );
 has authenticate => ( isa => 'Bool', is => 'ro', required => 1 );
 has datetime_parser => ( is => 'ro', required => 1 );
 

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter/Core.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter/Core.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter/Core.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter/Core.pm Wed Mar  3 14:59:09 2010
@@ -17,7 +17,7 @@
 use namespace::autoclean;
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.11007';
+our $VERSION = '3.11008';
 
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter/OAuth.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter/OAuth.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter/OAuth.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter/OAuth.pm Wed Mar  3 14:59:09 2010
@@ -2,7 +2,7 @@
 use Moose;
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.11007';
+our $VERSION = '3.11008';
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 
 extends  'Net::Twitter::Core';

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter/Role/API/REST.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter/Role/API/REST.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter/Role/API/REST.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter/Role/API/REST.pm Wed Mar  3 14:59:09 2010
@@ -131,7 +131,7 @@
 Returns the 20 most recent tweets of the authenticated user that have been
 retweeted by others.
 
-    aliases   => [qw/rewtweeted_of_me/],
+    aliases   => [qw/retweeted_of_me/],
     path      => 'statuses/retweets_of_me',
     method    => 'GET',
     params    => [qw/since_id max_id count page/],
@@ -196,23 +196,65 @@
 );
 
 twitter_api_method update => (
-    description => <<EOT,
+    path       => 'statuses/update',
+    method     => 'POST',
+    params     => [qw/status lat long place_id display_coordinates in_reply_to_status_id/],
+    required   => [qw/status/],
+    booleans   => [qw/display_coordinates/],
+    add_source => 1,
+    returns    => 'Status',
+    description => <<'EOT',
+
 Updates the authenticating user's status.  Requires the status parameter
 specified.  A status update with text identical to the authenticating
 user's current status will be ignored.
 
-The optional C<lat> and C<long> parameters add location data to the status for
-a geo enabled account. They expect values in the ranges -90.0 to +90.0 and
--180.0 to +180.0 respectively.  They are ignored unless the user's
-C<geo_enabled> field is true.
+=over 4
+
+=item status
+
+Required.  The text of your status update. URL encode as necessary. Statuses
+over 140 characters will cause a 403 error to be returned from the API.
+
+=item in_reply_to_status_id
+
+Optional. The ID of an existing status that the update is in reply to.  o Note:
+This parameter will be ignored unless the author of the tweet this parameter
+references is mentioned within the status text. Therefore, you must include
+ at username, where username is the author of the referenced tweet, within the
+update.
+
+=item lat
+
+Optional. The location's latitude that this tweet refers to.  The valid ranges
+for latitude is -90.0 to +90.0 (North is positive) inclusive.  This parameter
+will be ignored if outside that range, if it is not a number, if geo_enabled is
+disabled, or if there not a corresponding long parameter with this tweet.
+
+=item long
+
+Optional. The location's longitude that this tweet refers to.  The valid ranges
+for longitude is -180.0 to +180.0 (East is positive) inclusive.  This parameter
+will be ignored if outside that range, if it is not a number, if geo_enabled is
+disabled, or if there not a corresponding lat parameter with this tweet.
+
+=item place_id
+
+Optional. The place to attach to this status update.  Valid place_ids can be
+found by querying C<reverse_geocode>.
+
+=item display_coordinates
+
+Optional. By default, geo-tweets will have their coordinates exposed in the
+status object (to remain backwards compatible with existing API applications).
+To turn off the display of the precise latitude and longitude (but keep the
+contextual location information), pass C<display_coordinates => 0> on the
+status update.
+
+=back
+
 EOT
 
-    path       => 'statuses/update',
-    method     => 'POST',
-    params     => [qw/status lat long in_reply_to_status_id/],
-    required   => [qw/status/],
-    add_source => 1,
-    returns    => 'Status',
 );
 
 twitter_api_method destroy_status => (
@@ -856,6 +898,74 @@
 
 );
 
+twitter_api_method reverse_geocode => (
+    path        => 'geo/reverse_geocode',
+    method      => 'GET',
+    params      => [qw/lat long accuracy granularity max_results/],
+    required    => [qw/lat long/],
+    returns     => 'HashRef',
+    description => <<'EOT',
+
+Search for places (cities and neighborhoods) that can be attached to a
+statuses/update.  Given a latitude and a longitude, return a list of all the
+valid places that can be used as a place_id when updating a status.
+Conceptually, a query can be made from the user's location, retrieve a list of
+places, have the user validate the location he or she is at, and then send the
+ID of this location up with a call to statuses/update.
+
+There are multiple granularities of places that can be returned --
+"neighborhoods", "cities", etc.  At this time, only United States data is
+available through this method. 
+
+=over 4
+
+=item lat
+
+Required.  The latitude to query about.  Valid ranges are -90.0 to +90.0 (North
+is positive) inclusive.
+
+=item long
+
+Required. The longitude to query about.  Valid ranges are -180.0 to +180.0
+(East is positive) inclusive.
+
+=item accuracy
+
+Optional. A hint on the "region" in which to search.  If a number, then this is
+a radius in meters, but it can also take a string that is suffixed with ft to
+specify feet.  If this is not passed in, then it is assumed to be 0m.  If
+coming from a device, in practice, this value is whatever accuracy the device
+has measuring its location (whether it be coming from a GPS, WiFi
+triangulation, etc.).
+
+=item granularity
+
+Optional.  The minimal granularity of data to return.  If this is not passed
+in, then C<neighborhood> is assumed.  C<city> can also be passed.
+
+=item max_results
+
+Optional.  A hint as to the number of results to return.  This does not
+guarantee that the number of results returned will equal max_results, but
+instead informs how many "nearby" results to return.  Ideally, only pass in the
+number of places you intend to display to the user here. 
+
+=back
+
+EOT
+);
+
+twitter_api_method geo_id => (
+    path => 'geo/id/id',
+    method => 'GET',
+    params => [qw/id/],
+    required => [qw/id/],
+    returns  => 'HashRef',
+    description => <<'EOT',
+Returns details of a place returned from the C<reverse_geocode> method.
+EOT
+);
+
 1;
 
 __END__

Modified: trunk/libnet-twitter-perl/lib/Net/Twitter/Search.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/lib/Net/Twitter/Search.pm?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/lib/Net/Twitter/Search.pm (original)
+++ trunk/libnet-twitter-perl/lib/Net/Twitter/Search.pm Wed Mar  3 14:59:09 2010
@@ -2,7 +2,7 @@
 use Moose;
 
 # use *all* digits for fBSD ports
-our $VERSION = '3.11007';
+our $VERSION = '3.11008';
 $VERSION = eval $VERSION; # numify for warning-free dev releases
 
 extends 'Net::Twitter::Core';

Modified: trunk/libnet-twitter-perl/t/99-pod_spelling.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libnet-twitter-perl/t/99-pod_spelling.t?rev=53528&op=diff
==============================================================================
--- trunk/libnet-twitter-perl/t/99-pod_spelling.t (original)
+++ trunk/libnet-twitter-perl/t/99-pod_spelling.t Wed Mar  3 14:59:09 2010
@@ -23,9 +23,12 @@
 CPAN
 DateTime
 DirectMessage
+EOT
 Etcheverry
 ExtendedUser
 geo
+GPS
+granularities
 Grennan
 IM
 IP
@@ -97,6 +100,7 @@
 url
 useragent
 username
+WiFi
 WOEID
 woeid
 xAuth




More information about the Pkg-perl-cvs-commits mailing list