Dist-Zilla-Plugin-Prereqs-Soften
view release on metacpan or search on metacpan
"Dist::Zilla::Plugin::OptionalFeature" : "0",
"ExtUtils::MakeMaker" : "7.00",
"Path::Tiny" : "0.058",
"Test::More" : "0.99"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Path::Tiny" : "0",
"Test::DZil" : "0",
"Test::Differences" : "0",
"Test::More" : "0",
"Test::Requires" : "0",
"perl" : "5.006"
}
}
},
"provides" : {
"Dist::Zilla::Plugin::Prereqs::Soften" : {
"file" : "lib/Dist/Zilla/Plugin/Prereqs/Soften.pm",
"version" : "0.006003"
---
abstract: 'Downgrade listed dependencies to recommendations if present.'
author:
- 'Kent Fredric <kentnl@cpan.org>'
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Path::Tiny: '0'
Test::DZil: '0'
Test::Differences: '0'
Test::More: '0'
Test::Requires: '0'
perl: '5.006'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.006'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
Makefile.PL view on Meta::CPAN
"Dist::Zilla::Role::PrereqSource" => 0,
"Moose" => 0,
"Moose::Util::TypeConstraints" => 0,
"MooseX::Types::Moose" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Path::Tiny" => 0,
"Test::DZil" => 0,
"Test::Differences" => 0,
"Test::More" => 0,
"Test::Requires" => 0
},
"VERSION" => "0.006003",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
);
my %FallbackPrereqs = (
"Dist::Zilla::Role::PrereqSource" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Moose" => 0,
"Moose::Util::TypeConstraints" => 0,
"MooseX::Types::Moose" => 0,
"Path::Tiny" => 0,
"Test::DZil" => 0,
"Test::Differences" => 0,
"Test::More" => 0,
"Test::Requires" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
misc/Changes.deps view on Meta::CPAN
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)
0.006003
[Changed / test requires]
- Test::More 0.89 â 0
0.006002 2016-05-01T18:03:38Z
[Added / test requires]
- Path::Tiny
- Test::Differences
[Removed / runtime requires]
- Dist::Zilla::Util::ConfigDumper
[Removed / test requires]
- Dist::Zilla::Util::Test::KENTNL 1.003002
0.006001 2015-10-03T10:40:00Z
0.006000 2015-02-28T05:31:26Z
misc/Changes.deps.all view on Meta::CPAN
[Removed / develop requires]
- Dist::Zilla::Plugin::Bootstrap::lib
0.006002 2016-05-01T18:03:38Z
[Added / test recommends]
- Path::Tiny 0.058
[Added / test requires]
- Path::Tiny
- Test::Differences
[Changed / develop suggests]
- Dist::Zilla::PluginBundle::Author::KENTNL 2.025002 â 2.025010
[Removed / runtime requires]
- Dist::Zilla::Util::ConfigDumper
[Removed / test requires]
- Dist::Zilla::Util::Test::KENTNL 1.003002
misc/built_with.json view on Meta::CPAN
"File::Spec" : "3.66",
"Moose" : "2.2004",
"Moose::Util::TypeConstraints" : "2.2004",
"MooseX::Types::Moose" : "0.50",
"Path::Tiny" : "0.104",
"Pod::Coverage::TrustPod" : "0.100003",
"Software::License::Perl_5" : "0.103012",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"Test::DZil" : "6.009",
"Test::Differences" : "0.64",
"Test::EOL" : "1.6",
"Test::Kwalitee" : "1.25",
"Test::MinimumVersion" : "0.101082",
"Test::More" : "1.302073",
"Test::Pod" : "1.51",
"Test::Pod::Coverage" : "1.10",
"Test::Requires" : "0.10",
"strict" : "1.11",
"warnings" : "1.37"
},
t/00-report-prereqs.dd view on Meta::CPAN
'Dist::Zilla::Plugin::OptionalFeature' => '0',
'ExtUtils::MakeMaker' => '7.00',
'Path::Tiny' => '0.058',
'Test::More' => '0.99'
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Path::Tiny' => '0',
'Test::DZil' => '0',
'Test::Differences' => '0',
'Test::More' => '0',
'Test::Requires' => '0',
'perl' => '5.006'
}
}
};
$x;
}
t/01-basic.t view on Meta::CPAN
use warnings;
use Test::More;
# FILENAME: 01-basic.t
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
path( 'source', 'dist.ini' ) => simple_ini(
[ 'Prereqs', { 'Foo' => 1 } ], #
[ 'Prereqs::Soften', { 'module' => 'Foo' } ], #
['GatherDir'] #
),
t/02-to_relationship-suggested.t view on Meta::CPAN
use warnings;
use Test::More;
# FILENAME: 01-basic.t
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
path( 'source', 'dist.ini' ) => simple_ini(
[ 'Prereqs', { 'Foo' => 1 } ], #
[ 'Prereqs::Soften', { 'module' => 'Foo', 'to_relationship' => 'suggests' } ], #
['GatherDir'], #
),
t/03-copy_to-develop-requires.t view on Meta::CPAN
use warnings;
use Test::More;
# FILENAME: 01-basic.t
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
path( 'source', 'dist.ini' ) => simple_ini(
[ 'Prereqs', { 'Foo' => 1 } ], #
[ 'Prereqs::Soften', { 'module' => 'Foo', 'copy_to' => 'develop.requires' } ], #
['GatherDir'], #
),
t/04-modules_from_features.t view on Meta::CPAN
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::Requires {
'Dist::Zilla::Plugin::OptionalFeature' => 0,
'Dist::Zilla' => 5.020, # EUMM Ver = 0
};
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $of_config = [ 'OptionalFeature' => 'Example', { '-description' => 'An example feature', 'Foo' => 2, } ];
my $expected_yaml = {
configure => { requires => { 'ExtUtils::MakeMaker' => '0', }, },
runtime => { recommends => { 'Foo' => '1' } },
develop => { requires => { 'Foo' => '2' } },
};
local $@;
t/05-to_relationship-none.t view on Meta::CPAN
use warnings;
use Test::More;
# FILENAME: 01-basic.t
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
path( 'source', 'dist.ini' ) => simple_ini(
[ 'Prereqs', { 'Foo' => 1 } ], #
[ 'Prereqs::Soften', { 'module' => 'Foo', 'to_relationship' => 'none', copy_to => 'develop.requires' } ], #
['GatherDir'], #
),
t/06-bad-copy_to.t view on Meta::CPAN
use warnings;
use Test::More;
# FILENAME: 01-basic.t
# CREATED: 03/23/14 19:41:51 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Basic interface test
use Test::DZil qw(simple_ini Builder);
use Path::Tiny qw( path );
use Test::Differences qw( eq_or_diff );
my $tzil = Builder->from_config(
{ dist_root => 'invalid' },
{
add_files => {
path( 'source', 'dist.ini' ) => simple_ini(
[ 'Prereqs', { 'Foo' => 1 } ], #
[ 'Prereqs::Soften', { 'module' => 'Foo', 'copy_to' => 'develop', to_relationship => 'none' } ], #
['GatherDir'], #
( run in 3.833 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )