| Directory::Deploy - Create files and directories on disk |
Directory::Deploy - Create files and directories on disk
Version 0.002
package My::Assets;
use Directory::Deploy::Declare;
include <<'_END_';
# A line beginning with '#' is ignored
run/
# A path with a trailing slash is a directory (otherwise a file)
run/root/
run/tmp/:700
# A :\d+ after a path is the mode (permissions) for the file/dir
assets/
assets/root/
assets/root/static/
assets/root/static/css/
assets/root/static/js/
assets/tt/
_END_
include
'assets/tt/frame.tt.html' => \<<'_END_',
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>[% title %]</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>
<div id="doc2">
[% content %]
<div class="footer"> ... </div>
</div> </body> </html> _END_ 'assets/root/static/css/base.css' => \<<'_END_', body, table { font-family: Verdana, Arial, sans-serif; background-color: #fff; }
a, a:hover, a:active, a:visited { text-decoration: none; font-weight: bold; color: #436b95; } _END_ ; # End of the include
no Directory::Deploy::Declare;
# ... elsewhere ...
My::Assets->deploy( { base => $dir } )
# ... or ...
my $assets = My::Assets->new( base => $dir )
$assets->deploy
Directory::Deploy is a tool for creating files and directories (on disk)
The usage is pretty much as the SYNOPSIS says. Caveat emptor: the interface is Beta(tm) and *might* change
=cut
use Moose;
use Directory::Deploy::Carp; use Directory::Deploy::Manifest; use Directory::Deploy::Maker;
use Path::Class();
has manifest => qw/is ro lazy_build 1/, handles => [qw/ add include /];
sub _build_manifest {
return Directory::Deploy::Manifest->new();
}
has maker => qw/is ro lazy_build 1/; sub _build_maker { my $self = shift; return Directory::Deploy::Maker->new( deploy => $self ); }
has base => qw/accessor _base required 1/; sub base { my $self = shift; return $self->_base( @_ ); }
sub BUILD { my $self = shift;
$self->_base( Path::Class::Dir->new( $self->_base ) );
}
sub file { return shift->base->file( @_ ); }
sub dir { return shift->base->subdir( @_ ); }
sub deploy { my $self = shift; if (! ref $self) { # Invoked as a class method my $new_arguments; $new_arguments = shift if ref $_[0] eq 'HASH'; return $self->new( $new_arguments )->deploy( @_ ); }
$self->manifest->each( sub {
my ($entry) = @_;
$self->maker->make( $entry );
} );
}
Robert Krimen, <rkrimen at cpan.org>
Please report any bugs or feature requests to bug-directory-deploy at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Directory::Deploy
You can also look for information at:
Copyright 2009 Robert Krimen, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Directory::Deploy - Create files and directories on disk |