The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Dist::Zilla::Plugin::Pinto::Add - Add your dist to a Pinto repository

VERSION

version 0.028

SYNOPSIS

  # In your dist.ini
  [Pinto::Add]
  repos  = http://pinto.my-company.com  ; required
  author = YOU                          ; optional. defaults to username

  # Then run the release command
  dzil release

DESCRIPTION

Dist::Zilla::Plugin::Pinto::Add is a release-stage plugin that will add your distribution to a local or remote Pinto repository.

IMPORTANT: You'll need to install Pinto, or Pinto::Remote, or both, depending on whether you're going to release to a local or remote repository. Dist::Zilla::Plugin::Pinto::Add does not explicitly depend on either of these modules, so you can decide which one you want without being forced to have a bunch of other modules that you won't use.

Before releasing, Dist::Zilla::Plugin::Pinto::Add will check if the repository is available. If not, you'll be prompted whether to abort the rest of the release.

CONFIGURATION

The following parameters can be set in the dist.ini file for your distribution:

repos = REPOSITORY

This identifies the Pinto repository you want to release to. If REPOSITORY looks like a URL (i.e. starts with "http://") then your distribution will be shipped with Pinto::Remote. Otherwise, the REPOSITORY is assumed to be a path to a local repository directory. In that case, your distribution will be shipped with Pinto.

author = NAME

This specifies your identity as a module author. It must be alphanumeric characters (no spaces) and will be forced to UPPERCASE. If you do not specify one, it defaults to either your PAUSE ID (if you have one configured elsewhere) or your current username.

SUPPORT

Perldoc

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

  perldoc Dist::Zilla::Plugin::Pinto::Add

Websites

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

Bugs / Feature Requests

https://github.com/thaljef/Dist-Zilla-Plugin-Pinto-Add/issues

Source Code

https://github.com/thaljef/Dist-Zilla-Plugin-Pinto-Add

  git clone git://github.com/thaljef/Dist-Zilla-Plugin-Pinto-Add.git

AUTHOR

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

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.