Dist::Zilla::Role::MintingProfile - something that can find a minting profile dir


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

Index


Code Index:

NAME

Top

Dist::Zilla::Role::MintingProfile - something that can find a minting profile dir

VERSION

Top

version 4.200008

DESCRIPTION

Top

Plugins implementing this role should provide profile_dir method, which, given a minting profile name, returns its directory.

The minting profile is a directory, containing arbitrary files used during creation of new distribution. Among other things notably, it should contain the 'profile.ini' file, listing the plugins used for minter initialization.

The default implementation profile_dir looks in the module's ShareDir.

After installing your profile, users will be able to start a new distribution, based on your profile with the:

  $ dzil new -P Provider -p profile_name Distribution::Name

AUTHOR

Top

Ricardo SIGNES <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Dist-Zilla documentation Contained in the Dist-Zilla distribution.

package Dist::Zilla::Role::MintingProfile;
BEGIN {
  $Dist::Zilla::Role::MintingProfile::VERSION = '4.200008';
}
# ABSTRACT: something that can find a minting profile dir
use Moose::Role;

use File::ShareDir;
use Path::Class;


requires 'profile_dir';

no Moose::Role;
1;

__END__