CPAN-Changes-Dependencies-Details

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "test" : {
         "recommends" : {
            "CPAN::Meta" : "2.120900",
            "ExtUtils::MakeMaker" : "7.00",
            "Test::More" : "0.99"
         },
         "requires" : {
            "ExtUtils::MakeMaker" : "0",
            "File::Spec" : "0",
            "Test::Differences" : "0",
            "Test::More" : "0",
            "charnames" : "0",
            "perl" : "5.006"
         }
      }
   },
   "provides" : {
      "CPAN::Changes::Dependencies::Details" : {
         "file" : "lib/CPAN/Changes/Dependencies/Details.pm",
         "version" : "0.001007"

META.yml  view on Meta::CPAN

---
abstract: 'Create CPAN::Changes style file only containing dependency change information'
author:
  - 'Kent Fredric <kentnl@cpan.org>'
build_requires:
  ExtUtils::MakeMaker: '0'
  File::Spec: '0'
  Test::Differences: '0'
  Test::More: '0'
  charnames: '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

    "CPAN::Changes::Release" => 0,
    "Carp" => 0,
    "Moo" => 0,
    "MooX::Lsub" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0,
    "File::Spec" => 0,
    "Test::Differences" => 0,
    "Test::More" => 0,
    "charnames" => 0
  },
  "VERSION" => "0.001007",
  "test" => {
    "TESTS" => "t/*.t t/00-compile/*.t"
  }
);


my %FallbackPrereqs = (
  "CPAN::Changes" => 0,
  "CPAN::Changes::Group::Dependencies::Details" => "0.001001",
  "CPAN::Changes::Release" => 0,
  "Carp" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "Moo" => 0,
  "MooX::Lsub" => 0,
  "Test::Differences" => 0,
  "Test::More" => 0,
  "charnames" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};

misc/built_with.json  view on Meta::CPAN

      "Dist::Zilla::PluginBundle::Author::KENTNL" : "2.025021",
      "English" : "1.10",
      "ExtUtils::MakeMaker" : "7.24",
      "File::Spec" : "3.66",
      "Moo" : "2.003000",
      "MooX::Lsub" : "0.002001",
      "Pod::Coverage::TrustPod" : "0.100003",
      "Software::License::Perl_5" : "0.103012",
      "Test::CPAN::Changes" : "0.400002",
      "Test::CPAN::Meta" : "0.25",
      "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",
      "charnames" : "1.44",
      "strict" : "1.11",
      "warnings" : "1.37"
   },

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

                    },
       'test' => {
                   'recommends' => {
                                     'CPAN::Meta' => '2.120900',
                                     'ExtUtils::MakeMaker' => '7.00',
                                     'Test::More' => '0.99'
                                   },
                   'requires' => {
                                   'ExtUtils::MakeMaker' => '0',
                                   'File::Spec' => '0',
                                   'Test::Differences' => '0',
                                   'Test::More' => '0',
                                   'charnames' => '0',
                                   'perl' => '5.006'
                                 }
                 }
     };
  $x;
 }

t/basic.t  view on Meta::CPAN

    skip_all => sprintf "Serialization scheme of CPAN::Changes %s is different to that of %s",
    $CPAN::Changes::VERSION, $sample_version;
}

plan tests => 4;
local $TODO;
if ( not eval "CPAN::Changes->VERSION(q[0.500]); 1" ) {
  $TODO = "Legacy serialization scheme";
}

use Test::Differences qw( eq_or_diff_text eq_or_diff );

eq_or_diff( $sample_changes->serialize,                                       $sample,         'Guard: Whole file same' );
eq_or_diff( $sample_changes->release('1.7.5')->serialize,                     $release_sample, 'Guard: release same' );
eq_or_diff( $sample_changes->release('1.7.5')->get_group('Group')->serialize, $group_sample,   'Guard: group same' );

# FILENAME: basic.t
# CREATED: 08/01/14 22:58:44 by Kent Fredric (kentnl) <kentfredric@gmail.com>
# ABSTRACT: Test basic functionality

require CPAN::Changes::Dependencies::Details;



( run in 0.903 second using v1.01-cache-2.11-cpan-6aa56a78535 )