File Coverage

blib/lib/Dist/Zilla/MintingProfile/Author/DBOOK.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Dist::Zilla::MintingProfile::Author::DBOOK;
2              
3 2     2   3238254 use Moose;
  2         5  
  2         15  
4             with 'Dist::Zilla::Role::MintingProfile::ShareDir';
5 2     2   13781 use namespace::clean;
  2         5  
  2         23  
6              
7             our $VERSION = 'v1.0.2';
8              
9             __PACKAGE__->meta->make_immutable;
10             1;
11              
12             =head1 NAME
13              
14             Dist::Zilla::MintingProfile::Author::DBOOK - A minting profile used by DBOOK
15              
16             =head1 SYNOPSIS
17              
18             dzil new -P Author::DBOOK Foo::Bar
19              
20             =head1 DESCRIPTION
21              
22             This is the minting profile that DBOOK uses. It creates a git repository with a
23             module skeleton in C<lib> and the following additional files:
24              
25             =over
26              
27             =item *
28              
29             C<Changes>
30              
31             =item *
32              
33             C<dist.ini>
34              
35             =item *
36              
37             C<LICENSE>
38              
39             =item *
40              
41             C<prereqs.yml>
42              
43             =item *
44              
45             C<.gitignore>
46              
47             =item *
48              
49             C<.travis.yml>
50              
51             =back
52              
53             The created C<dist.ini> will use the current dzil C<config.ini> to populate the
54             author, license, and copyright fields. It will additionally add the plugin
55             bundle L<Dist::Zilla::PluginBundle::Author::DBOOK>.
56              
57             =head1 BUGS
58              
59             Report any issues on the public bugtracker.
60              
61             =head1 AUTHOR
62              
63             Dan Book, C<dbook@cpan.org>
64              
65             =head1 COPYRIGHT AND LICENSE
66              
67             Copyright 2015, Dan Book.
68              
69             This library is free software; you may redistribute it and/or modify it under
70             the terms of the Artistic License version 2.0.
71              
72             =head1 SEE ALSO
73              
74             L<Dist::Zilla>, L<Dist::Zilla::PluginBundle::Author::DBOOK>