houseabsolute / perl-code-tidyall

Engine for tidyall, your all-in-one code tidier and validator
https://metacpan.org/release/Code-TidyAll/
Other
21 stars 31 forks source link

"dzil test" mutates `README.md` and `CONTRIBUTING.md` and fails #114

Open shlomif opened 2 years ago

shlomif commented 2 years ago

see below - I want the .md files to either stay out of repo or not be mutated. Moreover, per https://metacpan.org/dist/Code-TidyAll , I am willing to take over maint: https://metacpan.org/author/SHLOMIF .

+ inxi -CSG
System:
  Host: telaviv1.shlomifish.org Kernel: 5.16.18-200.fc35.x86_64 arch: x86_64
    bits: 64 Desktop: Xfce v: 4.16.0 Distro: Fedora release 35 (Thirty Five)
CPU:
  Info: dual core model: Intel Core i3-2100 bits: 64 type: MT MCP cache:
    L2: 512 KiB
  Speed (MHz): avg: 1918 min/max: 1600/3100 cores: 1: 2742 2: 1699 3: 1638
    4: 1596
Graphics:
  Device-1: Intel 2nd Generation Core Processor Family Integrated Graphics
    driver: i915 v: kernel
  Display: x11 server: X.Org v: 1.20.14 driver: X: loaded: modesetting
    unloaded: fbdev,vesa gpu: i915 resolution: 1920x1080~60Hz
  OpenGL: renderer: Mesa Intel HD Graphics 2000 (SNB GT1)
    v: 3.3 Mesa 21.3.8
+ git checkout .
Updated 2 paths from the index
+ git show
commit 4e563a86330ced80cb61f8d2f9993b3602be034d
Author: Dave Rolsky <autarch@urth.org>
Date:   Wed Feb 16 20:34:28 2022 -0600

    Bump version after release

diff --git a/Makefile.PL b/Makefile.PL
index a806dde..d01fdc3 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -77,7 +77,7 @@ my %WriteMakefileArgs = (
     "autodie" => 0,
     "lib::relative" => 0
   },
-  "VERSION" => "0.81",
+  "VERSION" => "0.82",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff --git a/bin/tidyall b/bin/tidyall
index bc61b2c..90f6cfe 100755
--- a/bin/tidyall
+++ b/bin/tidyall
@@ -8,7 +8,7 @@ use Getopt::Long;
 use strict;
 use warnings;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 my $usage = <<'EOF';
 Usage: tidyall [options] [file] ...
diff --git a/lib/Code/TidyAll.pm b/lib/Code/TidyAll.pm
index e7a1f8f..f7fe535 100644
--- a/lib/Code/TidyAll.pm
+++ b/lib/Code/TidyAll.pm
@@ -29,7 +29,7 @@ use Try::Tiny;

 use Moo 2.000000;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub default_conf_names { ( 'tidyall.ini', '.tidyallrc' ) }

