The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
NAME
    Alien::CodePress - Installing and finding CodePress.

VERSION
    This document describes Alien::CodePress version v1.0

SYNOPSIS
        use Alien::CodePress;

        my $codepress = Alien::CodePress->new();

        # ... 

        my $version = $codepress->version;
        my $path    = $codepress->get_path();

        # ...

        $codepress->install( $my_destination_directory );

DESCRIPTION
    Please see Alien for the manifesto of the Alien namespace.

SUBROUTINES/METHODS
  CONSTRUCTOR
   "->new( )"
    Create a new Alien::CodePress object.

  ATTRIBUTES
   "get_path()"
    Returns the path to the available CodePress tarball.

   "set_path()"
    Set a custom path to a CodePress tarball.

   "init_path()"
    Reset path to it's default value.

  CLASS METHODS
   "version()"
    Get the current CodePress version number.

  INSTANCE METHODS
   "install( $destination_dir )"
    Install CodePress into specified directory.

    CodePress will be installed into the current directory if no directory
    specified.

   "files()"
    Returns the list of files that are installed by Alien::CodePress.

  PRIVATE METHODS
   "make_accessors(@properties)"
    Create object accessors for a list of properties. These can then be
    accessed with get_"property" and set with set_"property".

   "set_properties( $hash-ref )"
    Iterates trough the hashref keys and if there is a same-named property
    it sets it to the hash keys value.

   "init_properties()"
    Init default property values.

DIAGNOSTICS
CONFIGURATION AND ENVIRONMENT
    This module requires no configuration file or environment variables.

DEPENDENCIES
    *   [Archive::Extract]

    *   [Module::Build]

INCOMPATIBILITIES
    None known.

BUGS AND LIMITATIONS
    No bugs have been reported.

    Please report any bugs or feature requests to
    "bug-alien-codepress@rt.cpan.org", or through the web interface at
    <http://rt.cpan.org>.

SEE ALSO
    *   <http://www.codepress.org>

        The official CodePress home page.

    *   Alien

        The manifesto of the Alien namespace.

AUTHOR
    Ask Solem, "ask@0x61736b.net".

LICENSE AND COPYRIGHT
    Copyright (c), 2007 Ask Solem "ask@0x61736b.net".

    All rights reserved.

    This library is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself, either Perl version 5.8.6 or, at
    your option, any later version of Perl 5 you may have available.

DISCLAIMER OF WARRANTY
    BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
    FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
    PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
    EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
    ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
    YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
    NECESSARY SERVICING, REPAIR, OR CORRECTION.

    IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
    REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE
    TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
    CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
    SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
    RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
    FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
    SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
    DAMAGES.