Compare commits

...
Author SHA1 Message Date
Graham Ollis 01e6647cbf v1.42_01
- set COMPILE_DIR based on UID so that multiple users can use TtRenderer with default config
2013-02-24 23:13:00 -05:00
Graham Ollis 22eba8d3c5 include UID in default COMPILE_DIR 2013-02-24 23:12:05 -05:00
Graham Ollis f68a82f774 v1.42
- fix for test on solaris
2013-02-24 22:59:45 -05:00
Graham Ollis cb908430e5 fix it again. 2013-02-24 22:59:10 -05:00
Graham Ollis 7cd976ea79 v1.41
- Additional testing diagnostics
2013-02-23 03:06:21 -05:00
Graham Ollis 1708622c49 testing diagnostics 2013-02-23 03:05:25 -05:00
4 changed files with 26 additions and 7 deletions
+9
View File
@@ -2,6 +2,15 @@ Revision history for Mojolicious::Plugin::TtRenderer
{{$NEXT}}
1.42_01 February 24, 2013
- set COMPILE_DIR based on UID so that multiple users can use TtRenderer with default config
1.42 February 24, 2013
- fix for test on solaris
1.41 February 23, 2013
- Additional testing diagnostics
1.40 February 20, 2013
- Added diagnostic for IO loop implementation in testing
+4 -2
View File
@@ -5,6 +5,8 @@ license = Perl_5
copyright_holder = Ask Bjørn Hansen
# copyright_year = 2009
version = 1.42_01
[Prereqs]
Mojolicious = 3.33
Template = 2.18
@@ -32,8 +34,8 @@ repository.type = git
[Homepage]
[BumpVersionFromGit]
version_regexp = ^release/(.*)
;[BumpVersionFromGit]
;version_regexp = ^release/(.*)
[PkgVersion]
+6 -1
View File
@@ -47,7 +47,12 @@ sub _init {
my %config = (
INCLUDE_PATH => \@renderer_paths,
COMPILE_EXT => '.ttc',
COMPILE_DIR => ($dir || abs_path(File::Spec->tmpdir)),
# TODO maybe this should be File::Spec->catdir(File::Spec->tmpdir, $<)
COMPILE_DIR => ($dir || do {
my $dir = File::Spec->catdir(File::Spec->tmpdir, "ttr$<");
mkdir $dir;
$dir;
}),
UNICODE => 1,
ENCODING => 'utf-8',
CACHE_SIZE => 128,
+7 -4
View File
@@ -6,7 +6,7 @@ use Test::More tests => 6;
use Test::Mojo;
use Mojolicious::Lite;
plugin 'tt_renderer';
plugin 'tt_renderer' => { template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) } };
app->renderer->default_handler('tt');
get '/' => sub {
@@ -21,11 +21,14 @@ $t->get_ok('/')
->status_is(500)
->content_like(qr{foo});
$t->app->log->on(message => sub {
my($log, $level, @lines) = @_;
diag @lines if $level eq 'error';
});
$t->get_ok('/bar')
->status_is(200)
->content_like(qr{bar});
#note $t->tx->res->to_string;
->content_like(qr{sometimes, the bar,});
__DATA__