Acme-Time-Constant

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.009.
.gitignore
.mailmap
.perltidyrc
.travis.yml
Changes
INSTALL.SKIP
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README

META.json  view on Meta::CPAN

808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
         }
      }
   },
   "name" : "@Author::KENTNL/Prereqs::Upgrade",
   "version" : "0.001001"
},
{
   "class" : "Dist::Zilla::Plugin::Prereqs::Recommend::MatchInstalled",
   "config" : {
      "Dist::Zilla::Plugin::Prereqs::Recommend::MatchInstalled" : {
         "applyto_map" : [
            "develop.suggests = develop.suggests"
         ],
         "applyto_phase" : [
            "develop"
         ],
         "modules" : [
            "Dist::Zilla::PluginBundle::Author::KENTNL",
            "Dist::Zilla::App::Command::bakeini"
         ],
         "source_relation" : "requires",

dist.ini  view on Meta::CPAN

169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
Dist::Zilla = 5
ExtUtils::MakeMaker = 7.00
File::ShareDir::Install = 0.10
Moo = 1.000008
Moose = 2.000
Path::Tiny = 0.058
Test::File::ShareDir = 1.000000
Test::More = 0.99
 
[Prereqs::Recommend::MatchInstalled / @Author::KENTNL/always_latest_develop_bundle]
applyto_map = develop.suggests = develop.suggests
applyto_phase = develop
modules = Dist::Zilla::PluginBundle::Author::KENTNL
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

t/00-report-prereqs.t  view on Meta::CPAN

140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
                if ( $DO_VERIFY_PREREQS && $type eq 'requires' ) {
                    push @dep_errors, "$mod is not installed ($req_string)";
                }
            }
        }
 
        if ( @reports ) {
            push @full_reports, "=== $title ===\n\n";
 
            my $ml = _max( map { length $_->[0] } @reports );
            my $wl = _max( map { length $_->[1] } @reports );
            my $hl = _max( map { length $_->[2] } @reports );
 
            if ($type eq 'modules') {
                splice @reports, 1, 0, ["-" x $ml, "", "-" x $hl];
                push @full_reports, map { sprintf("    %*s %*s\n", -$ml, $_->[0], $hl, $_->[2]) } @reports;
            }
            else {
                splice @reports, 1, 0, ["-" x $ml, "-" x $wl, "-" x $hl];
                push @full_reports, map { sprintf("    %*s %*s %*s\n", -$ml, $_->[0], $wl, $_->[1], $hl, $_->[2]) } @reports;
            }
 
            push @full_reports, "\n";
        }
    }
}
 
if ( @full_reports ) {
    diag "\nVersions for all modules listed in $source (including optional ones):\n\n", @full_reports;
}



( run in 0.866 second using v1.01-cache-2.11-cpan-87723dcf8b7 )