summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Changes5
-rw-r--r--dist.ini3
-rw-r--r--lib/Net/Backtweet.pm2
-rw-r--r--lib/Net/Backtype.pm5
4 files changed, 8 insertions, 7 deletions
diff --git a/Changes b/Changes
index 576c89b..0755fd7 100644
--- a/Changes
+++ b/Changes
@@ -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
diff --git a/dist.ini b/dist.ini
index b6ee62f..64f737f 100644
--- a/dist.ini
+++ b/dist.ini
@@ -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',