[Catalyst-commits] r13718 - in Catalyst-Plugin-Browser/trunk: . lib/Catalyst/Plugin t

rafl at dev.catalyst.perl.org rafl at dev.catalyst.perl.org
Tue Nov 30 13:58:53 GMT 2010


Author: rafl
Date: 2010-11-30 13:58:53 +0000 (Tue, 30 Nov 2010)
New Revision: 13718

Added:
   Catalyst-Plugin-Browser/trunk/dist.ini
Removed:
   Catalyst-Plugin-Browser/trunk/MANIFEST.SKIP
   Catalyst-Plugin-Browser/trunk/Makefile.PL
   Catalyst-Plugin-Browser/trunk/t/02pod.t
   Catalyst-Plugin-Browser/trunk/t/03podcoverage.t
Modified:
   Catalyst-Plugin-Browser/trunk/lib/Catalyst/Plugin/Browser.pm
Log:
Convert to dzil

Deleted: Catalyst-Plugin-Browser/trunk/MANIFEST.SKIP
===================================================================
--- Catalyst-Plugin-Browser/trunk/MANIFEST.SKIP	2010-11-29 23:14:34 UTC (rev 13717)
+++ Catalyst-Plugin-Browser/trunk/MANIFEST.SKIP	2010-11-30 13:58:53 UTC (rev 13718)
@@ -1,26 +0,0 @@
-# Avoid version control files.
-\bRCS\b
-\bCVS\b
-,v$
-\B\.svn\b
-\B\.git\b
-
-# Avoid Makemaker generated and utility files.
-\bMakefile$
-\bblib
-\bMakeMaker-\d
-\bpm_to_blib$
-\bblibdirs$
-^MANIFEST\.SKIP$
-
-# Avoid Module::Build generated and utility files.
-\bBuild$
-\b_build
-
-# Avoid temp and backup files.
-~$
-\.tmp$
-\.old$
-\.bak$
-\#$
-\b\.#

Deleted: Catalyst-Plugin-Browser/trunk/Makefile.PL
===================================================================
--- Catalyst-Plugin-Browser/trunk/Makefile.PL	2010-11-29 23:14:34 UTC (rev 13717)
+++ Catalyst-Plugin-Browser/trunk/Makefile.PL	2010-11-30 13:58:53 UTC (rev 13718)
@@ -1,17 +0,0 @@
-use strict;
-use warnings;
-use inc::Module::Install 0.91;
-
-name 'Catalyst-Plugin-Browser';
-all_from 'lib/Catalyst/Plugin/Browser.pm';
-
-requires 'Catalyst::Runtime' => '5.80004';
-requires 'CatalystX::RoleApplicator';
-requires 'Catalyst::TraitFor::Request::BrowserDetect';
-requires 'namespace::autoclean';
-requires 'Moose';
-
-auto_install;
-resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Plugin-Browser/';
-
-WriteAll;

Added: Catalyst-Plugin-Browser/trunk/dist.ini
===================================================================
--- Catalyst-Plugin-Browser/trunk/dist.ini	                        (rev 0)
+++ Catalyst-Plugin-Browser/trunk/dist.ini	2010-11-30 13:58:53 UTC (rev 13718)
@@ -0,0 +1,14 @@
+name    = Catalyst-Plugin-Browser
+version = 0.06
+author  = Christian Hansen <ch at ngmedia.com>
+author  = Marcus Ramberg <mramberg at cpan.org>
+author  = Florian Ragwitz <rafl at debian.org>
+license = Perl_5
+copyright_holder = Christian Hansen
+
+[@FLORA]
+dist = Catalyst-Plugin-Browser
+repository_at = catsvn
+
+[Prereqs]
+Catalyst::Runtime = 5.80004

Modified: Catalyst-Plugin-Browser/trunk/lib/Catalyst/Plugin/Browser.pm
===================================================================
--- Catalyst-Plugin-Browser/trunk/lib/Catalyst/Plugin/Browser.pm	2010-11-29 23:14:34 UTC (rev 13717)
+++ Catalyst-Plugin-Browser/trunk/lib/Catalyst/Plugin/Browser.pm	2010-11-30 13:58:53 UTC (rev 13718)
@@ -1,11 +1,10 @@
 package Catalyst::Plugin::Browser;
+# ABSTRACT: Catalyst::Plugin::Browser - Browser Detection
 
 use Moose::Role;
 use CatalystX::RoleApplicator ();
 use namespace::autoclean;
 
-our $VERSION = '0.06';
-
 after setup_finalize => sub {
     my ($app) = @_;
 
@@ -19,12 +18,6 @@
 
 1;
 
-__END__
-
-=head1 NAME
-
-Catalyst::Plugin::Browser - Browser Detection
-
 =head1 SYNOPSIS
 
     use Catalyst qw[Browser];
@@ -53,15 +46,4 @@
 
 L<HTTP::BrowserDetect>, L<Catalyst::TraitFor::Request::BrowserDetect>, L<Catalyst::Request>.
 
-=head1 AUTHOR
-
-Christian Hansen, C<ch at ngmedia.com>
-Marcus Ramberg, C<mramberg at cpan.org>
-Florian Ragwitz, C<rafl at debian.org>
-
-=head1 LICENSE
-
-This library is free software . You can redistribute it and/or modify it under
-the same terms as perl itself.
-
 =cut

Deleted: Catalyst-Plugin-Browser/trunk/t/02pod.t
===================================================================
--- Catalyst-Plugin-Browser/trunk/t/02pod.t	2010-11-29 23:14:34 UTC (rev 13717)
+++ Catalyst-Plugin-Browser/trunk/t/02pod.t	2010-11-30 13:58:53 UTC (rev 13718)
@@ -1,7 +0,0 @@
-use Test::More;
-
-eval "use Test::Pod 1.14";
-plan skip_all => 'Test::Pod 1.14 required' if $@;
-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
-
-all_pod_files_ok();

Deleted: Catalyst-Plugin-Browser/trunk/t/03podcoverage.t
===================================================================
--- Catalyst-Plugin-Browser/trunk/t/03podcoverage.t	2010-11-29 23:14:34 UTC (rev 13717)
+++ Catalyst-Plugin-Browser/trunk/t/03podcoverage.t	2010-11-30 13:58:53 UTC (rev 13718)
@@ -1,7 +0,0 @@
-use Test::More;
-
-eval "use Test::Pod::Coverage 1.04";
-plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
-plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
-
-all_pod_coverage_ok();




More information about the Catalyst-commits mailing list