#!/usr/bin/perl

# ABSTRACT: Interact with a remote a Pinto repository
# PODNAME: pinto-remote

use strict;
use warnings;

#-----------------------------------------------------------------------------

our $VERSION = '0.019'; # VERSION

#-----------------------------------------------------------------------------

use App::Pinto::Remote;
exit App::Pinto::Remote->run();

#-----------------------------------------------------------------------------



=pod

=for :stopwords Jeffrey Ryan Thalhammer Imaginative Software Systems

=head1 NAME

pinto-remote - Interact with a remote a Pinto repository

=head1 VERSION

version 0.019

=head1 SYNOPSIS

  pinto-remote --server=http://pinto.my.com:3000 COMMAND [OPTIONS] [ARGS]

  pinto-remote help COMMAND

  pinto-remote help

=head1 DESCRIPTION

L<pinto-remote> is a command line utility for using a remote Pinto
repository.  See L<pinto-admin> for information on creating a Pinto
repository, and L<pinto-server> for information on providing remote
access to the repository.

Once a Pinto repository has been established and the L<pinto-server>
is running, you can use C<pinto-remote> to add distributions, remove
packages, or inspect the contents of the repository.

=head1 COMMANDS

The following commands are available.  Say C<pinto-remote help COMMAND>
to display a list of sub-options available for that C<COMMAND>.

=over 4

=item add path/to/Some-Distribution-1.2.tar.gz

Adds the distribution to the remote Pinto repository.

=item list

Lists the packages and distributions that are currently indexed in
the remote repository.

=item remove Some::Package

Removes the distribution that contains the package from the remote
Pinto repository.

=back

=head1 SEE ALSO

L<Pinto::Manual> for broad information about using the Pinto tools.

L<pinto‐admin> to create and manage a Pinto repository.

L<pinto‐server> to allow remote access to your Pinto repository.

=head1 AUTHOR

Jeffrey Ryan Thalhammer <jeff@imaginative-software.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Imaginative Software Systems.

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

=cut


__END__

