From: t0m Date: Fri, 12 Dec 2008 10:40:58 +0000 (+0000) Subject: Checking in changes prior to tagging of version 1.000. Changelog diff is: X-Git-Tag: 1.000~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cd25b1dbc8a7695fe9b2810b62bc812392ed9aea;p=catagits%2FCatalyst-View-ContentNegotiation-XHTML.git Checking in changes prior to tagging of version 1.000. Changelog diff is: === Changes ================================================================== --- Changes (revision 9978) +++ Changes (local) @@ -1,4 +1,4 @@ -0.001000 +1.000 - First working version of the module extracted from the quick hack I have in every Catalyst application I've ever written. \ No newline at end of file --- diff --git a/Changes b/Changes index 6690e74..671edc8 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,4 @@ -0.001000 +1.000 - First working version of the module extracted from the quick hack I have in every Catalyst application I've ever written. \ No newline at end of file diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 8fb2024..92c4c95 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -6,3 +6,4 @@ MANIFEST.SKIP~ cover_db Makefile$ Makefile.old$ +.shipt diff --git a/Makefile.PL b/Makefile.PL index bd1d10c..05a03c4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -9,7 +9,6 @@ requires 'Catalyst::View::TT'; build_requires 'Catalyst::Action::RenderView'; build_requires 'Test::WWW::Mechanize::Catalyst'; build_requires 'Test::More'; -build_requires 'ok'; resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-TT-XHTML'; diff --git a/lib/Catalyst/View/TT/XHTML.pm b/lib/Catalyst/View/TT/XHTML.pm index 1a93782..3f3dd3a 100644 --- a/lib/Catalyst/View/TT/XHTML.pm +++ b/lib/Catalyst/View/TT/XHTML.pm @@ -3,7 +3,7 @@ use strict; use warnings; use base qw/Catalyst::View::TT/; -our $VERSION = '0.001000'; +our $VERSION = '1.000'; sub process { my $self = shift; diff --git a/t/00-load.t b/t/00-load.t index 7c87264..815d532 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -3,4 +3,4 @@ use strict; use warnings; use Test::More tests => 1; -use ok 'Catalyst::View::TT::XHTML'; +use_ok 'Catalyst::View::TT::XHTML'; diff --git a/t/live-test.t b/t/live-test.t index 2de6e93..fb058e5 100644 --- a/t/live-test.t +++ b/t/live-test.t @@ -9,7 +9,7 @@ use FindBin qw($Bin); use lib "$Bin/lib"; # 1 make sure testapp works -use ok 'TestApp'; +use_ok 'TestApp'; # a live test against TestApp, the test application use Test::WWW::Mechanize::Catalyst 'TestApp';