Skip to content

Commit

Permalink
minor pod and CPAN distro changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gaissmai committed Sep 14, 2012
1 parent 9afce0a commit 289a06e
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 19 deletions.
30 changes: 14 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
blib*
Makefile*
MANIFEST
MYMETA*
META*
blib/
.build/
_build/
cover_db/
inc/
Build
_build*
pm_to_blib*
*.tar.gz
*.bak
*.swp
*.bat
.lwpcookies
cover_db
pod2htm*.tmp
Config-TT2-*
test/
Build.bat
.last_cover_stats
Makefile.PL
Makefile.old
Config-TT2-*tar*
MANIFEST.*bak
MYMETA.yml
nytprof.out
pm_to_blib
5 changes: 4 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Revision history for Config-TT
Revision history for Config-TT2

0.52 Fri, 14 Sep 2012 21:12:17 +0200
minor pod changes

0.51 Wed, 11 Jul 2012 12:24:51 +0200
some pod changes
Expand Down
20 changes: 20 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Build.PL
Changes
lib/Config/TT2.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
t/00-load.t
t/01-new.t
t/02-basics.t
t/03-global.t
t/04-constants.t
t/05-meta.t
t/06-def-vmethod.t
t/07-include-path.t
t/cfg/one
t/cfg/three
t/cfg/two
t/pod-coverage.t
t/pod.t
25 changes: 25 additions & 0 deletions META.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
abstract: 'Reading configuration files with the Template-Toolkit parser.'
author:
- 'Karl Gaissmaier <gaissmai@cpan.org>'
build_requires:
Test::More: 0
configure_requires:
Module::Build: 0.36
generated_by: 'Module::Build version 0.3607'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: Config-TT2
provides:
Config::TT2:
file: lib/Config/TT2.pm
version: 0.51
requires:
Carp: 0
Template: 2.21
Try::Tiny: 0
resources:
license: http://dev.perl.org/licenses/
version: 0.51
4 changes: 2 additions & 2 deletions lib/Config/TT2.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Template;
use Try::Tiny;
use Carp qw(croak);

our $VERSION = '0.51';
our $VERSION = '0.52';

=head1 NAME
Expand Down Expand Up @@ -195,7 +195,7 @@ The C<< new() >> constructor method instantiates a new C<Config::TT2> object. Th
Configuration items may be passed as a list of items or a hash array:
my $ctt2 = Template->new(
my $ctt2 = Config::TT2->new(
ABSOLUTE => 0,
DEBUG => 'all',
);
Expand Down

0 comments on commit 289a06e

Please sign in to comment.