This is an automated email from the git hooks/post-receive script. abe pushed a commit to annotated tag 0.1.0-source in repository libdist-zilla-role-bootstrap-perl.
commit fefa08034329adf329d99bc728ca9c5b8e556731 Author: Kent Fredric <[email protected]> Date: Wed Sep 4 19:44:54 2013 +1200 initial commit --- .gitignore | 2 ++ .perltidyrc | 2 ++ Changes | 5 ++++ dist.ini | 24 ++++++++++++++++++++ lib/Dist/Zilla/Role/Bootstrap.pm | 13 +++++++++++ perlcritic.rc | 23 +++++++++++++++++++ weaver.ini | 49 ++++++++++++++++++++++++++++++++++++++++ 7 files changed, 118 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..62fd55d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.build +Dist-Zilla-Role-Bootstrap-* diff --git a/.perltidyrc b/.perltidyrc new file mode 100644 index 0000000..3af28b5 --- /dev/null +++ b/.perltidyrc @@ -0,0 +1,2 @@ +-i 2 +-l 130 diff --git a/Changes b/Changes new file mode 100644 index 0000000..d810f6b --- /dev/null +++ b/Changes @@ -0,0 +1,5 @@ +Release history for Dist-Zilla-Role-Bootstrap + +{{$NEXT}} + - First version. + diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..e4bab41 --- /dev/null +++ b/dist.ini @@ -0,0 +1,24 @@ +; Generated by Dist::Zilla::Plugin::Author::KENTNL::DistINI version 1.8.3 at Wed Sep 4 19:44:54 2013 +name = Dist-Zilla-Role-Bootstrap +author = Kent Fredric <[email protected]> +license = Perl_5 +copyright_holder = Kent Fredric <[email protected]> + +; Uncomment this to bootstrap via self +; [Bootstrap::lib] + +[@Author::KENTNL] +:version = 1.2.0 +git_versions = 1 +; version_major = 0 +; version_minor = 1 +; the following data denotes when this minor was minted +; version_rel_year = 2013 +; version_rel_month = 9 +; version_rel_day = 4 +; version_rel_hour = 19 +; version_rel_time_zone = Pacific/Auckland +twitter_hash_tags = #perl #cpan +; auto_prereqs_skip = File::Find + +[Prereqs] diff --git a/lib/Dist/Zilla/Role/Bootstrap.pm b/lib/Dist/Zilla/Role/Bootstrap.pm new file mode 100644 index 0000000..173f47a --- /dev/null +++ b/lib/Dist/Zilla/Role/Bootstrap.pm @@ -0,0 +1,13 @@ +use strict; +use warnings; + +package Dist::Zilla::Role::Bootstrap; + +# ABSTRACT: + +use Moose; + +__PACKAGE__->meta->make_immutable; +no Moose; + +1; diff --git a/perlcritic.rc b/perlcritic.rc new file mode 100644 index 0000000..8c0d884 --- /dev/null +++ b/perlcritic.rc @@ -0,0 +1,23 @@ +severity = 1 +exclude = RequireTidyCode RequirePodSections ProhibitPostfixControls RequireRcsKeywords RequireExplicitPackage +include = Moose::ProhibitMultipleWiths Moose::ProhibitNewMethod Moose::RequireCleanNamespace Moose::RequireMakeImmutable +color = 1 +verbose = 9 + +[BuiltinFunctions::ProhibitStringyEval] +allow_includes = 1 + +[CodeLayout::ProhibitTrailingWhitespace] + +[Documentation::PodSpelling] +stop_words = + +[Subroutines::ProhibitUnusedPrivateSubroutines] +private_name_regex = _(?!build_)\w + +[TestingAndDebugging::RequireUseStrict] +equivalent_modules = Moose + +[TestingAndDebugging::RequireUseWarnings] +equivalent_modules = Moose + diff --git a/weaver.ini b/weaver.ini new file mode 100644 index 0000000..7fb633e --- /dev/null +++ b/weaver.ini @@ -0,0 +1,49 @@ +[@CorePrep] +[-Encoding] + +[Name] +[Version] + +[Region / prelude] + +[Generic / SYNOPSIS] +[Generic / DESCRIPTION] +[Generic / OVERVIEW] + +;[Generic / METHODS] +;[Collect / METHODS] +[Collect / METHODS] +command = method + + +[Collect / ATTRIBUTES] +command = attr + +;[Collect / FILTER_METHODS] +;header = FILTER METHODS +;command = filter + +;[Collect / TERMINATOR_LIST_METHODS] +;header = TERMINATOR LIST METHODS +;command = terminator + +;[Collect / MIRROR_LIST_METHODS] +;header = MIRROR LIST METHODS +;command = mirrorlist + +[Collect / PRIVATE_ATTRIBUTES] +header = PRIVATE ATTRIBUTES +command = p_attr + +[Collect / PRIVATE_METHODS] +header = PRIVATE METHODS +command = p_method + +[Leftovers] + +[Region / postlude] + +[Authors] +[Legal] + + -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdist-zilla-role-bootstrap-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
