Version update, fixing Mason test to use a local datadir (failing tests if /tmp/cache...
J. Shirley [Mon, 15 Oct 2007 22:01:42 +0000 (22:01 +0000)]
lib/Catalyst/View/Email.pm
lib/Catalyst/View/Email/Template.pm
t/lib/TestApp/View/Mason.pm

index fba2330..4af0484 100644 (file)
@@ -11,7 +11,7 @@ use Email::MIME::Creator;
 
 use base qw|Catalyst::View|;
 
-our $VERSION = '0.07';
+our $VERSION = '0.08';
 
 __PACKAGE__->mk_accessors(qw(sender stash_key content_type mailer));
 
index 9d73778..991f199 100644 (file)
@@ -10,7 +10,7 @@ use Email::MIME::Creator;
 
 use base qw|Catalyst::View::Email|;
 
-our $VERSION = '0.06';
+our $VERSION = '0.08';
 
 __PACKAGE__->mk_accessors( qw(default_view template_prefix) );
 
index c25d132..070749f 100644 (file)
@@ -4,4 +4,6 @@ package # Hide me.
 use strict;
 eval "use base 'Catalyst::View::Mason';";
 
+__PACKAGE__->config( data_dir => TestApp->path_to('cache')->stringify );
+
 1;