Compare commits

...
Author SHA1 Message Date
Graham Ollis f3e65cedce v1.35 2012-12-30 10:33:14 -05:00
Graham Ollis 906c68db34 doco 2012-12-30 10:33:01 -05:00
Graham Ollis c7012a1be0 doco typo 2012-12-29 10:27:32 -05:00
Graham Ollis 5e7728270f v1.34 2012-12-29 10:23:19 -05:00
Graham Ollis 7618cacaa4 fix hang in t/deep_recursion.t on *BSD 2012-12-27 14:51:34 -05:00
Graham Ollis 80340f9950 update changes 2012-12-27 13:37:31 -05:00
5 changed files with 19 additions and 6 deletions
+9
View File
@@ -1,6 +1,15 @@
Revision history for Mojolicious::Plugin::TtRenderer
{{$NEXT}}
- Documentation fix
1.34 December 29, 2012
- Include META.json in distribution.
1.33 December 27, 2012
- Fix hang in t/deep_recursion.t on *BSD
1.32 December 27, 2012
- silenced a few annoying warnings during test
- use temp directory for COMPILE_DIR in tests to avoid failures if the
default compile directory already exists and is owned by someone else.
+1 -1
View File
@@ -16,7 +16,7 @@ Mojolicious::Plugin::TtRenderer - Template Renderer Plugin
=head1 DESCRIPTION
L<Mojolicous::Plugin::TtRenderer> is a simple loader for
L<Mojolicious::Plugin::TtRenderer> is a simple loader for
L<Mojolicious::Plugin::TtRenderer::Engine>.
=head1 METHODS
+2
View File
@@ -55,3 +55,5 @@ location = root
format = %-7v %{MMMM d, yyyy}d
[MinimumPerl]
[MetaJSON]
+1 -1
View File
@@ -42,7 +42,7 @@ Mojolicious::Plugin::TtRenderer - Template Renderer Plugin
=head1 DESCRIPTION
L<Mojolicous::Plugin::TtRenderer> is a simple loader for
L<Mojolicious::Plugin::TtRenderer> is a simple loader for
L<Mojolicious::Plugin::TtRenderer::Engine>.
=head1 METHODS
+6 -4
View File
@@ -11,12 +11,14 @@ use Test::More tests => 3;
use Mojolicious::Lite;
use Test::Mojo;
use File::Temp qw( tempdir tempfile );
use File::Temp qw( tempdir );
use File::Spec;
my($fh_log,$filename_log) = tempfile('fooXXXXX', TMPDIR => 1, UNLINK => 1);
# Silence
# Send log to tmp file so that it doesn't clutter up the screen.
app->log->level('fatal');
app->log->path($filename_log);
app->log->path(do {
File::Spec->catfile(tempdir(CLEANUP => 1), 'mojo.log');
});
plugin 'tt_renderer' => {template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) }};