Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c4c554a46a | ||
|
|
f2d62f0a25 | ||
|
|
72855bad28 | ||
|
|
29a6a8c946 | ||
|
|
270ec1e6e5 |
@@ -1,9 +0,0 @@
|
||||
# auto-generated shipit config file.
|
||||
steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist
|
||||
|
||||
git.tagpattern = release/%v
|
||||
|
||||
# svn.tagpattern = MyProj-%v
|
||||
# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
|
||||
|
||||
# CheckChangeLog.files = ChangeLog, MyProj.CHANGES
|
||||
@@ -1,10 +1,13 @@
|
||||
Revision history for MojoX-Renderer-TT
|
||||
|
||||
0.31 September 11, 2009
|
||||
- Remove deprecated 'new' method
|
||||
- Update MANIFEST (oops, thanks Sebastian)
|
||||
|
||||
0.30 September 9, 2009
|
||||
- revert the change of stash key, template_path is the prior
|
||||
source for the template file again (Sebastian Knapp)
|
||||
- reflect recent changes in mojo project (v0.991251) (Sebastian Knapp)
|
||||
- one test with Mojolicious added (Sebastian Knapp)
|
||||
- Revert the change of template_path stash key
|
||||
- Reflect recent changes in mojo project (v0.991251) (Sebastian Knapp)
|
||||
- One test with Mojolicious added (Sebastian Knapp)
|
||||
|
||||
0.21 July 29, 2009
|
||||
- Update stash key from 'template_path' to 'template' to
|
||||
|
||||
@@ -1,13 +1,15 @@
|
||||
.gitignore
|
||||
.perltidyrc
|
||||
Changes
|
||||
lib/MojoX/Renderer/TT.pm
|
||||
Makefile.PL
|
||||
MANIFEST
|
||||
MANIFEST.SKIP
|
||||
Makefile.PL
|
||||
README
|
||||
lib/MojoX/Renderer/TT.pm
|
||||
t/00-load.t
|
||||
t/pod-coverage.t
|
||||
t/pod.t
|
||||
t/render.t
|
||||
t/render/template-error.tt2
|
||||
t/render/template.html.tt2
|
||||
t/render/template.tt2
|
||||
.perltidyrc
|
||||
|
||||
+44
-7
@@ -1,7 +1,44 @@
|
||||
\.git\/
|
||||
.*~$
|
||||
\.shipit$
|
||||
.*\.bak$
|
||||
^\.gitignore$
|
||||
\.DS_Store
|
||||
Makefile
|
||||
# Avoid version control files.
|
||||
\bRCS\b
|
||||
\bCVS\b
|
||||
\bSCCS\b
|
||||
,v$
|
||||
\B\.svn\b
|
||||
\B\.git\b
|
||||
\b_darcs\b
|
||||
|
||||
# Avoid Makemaker generated and utility files.
|
||||
\bMANIFEST\.bak
|
||||
\bMakefile$
|
||||
\bblib/
|
||||
\bMakeMaker-\d
|
||||
\bpm_to_blib\.ts$
|
||||
\bpm_to_blib$
|
||||
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
|
||||
|
||||
# Avoid Module::Build generated and utility files.
|
||||
\bBuild$
|
||||
\b_build/
|
||||
|
||||
# Avoid temp and backup files.
|
||||
~$
|
||||
\.old$
|
||||
\#$
|
||||
\b\.#
|
||||
\.bak$
|
||||
|
||||
# Avoid Devel::Cover files.
|
||||
\bcover_db\b
|
||||
|
||||
### DEFAULT MANIFEST.SKIP ENDS HERE ####
|
||||
|
||||
\.DS_Store$
|
||||
\.sw.$
|
||||
(\w+-)*(\w+)-\d\.\d+(?:\.tar\.gz)?$
|
||||
|
||||
\.t\.log$
|
||||
|
||||
\.prove$
|
||||
|
||||
# XS shit
|
||||
\.(?:bs|c|o)$
|
||||
|
||||
@@ -37,7 +37,7 @@ You can also look for information at:
|
||||
|
||||
COPYRIGHT AND LICENCE
|
||||
|
||||
Copyright (C) 2008 Ask Bjørn Hansen
|
||||
Copyright (C) 2008-2009 Ask Bjørn Hansen
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
|
||||
@@ -8,12 +8,10 @@ use Template ();
|
||||
use Carp ();
|
||||
use File::Spec ();
|
||||
|
||||
our $VERSION = '0.30';
|
||||
our $VERSION = '0.31';
|
||||
|
||||
__PACKAGE__->attr('tt');
|
||||
|
||||
sub new { Carp::croak "MojoX::Renderer::TT->new() is now ->build()" }
|
||||
|
||||
sub build {
|
||||
my $self = shift->SUPER::new(@_);
|
||||
$self->_init(@_);
|
||||
@@ -188,7 +186,7 @@ L<http://search.cpan.org/dist/MojoX-Renderer-TT/>
|
||||
|
||||
=head1 COPYRIGHT & LICENSE
|
||||
|
||||
Copyright 2008 Ask Bjørn Hansen, all rights reserved.
|
||||
Copyright 2008-2009 Ask Bjørn Hansen, all rights reserved.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it
|
||||
under the same terms as Perl itself.
|
||||
|
||||
Reference in New Issue
Block a user