[Bast-commits] r9581 - in
ironman/branches/mk-ii/Perlanet-IronMan-0.02: . lib/Perlanet t
aCiD2 at dev.catalyst.perl.org
aCiD2 at dev.catalyst.perl.org
Mon Jun 7 11:53:45 GMT 2010
Author: aCiD2
Date: 2010-06-07 12:53:45 +0100 (Mon, 07 Jun 2010)
New Revision: 9581
Added:
ironman/branches/mk-ii/Perlanet-IronMan-0.02/ChangeLog
ironman/branches/mk-ii/Perlanet-IronMan-0.02/dist.ini
Removed:
ironman/branches/mk-ii/Perlanet-IronMan-0.02/Makefile.PL
ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/02_xml_feed.t
ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/03_uri_fetch.t
Modified:
ironman/branches/mk-ii/Perlanet-IronMan-0.02/TODO
ironman/branches/mk-ii/Perlanet-IronMan-0.02/lib/Perlanet/IronMan.pm
Log:
Getting 0.02_01 ready for CPAN
Added: ironman/branches/mk-ii/Perlanet-IronMan-0.02/ChangeLog
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/ChangeLog (rev 0)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/ChangeLog 2010-06-07 11:53:45 UTC (rev 9581)
@@ -0,0 +1,5 @@
+Revision history for Perlanet-IronMan
+
+0.02_01 Mon, Jun 07, 2010
+
+ * First development release of Perlanet-IronMan
Deleted: ironman/branches/mk-ii/Perlanet-IronMan-0.02/Makefile.PL
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/Makefile.PL 2010-06-03 15:59:47 UTC (rev 9580)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/Makefile.PL 2010-06-07 11:53:45 UTC (rev 9581)
@@ -1,11 +0,0 @@
-use inc::Module::Install;
-
-all_from('lib/Perlanet/IronMan.pm');
-
-requires 'IronMan::Schema';
-requires 'Perlanet';
-requires 'HTML::Truncate';
-
-auto_install;
-
-WriteAll;
Modified: ironman/branches/mk-ii/Perlanet-IronMan-0.02/TODO
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/TODO 2010-06-03 15:59:47 UTC (rev 9580)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/TODO 2010-06-07 11:53:45 UTC (rev 9581)
@@ -1,2 +1,2 @@
* How to populate the feed_id field (in render)
-* How to actually call resultset('feed')->unseen_filter
\ No newline at end of file
+* How to actually call resultset('feed')->unseen_filter
Added: ironman/branches/mk-ii/Perlanet-IronMan-0.02/dist.ini
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/dist.ini (rev 0)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/dist.ini 2010-06-07 11:53:45 UTC (rev 9581)
@@ -0,0 +1,8 @@
+name = Perlanet-IronMan
+version = 0.02_01
+author = Enlightened Perl Organisation
+license = Perl_5
+copyright_holder = Enlightened Perl Organisation
+
+[@Basic]
+[AutoPrereq]
\ No newline at end of file
Modified: ironman/branches/mk-ii/Perlanet-IronMan-0.02/lib/Perlanet/IronMan.pm
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/lib/Perlanet/IronMan.pm 2010-06-03 15:59:47 UTC (rev 9580)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/lib/Perlanet/IronMan.pm 2010-06-07 11:53:45 UTC (rev 9581)
@@ -1,4 +1,5 @@
package Perlanet::IronMan;
+# ABSTRACT: IronMan specific instance of Perlanet
use 5.8.0;
use strict;
Deleted: ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/02_xml_feed.t
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/02_xml_feed.t 2010-06-03 15:59:47 UTC (rev 9580)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/02_xml_feed.t 2010-06-07 11:53:45 UTC (rev 9581)
@@ -1,20 +0,0 @@
-use strict;
-use warnings;
-
-use Test::More tests => 2;
-
-use XML::Feed;
-my $feed = XML::Feed->parse(URI->new('http://yapgh.blogspot.com/feeds/posts/default')) or die XML::Feed->errstr;
-
-print $feed->title, "\n";
-
-
-
-for my $entry ($feed->entries) {
-
-my @tags = $entry->category;
-print("Tags : " . join(",", @tags) . "\n");
-
-}
-
-
Deleted: ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/03_uri_fetch.t
===================================================================
--- ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/03_uri_fetch.t 2010-06-03 15:59:47 UTC (rev 9580)
+++ ironman/branches/mk-ii/Perlanet-IronMan-0.02/t/03_uri_fetch.t 2010-06-07 11:53:45 UTC (rev 9581)
@@ -1,32 +0,0 @@
-use strict;
-use warnings;
-
-use Test::More tests => 2;
-
-use URI::Fetch;
-use XML::Feed;
-
-#my $feed = XML::Feed->parse(URI->new('http://yapgh.blogspot.com/feeds/posts/default')) or die XML::Feed->errstr;
-my $response = URI::Fetch->fetch('http://yapgh.blogspot.com/feeds/posts/default',
- #UserAgent => $self->ua,
- #Cache => $self->cache || undef,
- ForceResponse => 1,
-);
-
-my $data = $response->content;
-
-
-my $feed = XML::Feed->parse(\$data);
-
-print $feed->title, "\n";
-
-
-
-for my $entry ($feed->entries) {
-
-my @tags = $entry->category;
-print("Tags : " . join(",", @tags) . "\n");
-
-}
-
-
More information about the Bast-commits
mailing list