Directory::Deploy - Create files and directories on disk


Directory-Deploy documentation Contained in the Directory-Deploy distribution.

Index


Code Index:

NAME

Top

Directory::Deploy - Create files and directories on disk

VERSION

Top

Version 0.003

SYNOPSIS

Top

    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

DESCRIPTION

Top

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

AUTHOR

Top

Robert Krimen, <rkrimen at cpan.org>

BUGS

Top

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?Queue=Directory-Deploy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Directory::Deploy




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Directory-Deploy

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Directory-Deploy

* CPAN Ratings

http://cpanratings.perl.org/d/Directory-Deploy

* Search CPAN

http://search.cpan.org/dist/Directory-Deploy/

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Directory-Deploy documentation Contained in the Directory-Deploy distribution.
package Directory::Deploy;

use warnings;
use strict;

our $VERSION = '0.003';

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 );
    } );
}

1; # End of Directory::Deploy