diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-07-18 09:17:11 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-07-18 09:20:12 +0200 |
| commit | f08e782d88348464d4c615f578c15b9d84871308 (patch) | |
| tree | 632bdd5fff9216e435bde1789c2838f4ddfe8bef | |
| parent | remove hsipit (diff) | |
| download | net-backtype-f08e782d88348464d4c615f578c15b9d84871308.tar.gz | |
switch from mx::net::api to net::http::api; version and changesmaster
| -rw-r--r-- | Changes | 5 | ||||
| -rw-r--r-- | dist.ini | 3 | ||||
| -rw-r--r-- | lib/Net/Backtweet.pm | 2 | ||||
| -rw-r--r-- | lib/Net/Backtype.pm | 5 |
4 files changed, 8 insertions, 7 deletions
@@ -1,6 +1,9 @@ Revision history for Perl extension Net::Backtype -0.02 Mon 07 Jun 2010 09:35:58 AM CEST +0.03 Sat 17 Jul 2010 01:23:49 PM CEST + - use Net::HTTP::API instead of MooseX::Net::API + +0.02 Mon 07 Jun 2010 09:35:58 AM CEST - more users* methods from backtype - add stats_by_url and good_tweets_by_url to backtweet - add doc to all methods @@ -3,7 +3,7 @@ author = franck cuny <franck@lumberjaph.net> license = Perl_5 copyright_holder = linkfluence copyright_year = 2010 -version = 0.02 +version = 0.03 [@Filter] bundle = @Basic @@ -12,7 +12,6 @@ bundle = @Basic [MetaJSON] [PkgVersion] [PodSyntaxTests] -[KwaliteeTests] [PodCoverageTests] [NoTabsTests] [EOLTests] diff --git a/lib/Net/Backtweet.pm b/lib/Net/Backtweet.pm index 474cdc2..23e25c7 100644 --- a/lib/Net/Backtweet.pm +++ b/lib/Net/Backtweet.pm @@ -3,7 +3,7 @@ package Net::Backtweet; # ABSTRACT: client for the backtweet API use Moose; -use MooseX::Net::API; +use Net::HTTP::API; extends 'Net::Backtype'; net_api_declare backtweet => ( diff --git a/lib/Net/Backtype.pm b/lib/Net/Backtype.pm index 6f28877..4f1896d 100644 --- a/lib/Net/Backtype.pm +++ b/lib/Net/Backtype.pm @@ -2,10 +2,9 @@ package Net::Backtype; # ABSTRACT: client for the backtype API -use Moose; -use MooseX::Net::API; +use Net::HTTP::API; -our $VERSION = '0.02'; +our $VERSION = '0.03'; net_api_declare backtype => ( base_url => 'http://api.backtype.com', |