diff --git a/lib/Code/TidyAll/Cache.pm b/lib/Code/TidyAll/Cache.pm
index 5c832c0..d6da195 100644
--- a/lib/Code/TidyAll/Cache.pm
+++ b/lib/Code/TidyAll/Cache.pm
@@ -9,7 +9,7 @@ use Specio::Library::Path::Tiny;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has cache_dir => (
     is       => 'ro',
diff --git a/lib/Code/TidyAll/CacheModel.pm b/lib/Code/TidyAll/CacheModel.pm
index ba463a0..e8affdd 100644
--- a/lib/Code/TidyAll/CacheModel.pm
+++ b/lib/Code/TidyAll/CacheModel.pm
@@ -12,7 +12,7 @@ use Specio::Library::String;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has base_sig => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/CacheModel/Shared.pm b/lib/Code/TidyAll/CacheModel/Shared.pm
index 6142562..36c4dd7 100644
--- a/lib/Code/TidyAll/CacheModel/Shared.pm
+++ b/lib/Code/TidyAll/CacheModel/Shared.pm
@@ -7,7 +7,7 @@ use Moo;

 extends 'Code::TidyAll::CacheModel';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cache_key {
     my $self = shift;
diff --git a/lib/Code/TidyAll/Config/INI/Reader.pm b/lib/Code/TidyAll/Config/INI/Reader.pm
index f374e6e..a450028 100644
--- a/lib/Code/TidyAll/Config/INI/Reader.pm
+++ b/lib/Code/TidyAll/Config/INI/Reader.pm
@@ -5,7 +5,7 @@ use warnings;

 use base qw(Config::INI::Reader);

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 my %multi_value = map { $_ => 1 } qw( ignore inc ok_exit_codes select shebang );

diff --git a/lib/Code/TidyAll/Git/Precommit.pm b/lib/Code/TidyAll/Git/Precommit.pm
index 63aefbd..f022efc 100644
--- a/lib/Code/TidyAll/Git/Precommit.pm
+++ b/lib/Code/TidyAll/Git/Precommit.pm
@@ -16,7 +16,7 @@ use Try::Tiny;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has conf_name => (
     is  => 'ro',
diff --git a/lib/Code/TidyAll/Git/Prereceive.pm b/lib/Code/TidyAll/Git/Prereceive.pm
index 2fc90f0..3ade93c 100644
--- a/lib/Code/TidyAll/Git/Prereceive.pm
+++ b/lib/Code/TidyAll/Git/Prereceive.pm
@@ -16,7 +16,7 @@ use Try::Tiny;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has allow_repeated_push => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/Git/Util.pm b/lib/Code/TidyAll/Git/Util.pm
index 14ddeb5..5194ebc 100644
--- a/lib/Code/TidyAll/Git/Util.pm
+++ b/lib/Code/TidyAll/Git/Util.pm
@@ -10,7 +10,7 @@ use Path::Tiny qw(path);

 use Exporter qw(import);

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 our @EXPORT_OK = qw(git_files_to_commit git_modified_files);

diff --git a/lib/Code/TidyAll/Plugin.pm b/lib/Code/TidyAll/Plugin.pm
index 983d118..c570ff0 100644
--- a/lib/Code/TidyAll/Plugin.pm
+++ b/lib/Code/TidyAll/Plugin.pm
@@ -15,7 +15,7 @@ use Text::Diff 1.44 qw(diff);

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has argv => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/Plugin/CSSUnminifier.pm b/lib/Code/TidyAll/Plugin/CSSUnminifier.pm
index 93e31d7..ae721b9 100644
--- a/lib/Code/TidyAll/Plugin/CSSUnminifier.pm
+++ b/lib/Code/TidyAll/Plugin/CSSUnminifier.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::RunsCommand';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'cssunminifier'}

diff --git a/lib/Code/TidyAll/Plugin/GenericTransformer.pm b/lib/Code/TidyAll/Plugin/GenericTransformer.pm
index 54dd904..0695698 100644
--- a/lib/Code/TidyAll/Plugin/GenericTransformer.pm
+++ b/lib/Code/TidyAll/Plugin/GenericTransformer.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::GenericExecutable';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub transform_file {
     my $self = shift;
diff --git a/lib/Code/TidyAll/Plugin/GenericValidator.pm b/lib/Code/TidyAll/Plugin/GenericValidator.pm
index 00150e1..de47107 100644
--- a/lib/Code/TidyAll/Plugin/GenericValidator.pm
+++ b/lib/Code/TidyAll/Plugin/GenericValidator.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::GenericExecutable';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub validate_file {
     my $self = shift;
diff --git a/lib/Code/TidyAll/Plugin/JSBeautify.pm b/lib/Code/TidyAll/Plugin/JSBeautify.pm
index 6f29079..247af04 100644
--- a/lib/Code/TidyAll/Plugin/JSBeautify.pm
+++ b/lib/Code/TidyAll/Plugin/JSBeautify.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::RunsCommand';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'js-beautify'}

diff --git a/lib/Code/TidyAll/Plugin/JSHint.pm b/lib/Code/TidyAll/Plugin/JSHint.pm
index 7b39cb7..1249494 100644
--- a/lib/Code/TidyAll/Plugin/JSHint.pm
+++ b/lib/Code/TidyAll/Plugin/JSHint.pm
@@ -17,7 +17,7 @@ has options => (

 with qw( Code::TidyAll::Role::RunsCommand Code::TidyAll::Role::Tempdir );

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'jshint'}

diff --git a/lib/Code/TidyAll/Plugin/JSLint.pm b/lib/Code/TidyAll/Plugin/JSLint.pm
index fc2638e..324705e 100644
--- a/lib/Code/TidyAll/Plugin/JSLint.pm
+++ b/lib/Code/TidyAll/Plugin/JSLint.pm
@@ -13,7 +13,7 @@ has '+ok_exit_codes' => (
     default => sub { [ 0, 1 ] },
 );

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'jslint'}

diff --git a/lib/Code/TidyAll/Plugin/JSON.pm b/lib/Code/TidyAll/Plugin/JSON.pm
index fdd01fc..dbea8e1 100644
--- a/lib/Code/TidyAll/Plugin/JSON.pm
+++ b/lib/Code/TidyAll/Plugin/JSON.pm
@@ -8,7 +8,7 @@ use Specio::Library::Builtins;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 extends 'Code::TidyAll::Plugin';

diff --git a/lib/Code/TidyAll/Plugin/MasonTidy.pm b/lib/Code/TidyAll/Plugin/MasonTidy.pm
index 24350da..e4bdd05 100644
--- a/lib/Code/TidyAll/Plugin/MasonTidy.pm
+++ b/lib/Code/TidyAll/Plugin/MasonTidy.pm
@@ -10,7 +10,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'masontidy'}

diff --git a/lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm b/lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm
index a2d8678..99f63f2 100644
--- a/lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm
+++ b/lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::RunsCommand';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub _build_cmd {'phpcs'}

diff --git a/lib/Code/TidyAll/Plugin/PerlCritic.pm b/lib/Code/TidyAll/Plugin/PerlCritic.pm
index 80c7d55..e3d719c 100644
--- a/lib/Code/TidyAll/Plugin/PerlCritic.pm
+++ b/lib/Code/TidyAll/Plugin/PerlCritic.pm
@@ -9,7 +9,7 @@ extends 'Code::TidyAll::Plugin';

 with 'Code::TidyAll::Role::RunsCommand';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 # On Windows only the batch file is actually executable.
 my $cmd = $^O eq 'MSWin32' ? 'perlcritic.bat' : 'perlcritic';
diff --git a/lib/Code/TidyAll/Plugin/PerlTidy.pm b/lib/Code/TidyAll/Plugin/PerlTidy.pm
index 831eb90..8886037 100644
--- a/lib/Code/TidyAll/Plugin/PerlTidy.pm
+++ b/lib/Code/TidyAll/Plugin/PerlTidy.pm
@@ -10,7 +10,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub transform_source {
     my ( $self, $source ) = @_;
diff --git a/lib/Code/TidyAll/Plugin/PerlTidySweet.pm b/lib/Code/TidyAll/Plugin/PerlTidySweet.pm
index 325bb83..9a07871 100644
--- a/lib/Code/TidyAll/Plugin/PerlTidySweet.pm
+++ b/lib/Code/TidyAll/Plugin/PerlTidySweet.pm
@@ -10,7 +10,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub transform_source {
     my ( $self, $source ) = @_;
diff --git a/lib/Code/TidyAll/Plugin/PodChecker.pm b/lib/Code/TidyAll/Plugin/PodChecker.pm
index 326994b..b82b8f2 100644
--- a/lib/Code/TidyAll/Plugin/PodChecker.pm
+++ b/lib/Code/TidyAll/Plugin/PodChecker.pm
@@ -10,7 +10,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has warnings => (
     is  => 'ro',
diff --git a/lib/Code/TidyAll/Plugin/PodSpell.pm b/lib/Code/TidyAll/Plugin/PodSpell.pm
index d8942ab..13b9e66 100644
--- a/lib/Code/TidyAll/Plugin/PodSpell.pm
+++ b/lib/Code/TidyAll/Plugin/PodSpell.pm
@@ -14,7 +14,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has ispell_argv => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/Plugin/PodTidy.pm b/lib/Code/TidyAll/Plugin/PodTidy.pm
index a8ddb6b..ca10773 100644
--- a/lib/Code/TidyAll/Plugin/PodTidy.pm
+++ b/lib/Code/TidyAll/Plugin/PodTidy.pm
@@ -11,7 +11,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has columns => (
     is  => 'ro',
diff --git a/lib/Code/TidyAll/Plugin/SortLines.pm b/lib/Code/TidyAll/Plugin/SortLines.pm
index c147bdc..1a5c8b6 100644
--- a/lib/Code/TidyAll/Plugin/SortLines.pm
+++ b/lib/Code/TidyAll/Plugin/SortLines.pm
@@ -7,7 +7,7 @@ use Moo;

 extends 'Code::TidyAll::Plugin';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 sub transform_source {
     my ( $self, $source ) = @_;
diff --git a/lib/Code/TidyAll/Result.pm b/lib/Code/TidyAll/Result.pm
index 369561a..95a1e71 100644
--- a/lib/Code/TidyAll/Result.pm
+++ b/lib/Code/TidyAll/Result.pm
@@ -10,7 +10,7 @@ use Specio::Library::String;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has error => (
     is  => 'ro',
diff --git a/lib/Code/TidyAll/Role/GenericExecutable.pm b/lib/Code/TidyAll/Role/GenericExecutable.pm
index 2dbe04a..e3a0180 100644
--- a/lib/Code/TidyAll/Role/GenericExecutable.pm
+++ b/lib/Code/TidyAll/Role/GenericExecutable.pm
@@ -13,7 +13,7 @@ use Moo::Role;

 with 'Code::TidyAll::Role::RunsCommand';

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has 'cmd' => (
     is       => 'ro',
diff --git a/lib/Code/TidyAll/Role/HasIgnore.pm b/lib/Code/TidyAll/Role/HasIgnore.pm
index 0448cbe..5c3d08d 100644
--- a/lib/Code/TidyAll/Role/HasIgnore.pm
+++ b/lib/Code/TidyAll/Role/HasIgnore.pm
@@ -9,7 +9,7 @@ use Specio::Library::String;

 use Moo::Role;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has ignore => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/Role/RunsCommand.pm b/lib/Code/TidyAll/Role/RunsCommand.pm
index 5bb7712..fee68c6 100644
--- a/lib/Code/TidyAll/Role/RunsCommand.pm
+++ b/lib/Code/TidyAll/Role/RunsCommand.pm
@@ -12,7 +12,7 @@ use Try::Tiny;

 use Moo::Role;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has ok_exit_codes => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/Role/Tempdir.pm b/lib/Code/TidyAll/Role/Tempdir.pm
index 6512161..5204a8f 100644
--- a/lib/Code/TidyAll/Role/Tempdir.pm
+++ b/lib/Code/TidyAll/Role/Tempdir.pm
@@ -9,7 +9,7 @@ use Specio::Library::Path::Tiny;

 use Moo::Role;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 has _tempdir => (
     is      => 'ro',
diff --git a/lib/Code/TidyAll/SVN/Precommit.pm b/lib/Code/TidyAll/SVN/Precommit.pm
index dd635f5..89c3e48 100644
--- a/lib/Code/TidyAll/SVN/Precommit.pm
+++ b/lib/Code/TidyAll/SVN/Precommit.pm
@@ -13,7 +13,7 @@ use Try::Tiny;

 use Moo;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 # Public
 has conf_name                => ( is => 'ro' );
diff --git a/lib/Code/TidyAll/SVN/Util.pm b/lib/Code/TidyAll/SVN/Util.pm
index c03ecdc..ebd9869 100644
--- a/lib/Code/TidyAll/SVN/Util.pm
+++ b/lib/Code/TidyAll/SVN/Util.pm
@@ -8,7 +8,7 @@ use IPC::System::Simple qw(capturex);

 use Exporter qw(import);

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 our @EXPORT_OK = qw(svn_uncommitted_files);

diff --git a/lib/Code/TidyAll/Util.pm b/lib/Code/TidyAll/Util.pm
index 25776d4..dc5b43c 100644
--- a/lib/Code/TidyAll/Util.pm
+++ b/lib/Code/TidyAll/Util.pm
@@ -8,7 +8,7 @@ use Path::Tiny 0.098 qw(tempdir);

 use Exporter qw(import);

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 our @EXPORT_OK = qw(tempdir_simple);

diff --git a/lib/Code/TidyAll/Util/Zglob.pm b/lib/Code/TidyAll/Util/Zglob.pm
index 01f54fc..f33b461 100644
--- a/lib/Code/TidyAll/Util/Zglob.pm
+++ b/lib/Code/TidyAll/Util/Zglob.pm
@@ -5,7 +5,7 @@ package Code::TidyAll::Util::Zglob;
 use strict;
 use warnings;

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 use Exporter qw(import);

diff --git a/lib/Code/TidyAll/Zglob.pm b/lib/Code/TidyAll/Zglob.pm
index c56cda0..e90a0d5 100644
--- a/lib/Code/TidyAll/Zglob.pm
+++ b/lib/Code/TidyAll/Zglob.pm
@@ -2,7 +2,7 @@ package Code::TidyAll::Zglob;
 use strict;
 use warnings 'all', FATAL => 'recursion';
 use 5.008008;
-our $VERSION = '0.81';
+our $VERSION = '0.82';
 use base qw(Exporter);

 our @EXPORT = qw(zglob);
diff --git a/lib/Test/Code/TidyAll.pm b/lib/Test/Code/TidyAll.pm
index 7b7eb5e..4c9b4ea 100644
--- a/lib/Test/Code/TidyAll.pm
+++ b/lib/Test/Code/TidyAll.pm
@@ -13,7 +13,7 @@ use Text::Diff::Table;

 use Exporter qw(import);

-our $VERSION = '0.81';
+our $VERSION = '0.82';

 my $test = Test::Builder->new;

+ git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
+ dzil test
[DZ] building distribution under .build/WFFnlCGOdC for installation
[@DROLSKY/Dist::Zilla::PluginBundle::DROLSKY] checking for stale modules...
[DZ] beginning to build Code-TidyAll
[DZ] guessing dist's main_module is lib/Code/TidyAll.pm
[@DROLSKY/GitHub::Meta] Getting GitHub repository info
[@DROLSKY/GitHub::Meta] Err:  {
[@DROLSKY/GitHub::Meta]   'content' => '{"message":"Bad credentials","documentation_url":"https://docs.github.com/rest"}',
[@DROLSKY/GitHub::Meta]   'headers' => {
[@DROLSKY/GitHub::Meta]                  'access-control-allow-origin' => '*',
[@DROLSKY/GitHub::Meta]                  'access-control-expose-headers' => 'ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset',
[@DROLSKY/GitHub::Meta]                  'content-length' => '80',
[@DROLSKY/GitHub::Meta]                  'content-security-policy' => 'default-src \'none\'',
[@DROLSKY/GitHub::Meta]                  'content-type' => 'application/json; charset=utf-8',
[@DROLSKY/GitHub::Meta]                  'date' => 'Sun, 10 Apr 2022 02:15:53 GMT',
[@DROLSKY/GitHub::Meta]                  'referrer-policy' => 'origin-when-cross-origin, strict-origin-when-cross-origin',
[@DROLSKY/GitHub::Meta]                  'server' => 'GitHub.com',
[@DROLSKY/GitHub::Meta]                  'strict-transport-security' => 'max-age=31536000; includeSubdomains; preload',
[@DROLSKY/GitHub::Meta]                  'vary' => 'Accept-Encoding, Accept, X-Requested-With',
[@DROLSKY/GitHub::Meta]                  'x-content-type-options' => 'nosniff',
[@DROLSKY/GitHub::Meta]                  'x-frame-options' => 'deny',
[@DROLSKY/GitHub::Meta]                  'x-github-media-type' => 'github.v3; format=json',
[@DROLSKY/GitHub::Meta]                  'x-github-request-id' => 'E644:6F18:28F3936:29B5AA0:62523DD9',
[@DROLSKY/GitHub::Meta]                  'x-ratelimit-limit' => '60',
[@DROLSKY/GitHub::Meta]                  'x-ratelimit-remaining' => '56',
[@DROLSKY/GitHub::Meta]                  'x-ratelimit-reset' => '1649560052',
[@DROLSKY/GitHub::Meta]                  'x-ratelimit-resource' => 'core',
[@DROLSKY/GitHub::Meta]                  'x-ratelimit-used' => '4',
[@DROLSKY/GitHub::Meta]                  'x-xss-protection' => '0'
[@DROLSKY/GitHub::Meta]                },
[@DROLSKY/GitHub::Meta]   'protocol' => 'HTTP/1.1',
[@DROLSKY/GitHub::Meta]   'reason' => 'Unauthorized',
[@DROLSKY/GitHub::Meta]   'status' => '401',
[@DROLSKY/GitHub::Meta]   'success' => '',
[@DROLSKY/GitHub::Meta]   'url' => 'https://api.github.com/repos/shlomif/Code-TidyAll'
[@DROLSKY/GitHub::Meta] }

[@DROLSKY/GitHub::Meta] Using offline repository information
[DZ] writing Code-TidyAll in .build/WFFnlCGOdC
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/CODE_OF_CONDUCT.md to CODE_OF_CONDUCT.md
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/CONTRIBUTING.md to CONTRIBUTING.md
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/LICENSE to LICENSE
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/README.md to README.md
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/cpanfile to cpanfile
[@DROLSKY/CopyFilesFromBuild] Copied .build/WFFnlCGOdC/Makefile.PL to Makefile.PL
Checking if your kit is complete...
Looks good
Generating a Unix-style Makefile
Writing Makefile for Code::TidyAll
Writing MYMETA.yml and MYMETA.json
cp lib/Code/TidyAll.pm blib/lib/Code/TidyAll.pm
cp lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm blib/lib/Code/TidyAll/Plugin/PHPCodeSniffer.pm
cp lib/Code/TidyAll/Plugin/PodTidy.pm blib/lib/Code/TidyAll/Plugin/PodTidy.pm
cp lib/Code/TidyAll/Plugin/GenericValidator.pm blib/lib/Code/TidyAll/Plugin/GenericValidator.pm
cp lib/Code/TidyAll/Plugin/SortLines.pm blib/lib/Code/TidyAll/Plugin/SortLines.pm
cp lib/Code/TidyAll/Util.pm blib/lib/Code/TidyAll/Util.pm
cp lib/Code/TidyAll/Git/Util.pm blib/lib/Code/TidyAll/Git/Util.pm
cp lib/Code/TidyAll/Plugin/JSBeautify.pm blib/lib/Code/TidyAll/Plugin/JSBeautify.pm
cp lib/Code/TidyAll/SVN/Precommit.pm blib/lib/Code/TidyAll/SVN/Precommit.pm
cp lib/Code/TidyAll/Config/INI/Reader.pm blib/lib/Code/TidyAll/Config/INI/Reader.pm
cp lib/Code/TidyAll/SVN/Util.pm blib/lib/Code/TidyAll/SVN/Util.pm
cp lib/Code/TidyAll/Role/Tempdir.pm blib/lib/Code/TidyAll/Role/Tempdir.pm
cp lib/Code/TidyAll/Role/RunsCommand.pm blib/lib/Code/TidyAll/Role/RunsCommand.pm
cp lib/Code/TidyAll/Plugin/PodChecker.pm blib/lib/Code/TidyAll/Plugin/PodChecker.pm
cp lib/Code/TidyAll/Plugin/JSLint.pm blib/lib/Code/TidyAll/Plugin/JSLint.pm
cp lib/Code/TidyAll/Role/HasIgnore.pm blib/lib/Code/TidyAll/Role/HasIgnore.pm
cp lib/Code/TidyAll/Git/Prereceive.pm blib/lib/Code/TidyAll/Git/Prereceive.pm
cp lib/Code/TidyAll/Plugin/JSON.pm blib/lib/Code/TidyAll/Plugin/JSON.pm
cp lib/Code/TidyAll/Plugin/CSSUnminifier.pm blib/lib/Code/TidyAll/Plugin/CSSUnminifier.pm
cp lib/Code/TidyAll/Plugin.pm blib/lib/Code/TidyAll/Plugin.pm
cp lib/Code/TidyAll/CacheModel/Shared.pm blib/lib/Code/TidyAll/CacheModel/Shared.pm
cp lib/Code/TidyAll/Plugin/PodSpell.pm blib/lib/Code/TidyAll/Plugin/PodSpell.pm
cp lib/Code/TidyAll/Plugin/MasonTidy.pm blib/lib/Code/TidyAll/Plugin/MasonTidy.pm
cp lib/Code/TidyAll/Plugin/PerlTidy.pm blib/lib/Code/TidyAll/Plugin/PerlTidy.pm
cp lib/Code/TidyAll/Git/Precommit.pm blib/lib/Code/TidyAll/Git/Precommit.pm
cp lib/Code/TidyAll/Plugin/PerlCritic.pm blib/lib/Code/TidyAll/Plugin/PerlCritic.pm
cp lib/Code/TidyAll/Plugin/JSHint.pm blib/lib/Code/TidyAll/Plugin/JSHint.pm
cp lib/Code/TidyAll/Plugin/GenericTransformer.pm blib/lib/Code/TidyAll/Plugin/GenericTransformer.pm
cp lib/Code/TidyAll/Role/GenericExecutable.pm blib/lib/Code/TidyAll/Role/GenericExecutable.pm
cp lib/Code/TidyAll/Result.pm blib/lib/Code/TidyAll/Result.pm
cp lib/Code/TidyAll/CacheModel.pm blib/lib/Code/TidyAll/CacheModel.pm
cp lib/Code/TidyAll/Plugin/PerlTidySweet.pm blib/lib/Code/TidyAll/Plugin/PerlTidySweet.pm
cp lib/Code/TidyAll/Cache.pm blib/lib/Code/TidyAll/Cache.pm
cp lib/Code/TidyAll/Zglob.pm blib/lib/Code/TidyAll/Zglob.pm
cp lib/Test/Code/TidyAll.pm blib/lib/Test/Code/TidyAll.pm
cp lib/Code/TidyAll/Util/Zglob.pm blib/lib/Code/TidyAll/Util/Zglob.pm
cp bin/tidyall blib/script/tidyall
"/usr/bin/perl" -MExtUtils::MY -e 'MY->fixin(shift)' -- blib/script/tidyall
xt/author/dependent-modules.t .. skipped: Must set TIDYALL_TEST_DEPS to true in order to run these tests
xt/author/mojibake.t ........... ok
xt/author/no-tabs.t ............ ok

#   Failed test 'POD spelling for bin/tidyall'
#   at xt/author/pod-spell.t line 11.
# Errors:
#     1day
#     1h
#     30m
#     4h
#     path1

#   Failed test 'POD spelling for lib/Code/TidyAll/Plugin/PerlTidySweet.pm'
#   at xt/author/pod-spell.t line 11.
# Errors:
#     p5
# 
# All incorrect words, by number of occurrences:
#      1: 1day, 30m, 4h, p5, path1
#      2: 1h
# Looks like you failed 2 tests of 37.
xt/author/pod-spell.t .......... 
Dubious, test returned 2 (wstat 512, 0x200)
Failed 2/37 subtests 
xt/author/pod-syntax.t ......... ok
xt/author/self-tidyall.t ....... skipped: This is broken because of tidyall's broken UTF-8 handling. This is because we now have a contributor in Git with a UTF-8 character in their name, and this gets mangled during tidying. Oh, the irony.
xt/author/test-version.t ....... ok
xt/author/tidy-and-critic.t .... ok

Test Summary Report
-------------------
xt/author/pod-spell.t        (Wstat: 512 Tests: 37 Failed: 2)
  Failed tests:  1, 24
  Non-zero exit status: 2
Files=8, Tests=256, 10 wallclock secs ( 0.07 usr  0.05 sys +  8.65 cusr  0.95 csys =  9.72 CPU)
Result: FAIL
[@DROLSKY/RunExtraTests] Fatal errors in xt tests
[@DROLSKY/RunExtraTests] Fatal errors in xt tests at inline delegation in Dist::Zilla::Plugin::RunExtraTests for logger->log_fatal (attribute declared in /home/shlomif/perl5/lib/perl5/Dist/Zilla/Role/Plugin.pm at line 67) line 18.
+ git status
On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
    modified:   CONTRIBUTING.md
    modified:   README.md

no changes added to commit (use "git add" and/or "git commit -a")
+ git dh
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1f0c4ed..8780d10 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -63,7 +63,7 @@ Once installed, here are some dzil commands you might try:

 You can learn more about Dist::Zilla at http://dzil.org/.

-The code for this distribution is [hosted on GitHub](https://github.com/houseabsolute/perl-code-tidyall).
+The code for this distribution is [hosted on GitHub](https://github.com/shlomif/Code-TidyAll).

 You can submit code changes by forking the repository, pushing your code
 changes to your clone, and then submitting a pull request. Please update the
@@ -72,7 +72,7 @@ work. See the GitHub documentation for [detailed instructions on pull
 requests](https://help.github.com/articles/creating-a-pull-request)

 If you have found a bug, but do not have an accompanying patch to fix it, you
-can submit an issue report [via the web](https://github.com/houseabsolute/perl-code-tidyall/issues).
+can submit an issue report [via the web](WARNING: bugtracker data not set!).

 ## Continuous Integration

diff --git a/README.md b/README.md
index 11c612a..36116f2 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ Code::TidyAll - Engine for tidyall, your all-in-one code tidier and validator

 # VERSION

-version 0.81
+version 0.82

 # SYNOPSIS

@@ -165,11 +165,9 @@ found.

 # SUPPORT

-Bugs may be submitted at [https://github.com/houseabsolute/perl-code-tidyall/issues](https://github.com/houseabsolute/perl-code-tidyall/issues).
-
 # SOURCE

-The source code repository for Code-TidyAll can be found at [https://github.com/houseabsolute/perl-code-tidyall](https://github.com/houseabsolute/perl-code-tidyall).
+The source code repository for Code-TidyAll can be found at [https://github.com/shlomif/Code-TidyAll](https://github.com/shlomif/Code-TidyAll).

 # AUTHORS
autarch commented 2 years ago

So you want to take over maintenance and the first thing you want to do is change all of the (totally working) dzil tooling? I'd be a lot more comfortable handing over maint to someone who had done some work that helps users of this distro first. There are a number of open issues that could use some attention.

shlomif commented 2 years ago

So you want to take over maintenance and the first thing you want to do is change all of the (totally working) dzil tooling? I'd be a lot more comfortable handing over maint to someone who had done some work that helps users of this distro first. There are a number of open issues that could use some attention.

First of all, my desire to become a maint is orthogonal to this issue.

Secondly, i am unable to contribute with dzil test locally failing. I am willinng2try that on a VM running a different linux distro or freebsd, but i am not buying a mac.

haarg commented 2 years ago

Changing from using CopyFilesFromBuild to CopyFilesFromRelease would be a reasonable solution to avoid the .md files from being modified during development.

The modified files has nothing to do with why dzil test fails though. The Pod spelling test is failing likely due to having a different spell checking utility installed. Adding the extra words that are listed in the test failure to .ispell_english should be a reasonable solution to this.

shlomif commented 2 years ago

On Mon, 11 Apr 2022 07:28:38 -0700 Graham Knop @.***> wrote:

Changing from using CopyFilesFromBuild to CopyFilesFromRelease would be a reasonable solution to avoid the .md files from being modified during development.

The modified files has nothing to do with why dzil test fails though. The Pod spelling test is failing likely due to having a different spell checking utility installed. Adding the extra words that are listed in the test failure to .ispell_english should be a reasonable solution to this.

Thx4the informative reply, Graham. ♥!

--

Shlomi Fish https://www.shlomifish.org/ My Aphorisms - https://www.shlomifish.org/humour.html

Tech needs less wizards, ninjas, and rockstars, and way more sociologists. — https://twitter.com/nslater/status/545592700289155072

Please reply to list if it's a mailing list post - https://shlom.in/reply .

shlomif commented 2 years ago

@autarch : ping

autarch commented 2 years ago

I'd have to change this in my dzil bundle in order to change it for this one distribution. I do sometimes want to regen these files and check them in outside of a release.

So I don't think this is worth changing. It just means that when you run some dzil commands you may end up updating some of these files, and you then have to choose whether to revert them or check them in.

As for the spelling test, I'd welcome a PR to add those missing words to .ispell_english. I'm surprised this doesn't fail for me. Maybe there's some file somewhere on my system that ispell finds that has those words in it, but I'm not sure what file that might be.

haarg commented 2 years ago

A good option for regenerating the files on demand is the [Regenerate::AfterReleasers] plugin, with the dzil regenerate command.

shlomif commented 2 years ago

hi.

I'd have to change this in my dzil bundle in order to change it for this one distribution. I do sometimes want to regen these files and check them in outside of a release.

So I don't think this is worth changing. It just means that when you run some dzil commands you may end up updating some of these files, and you then have to choose whether to revert them or check them in.

Why not use @Filter here:

https://metacpan.org/pod/Dist::Zilla::PluginBundle::Filter

https://github.com/shlomif/dzil-dist-ini-format-documentation/blob/master/dist-ini-format-document.pod

As for the spelling test, I'd welcome a PR to add those missing words to .ispell_english. I'm surprised this doesn't fail for me. Maybe there's some file somewhere on my system that ispell finds that has those words in it, but I'm not sure what file that might be.

try strace?

shlomif commented 1 year ago

@haarg @autarch : ping!