App-GitHooks-Plugin-ValidateChangelogFormat

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

		'Test::Requires::Git' => 1.005,
		'Capture::Tiny'       => 0,
		'Test::Exception'     => 0,
		'App::GitHooks::Test' => 0,
		'Test::Type'          => 0,
	},
	requires             =>
	{
		'App::GitHooks::Constants' => 0,
		'CPAN::Changes'            => 0,
		'Try::Tiny'                => 0,
		'version'                  => 0,
		'App::GitHooks::Plugin'    => 0,
		'perl'                     => 5.010,
	},
	add_to_cleanup       =>
	[
		'App-GitHooks-Plugin-ValidateChangelogFormat-*',
	],
	create_makefile_pl   => 'traditional',
	configure_requires   =>

META.json  view on Meta::CPAN

      "configure" : {
         "requires" : {
            "Module::Build" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "App::GitHooks::Constants" : "0",
            "App::GitHooks::Plugin" : "0",
            "CPAN::Changes" : "0",
            "Try::Tiny" : "0",
            "perl" : "5.01",
            "version" : "0"
         }
      }
   },
   "provides" : {
      "App::GitHooks::Plugin::ValidateChangelogFormat" : {
         "file" : "lib/App/GitHooks/Plugin/ValidateChangelogFormat.pm",
         "version" : "v1.1.0"
      }

META.yml  view on Meta::CPAN

  version: '1.4'
name: App-GitHooks-Plugin-ValidateChangelogFormat
provides:
  App::GitHooks::Plugin::ValidateChangelogFormat:
    file: lib/App/GitHooks/Plugin/ValidateChangelogFormat.pm
    version: v1.1.0
requires:
  App::GitHooks::Constants: '0'
  App::GitHooks::Plugin: '0'
  CPAN::Changes: '0'
  Try::Tiny: '0'
  perl: '5.01'
  version: '0'
resources:
  bugtracker: https://github.com/guillaumeaubert/App-GitHooks-Plugin-ValidateChangelogFormat/issues
  homepage: https://metacpan.org/release/App-GitHooks-Plugin-ValidateChangelogFormat
  license: http://dev.perl.org/licenses/
  repository: https://github.com/guillaumeaubert/App-GitHooks-Plugin-ValidateChangelogFormat
version: v1.1.0

Makefile.PL  view on Meta::CPAN

WriteMakefile
(
  'test' => {
              'TESTS' => 't/*.t'
            },
  'PL_FILES' => {},
  'INSTALLDIRS' => 'site',
  'NAME' => 'App::GitHooks::Plugin::ValidateChangelogFormat',
  'PREREQ_PM' => {
                   'Test::Type' => 0,
                   'Try::Tiny' => 0,
                   'App::GitHooks::Constants' => 0,
                   'CPAN::Changes' => 0,
                   'Capture::Tiny' => 0,
                   'App::GitHooks::Test' => 0,
                   'App::GitHooks::Plugin' => 0,
                   'version' => 0,
                   'Test::Requires::Git' => '1.005',
                   'Test::FailWarnings' => 0,
                   'Test::Exception' => 0,
                   'Test::More' => 0

lib/App/GitHooks/Plugin/ValidateChangelogFormat.pm  view on Meta::CPAN

use strict;
use warnings;

use base 'App::GitHooks::Plugin';

# Internal dependencies.
use App::GitHooks::Constants qw( :PLUGIN_RETURN_CODES );

# External dependencies.
use CPAN::Changes;
use Try::Tiny;
use version qw();


=head1 NAME

App::GitHooks::Plugin::ValidateChangelogFormat - Validate the format of changelog files.


=head1 DESCRIPTION



( run in 0.336 second using v1.01-cache-2.11-cpan-05444aca049 )