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

NAME

Dist::Zilla::MintingProfile::Author::ETHER - Mint distributions like ETHER does

VERSION

version 0.098

SYNOPSIS

    dzil new -P Author::ETHER -p github Foo::Bar

or:

    #!/bin/bash
    newdist() {
        local dist=$1
        local module=`perl -we"print q{$dist} =~ s/-/::/r"`
        pushd ~/git
        dzil new -P Author::ETHER -p github $module
        cd $dist
    }
    newdist Foo-Bar

DESCRIPTION

The new distribution is packaged with Dist::Zilla using Dist::Zilla::PluginBundle::Author::ETHER.

Profiles available are:

  • github

    Creates a distribution hosted on github, with hooks to determine the module version and other metadata from git. Issue tracking is disabled, as RT is selected as the bugtracker in the distribution's metadata (via the plugin bundle).

    You will be prompted to create a repository on github immediately; if you decline, you must create one manually before you do your first push.

  • default

    Presently the same as github. Available since version 0.087.

SEE ALSO

SUPPORT

Bugs may be submitted through the RT bug tracker (or bug-Dist-Zilla-PluginBundle-Author-ETHER@rt.cpan.org). I am also usually active on irc, as 'ether' at irc.perl.org.

AUTHOR

Karen Etheridge <ether@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Karen Etheridge.

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