Skip to content

Commit

Permalink
Build results of dfd192f (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Feb 5, 2017
1 parent 3f7be0b commit bf26e55
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 20 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Release history for Dist-Zilla-Plugin-lib

0.001001 2017-02-05T12:52:46Z f1ede5c
- Synopsis clarified
- Add a "related reading" section with links to dot-in-INC stuff

0.001000 2017-02-05T11:27:57Z 6ef4630
- First version.
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"provides" : {
"Dist::Zilla::Plugin::lib" : {
"file" : "lib/Dist/Zilla/Plugin/lib.pm",
"version" : "0.001000"
"version" : "0.001001"
}
},
"release_status" : "stable",
Expand All @@ -145,7 +145,7 @@
"web" : "https://github.com/kentnl/Dist-Zilla-Plugin-lib"
}
},
"version" : "0.001000",
"version" : "0.001001",
"x_BuiltWith" : {
"external_file" : "misc/built_with.json"
},
Expand Down Expand Up @@ -665,7 +665,7 @@
"branch" : null,
"changelog" : "Changes",
"signed" : 0,
"tag" : "0.001000-source",
"tag" : "0.001001-source",
"tag_format" : "%v-source",
"tag_message" : "v%v"
},
Expand Down Expand Up @@ -756,7 +756,7 @@
"branch" : "releases",
"changelog" : "Changes",
"signed" : 0,
"tag" : "0.001000",
"tag" : "0.001001",
"tag_format" : "%v",
"tag_message" : "v%v"
},
Expand Down
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ name: Dist-Zilla-Plugin-lib
provides:
Dist::Zilla::Plugin::lib:
file: lib/Dist/Zilla/Plugin/lib.pm
version: '0.001000'
version: '0.001001'
recommends:
Moose: '2.000'
Path::Tiny: '0.058'
Expand All @@ -39,4 +39,4 @@ resources:
bugtracker: https://github.com/kentnl/Dist-Zilla-Plugin-lib/issues
homepage: https://github.com/kentnl/Dist-Zilla-Plugin-lib
repository: https://github.com/kentnl/Dist-Zilla-Plugin-lib.git
version: '0.001000'
version: '0.001001'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.89",
"constant" => 0
},
"VERSION" => "0.001000",
"VERSION" => "0.001001",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
Expand Down
3 changes: 1 addition & 2 deletions dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ tag_format = %v
[UploadToCPAN / @Author::KENTNL/UploadToCPAN]

[Twitter / @Author::KENTNL/Twitter]
hash_tags = #perl #cpan
hash_tags = #perl #cpan #distzilla
tweet_url = https://metacpan.org/release/{{$AUTHOR_UC}}/{{$DIST}}-{{$VERSION}}{{$TRIAL}}#whatsnew
url_shortener = none

Expand All @@ -182,7 +182,6 @@ modules = Dist::Zilla::App::Command::bakeini
[RemovePrereqs::Provided / @Author::KENTNL/RemovePrereqs::Provided]

[Prereqs / @Author::KENTNL/::Role::BundleDeps]
; twitter_extra_hash_tags =
; auto_prereqs_skip = File::Find
-phase = develop
-relationship = requires
Expand Down
2 changes: 1 addition & 1 deletion dist.ini.meta
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ toolkit = eumm
toolkit_hardness = soft
bumpversions = 1
srcreadme = mkdn
; twitter_extra_hash_tags =
twitter_extra_hash_tags = #distzilla
; auto_prereqs_skip = File::Find

[Prereqs]
Expand Down
30 changes: 22 additions & 8 deletions lib/Dist/Zilla/Plugin/lib.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Dist::Zilla::Plugin::lib;

our $VERSION = '0.001000';
our $VERSION = '0.001001';

# ABSTRACT: A simpler bootstrap for a more civilised world

Expand Down Expand Up @@ -76,19 +76,21 @@ Dist::Zilla::Plugin::lib - A simpler bootstrap for a more civilised world
=head1 VERSION
version 0.001000
version 0.001001
=head1 SYNOPSIS
name = My-Dist
author = Mr CPAN Person <person@cpan.example.org>
license = Perl_5
...
; push ./inc into @INC
[lib]
lib = inc
[Foo]
Foo will now be sourced from ./inc
; loads inc/My/GatherDir.pm
[=My::GatherDir]
=head1 DESCRIPTION
Expand Down Expand Up @@ -119,9 +121,9 @@ plugins stashed in C<inc/>
Traditionally, these are loaded via C<[=inc::Foo::Package]> exploiting
the long held assumption that C<"."> ( C<$CWD> ) is contained in C<@INC>
However, that is becoming a less safe assumption, and this plugin
aims to make such equivalent behaviour practical without needing to rely
on that assumption.
However, that is becoming a L<less safe assumption|/RELATED READING>, and this
plugin aims to make such equivalent behaviour practical without needing to
rely on that assumption.
=back
Expand Down Expand Up @@ -249,6 +251,18 @@ Which is functionally similar to:
That is, retaining the specified order in C< @INC >.
=head1 RELATED READING
=head2 C<dot-in-INC>
=over 4
=item * L<< Todd Rinaldo - How removing C<"."> from C<@INC> is about to break CPAN|http://blogs.perl.org/users/todd_rinaldo/2016/11/how-removing-from-inc-is-about-to-break-cpan.html >>
=item * L<< Todd Rinaldo - What happened to C<"."> in C<@INC>|http://blogs.perl.org/users/todd_rinaldo/2016/11/what-happened-to-dot-in-inc.html >>
=back
=head1 AUTHOR
Kent Fredric <kentnl@cpan.org>
Expand Down
2 changes: 1 addition & 1 deletion maint/perlcritic.rc.gen.pl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
my @stopwords = (
qw(
prepend prepended absolutized absolutization absolutizes
absolutizing prepends
absolutizing prepends CPAN
)
);
for my $wordlist (@stopwords) {
Expand Down
2 changes: 2 additions & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
2 changes: 2 additions & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.001001
2 changes: 2 additions & 0 deletions misc/Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains changes to DEVELOPMENT dependencies only ( both REQUIRED and OPTIONAL )

0.001001
2 changes: 2 additions & 0 deletions misc/Changes.deps.opt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
2 changes: 1 addition & 1 deletion perlcritic.rc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ allow_includes = 1

[Documentation::PodSpelling]
spell_command = aspell list --lang en_GB
stop_words = prepend prepended absolutized absolutization absolutizes absolutizing prepends
stop_words = prepend prepended absolutized absolutization absolutizes absolutizing prepends CPAN

[Documentation::ProhibitAdjacentLinks]

Expand Down

0 comments on commit bf26e55

Please sign in to comment.