[Catalyst-commits] r11161 - in
Catalyst-Authentication-Credential-OpenID/tags/0.14: .
lib/Catalyst/Authentication/Credential
apv at dev.catalyst.perl.org
apv at dev.catalyst.perl.org
Wed Aug 19 05:42:07 GMT 2009
Author: apv
Date: 2009-08-19 05:42:07 +0000 (Wed, 19 Aug 2009)
New Revision: 11161
Modified:
Catalyst-Authentication-Credential-OpenID/tags/0.14/Changes
Catalyst-Authentication-Credential-OpenID/tags/0.14/MANIFEST
Catalyst-Authentication-Credential-OpenID/tags/0.14/Makefile.PL
Catalyst-Authentication-Credential-OpenID/tags/0.14/lib/Catalyst/Authentication/Credential/OpenID.pm
Log:
I think this is the 0.14 on the way up to the CPAN.
Modified: Catalyst-Authentication-Credential-OpenID/tags/0.14/Changes
===================================================================
--- Catalyst-Authentication-Credential-OpenID/tags/0.14/Changes 2009-08-19 05:24:20 UTC (rev 11160)
+++ Catalyst-Authentication-Credential-OpenID/tags/0.14/Changes 2009-08-19 05:42:07 UTC (rev 11161)
@@ -1,5 +1,12 @@
Revision history for Catalyst::Authentication::Credential::OpenID
+0.14 Tue Aug 18 22:37:51 PDT 2009
+ - Split live tests into two test apps to avoid the need to fork
+ to have a self-answering server; crudely done, it's the same
+ exact code as before doubled for now.
+ - Took LWPx::ParanoidAgent out of tests. It's been too long
+ since it's been broken by the LWP debug deprecation.
+
0.13 Mon Dec 1 19:42:31 PST 2008
- s/Meno/Menno/ and version fix in the Pod are the only changes. Sigh.
Modified: Catalyst-Authentication-Credential-OpenID/tags/0.14/MANIFEST
===================================================================
--- Catalyst-Authentication-Credential-OpenID/tags/0.14/MANIFEST 2009-08-19 05:24:20 UTC (rev 11160)
+++ Catalyst-Authentication-Credential-OpenID/tags/0.14/MANIFEST 2009-08-19 05:42:07 UTC (rev 11161)
@@ -1,4 +1,3 @@
-Catalyst-Authentication-Credential-OpenID.patch
Changes
inc/Module/AutoInstall.pm
inc/Module/Install.pm
@@ -18,9 +17,12 @@
META.yml
README
t/00.load.t
-t/live_app.t
+t/Consumer/lib/TestApp.pm
+t/Consumer/lib/TestApp/Controller/Root.pm
+t/Consumer/script/testapp_server.pl
+t/live-app.t
t/pod-coverage.t
t/pod.t
-t/TestApp/lib/TestApp.pm
-t/TestApp/lib/TestApp/Controller/Root.pm
-t/TestApp/script/testapp_server.pl
+t/Provider/lib/TestApp.pm
+t/Provider/lib/TestApp/Controller/Root.pm
+t/Provider/script/testapp_server.pl
Modified: Catalyst-Authentication-Credential-OpenID/tags/0.14/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OpenID/tags/0.14/Makefile.PL 2009-08-19 05:24:20 UTC (rev 11160)
+++ Catalyst-Authentication-Credential-OpenID/tags/0.14/Makefile.PL 2009-08-19 05:42:07 UTC (rev 11161)
@@ -1,37 +1,37 @@
use inc::Module::Install 0.87;
-name "Catalyst-Authentication-Credential-OpenID";
-all_from "lib/Catalyst/Authentication/Credential/OpenID.pm";
-author "Ashley Pond V <ashley at cpan.org>";
+name "Catalyst-Authentication-Credential-OpenID";
+all_from "lib/Catalyst/Authentication/Credential/OpenID.pm";
+author "Ashley Pond V <ashley at cpan.org>";
-requires "parent" => "0.2";
-requires "Class::Accessor::Fast" => undef;
-requires "HTML::Parser" => "3";
-requires "LWP::UserAgent" => undef;
-requires "Cache::FastMmap" => "1.28";
-requires "Catalyst" => "5.7";
-requires "Catalyst::Devel" => "1";
-requires "Crypt::DH" => "0.05"; # IIRC OpenID stuff forgets to prereq this
-requires "Net::OpenID::Consumer" => "1.03";
-requires "Catalyst::Authentication::User::Hash" => undef;
-requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
-requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
-requires "Catalyst::Engine::HTTP" => undef;
+requires "parent" => "0.2";
+requires "Class::Accessor::Fast" => undef;
+requires "HTML::Parser" => "3";
+requires "LWP::UserAgent" => undef;
+requires "Cache::FastMmap" => "1.28";
+requires "Catalyst" => "5.7";
+requires "Catalyst::Devel" => "1";
+requires "Crypt::DH" => "0.05"; # IIRC OpenID stuff forgets to prereq this
+requires "Net::OpenID::Consumer" => "1.03";
+requires "Catalyst::Authentication::User::Hash" => undef;
+requires "Catalyst::Plugin::Session::Store::FastMmap" => "0.05";
+requires "Catalyst::Plugin::Session::State::Cookie" => "0.08";
+requires "Catalyst::Engine::HTTP" => undef;
-recommends "Config::General" => "2";
-recommends "YAML" => "0.6";
-recommends "Math::BigInt" => undef;
+recommends "Config::General" => "2";
+recommends "YAML" => "0.6";
+recommends "Math::BigInt" => undef;
recommends "LWPx::ParanoidAgent" => "1.03";
-build_requires "LWPx::ParanoidAgent" => "1.03";
-build_requires "Test::More" => "0.42";
-build_requires "Net::OpenID::Server" => "1.02";
-build_requires "Test::WWW::Mechanize" => "1.20";
-build_requires "Net::DNS" => undef;
-build_requires "IO::Socket::INET" => undef;
+test_requires "LWPx::ParanoidAgent" => "1.03";
+test_requires "Test::More" => "0.42";
+test_requires "Net::OpenID::Server" => "1.02";
+test_requires "Test::WWW::Mechanize" => "1.20";
+test_requires "Net::DNS" => undef;
+test_requires "IO::Socket::INET" => undef;
auto_install;
-resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-OpenID/0.13/';
+resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Authentication-Credential-OpenID/';
WriteAll;
Modified: Catalyst-Authentication-Credential-OpenID/tags/0.14/lib/Catalyst/Authentication/Credential/OpenID.pm
===================================================================
--- Catalyst-Authentication-Credential-OpenID/tags/0.14/lib/Catalyst/Authentication/Credential/OpenID.pm 2009-08-19 05:24:20 UTC (rev 11160)
+++ Catalyst-Authentication-Credential-OpenID/tags/0.14/lib/Catalyst/Authentication/Credential/OpenID.pm 2009-08-19 05:42:07 UTC (rev 11161)
@@ -7,7 +7,7 @@
__PACKAGE__->mk_accessors(qw/ _config realm debug secret /);
}
-our $VERSION = "0.13";
+our $VERSION = "0.14";
use Net::OpenID::Consumer;
use Catalyst::Exception ();
More information about the Catalyst-commits
mailing list