NAME

Text::Zilla - Generating files as easy as possible

VERSION

version 0.002

SYNOPSIS

use Text::Zilla::File;
use Text::Zilla::Dir;

my $root = Text::Zilla::Dir->new;
my $test_txt = Text::Zilla::File->new('This is a test');
my $testdir = Text::Zilla::Dir->new;
my $othertest_txt = Text::Zilla::File->new('More tests!');
$testdir->tzil_set_entry('othertest.txt',$othertest_txt);
$root->tzil_set_entry('testdir',$testdir);
$root->tzil_set_entry('test.txt',$test_txt);

$root->tzil_to('.');

DESCRIPTION

This package is still in development - API may change.

This distribution tries to make a norm for generating files of any kind. Its for generating specific files like a /etc directory of a unix host, but should also be able to be used for generating 100.000 HTML files for a static webpage.

SEE ALSO

SUPPORT

IRC

Join #textzilla on irc.perl.org.

Repository

http://github.com/Getty/p5-text-zilla
Pull request and additional contributors are welcome

Issue Tracker

http://github.com/Getty/p5-text-zilla/issues

AUTHOR

Torsten Raudssus <torsten@raudssus.de>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.