NAME
    Alien::ElasticSearch - Downloads, builds and installs ElasticSearch from
    github

VERSION
    Version 0.09

SYNOPSIS
        # install latest version from Git to $install_dir
        $install_dir = Alien::ElasticSearch->install($install_dir);

        # upgrade existing installation
        $install_dir = Alien::ElasticSearch->update();

        # get current install dir
        $install_dir = Alien::ElasticSearch->install_dir();

        # set install dir
        $install_dir = Alien::ElasticSearch->install_dir($install_dir);

DESCRIPTION
    This module handles downloading ElasticSearch from github, building, and
    installing it.

    It then writes a config file to remember where it was installed.

    It also adds a script called "install_elasticsearch.pl" into your perl
    bin directory, which can be called as follows:

        install_elasticsearch.pl           # upgrade existing installation
        install_elasticsearch.pl /path     # install to /path

REQUIREMENTS
    * Java version 6 or above

SEE ALSO
    ElasticSearch

AUTHOR
    Clinton Gormley, "<drtech at cpan.org>"

BUGS
    Please report any bugs or feature requests to "bug-alien-elasticsearch
    at rt.cpan.org", or through the web interface at
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Alien-ElasticSearch>. I
    will be notified, and then you'll automatically be notified of progress
    on your bug as I make changes.

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

        perldoc Alien::ElasticSearch

    You can also look for information at:

    * RT: CPAN's request tracker
        <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Alien-ElasticSearch>

    * AnnoCPAN: Annotated CPAN documentation
        <http://annocpan.org/dist/Alien-ElasticSearch>

    * CPAN Ratings
        <http://cpanratings.perl.org/d/Alien-ElasticSearch>

    * Search CPAN
        <http://search.cpan.org/dist/Alien-ElasticSearch/>

LICENSE AND COPYRIGHT
    Copyright 2010 Clinton Gormley.

    This program is free software; you can redistribute it and/or modify it
    under the terms of either: the GNU General Public License as published
    by the Free Software Foundation; or the Artistic License.

    See http://dev.perl.org/licenses/ for more information.

