Acme-CPANAuthors-India
view release on metacpan or search on metacpan
"Test::CPAN::Meta" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
}
},
"runtime" : {
"requires" : {
"Acme::CPANAuthors::Register" : "0",
"perl" : "5.008",
"strict" : "0",
"utf8" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Find" : "0",
"File::Spec::Functions" : "0",
"File::Temp" : "0",
"List::Util" : "0",
package:
- DB
provides:
Acme::CPANAuthors::India:
file: lib/Acme/CPANAuthors/India.pm
version: 0.07
requires:
Acme::CPANAuthors::Register: 0
perl: 5.008
strict: 0
utf8: 0
warnings: 0
resources:
bugtracker: https://github.com/shantanubhadoria/acme-cpanauthors-india/issues
homepage: https://metacpan.org/release/Acme-CPANAuthors-India
repository: git://github.com/shantanubhadoria/acme-cpanauthors-india.git
version: 0.07
x_contributors:
- 'Shantanu <shantanu@cpan.org>'
- 'Shantanu Bhadoria <shantanu.bhadoria@gmail.com>'
Makefile.PL view on Meta::CPAN
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
"DISTNAME" => "Acme-CPANAuthors-India",
"EXE_FILES" => [],
"LICENSE" => "perl",
"NAME" => "Acme::CPANAuthors::India",
"PREREQ_PM" => {
"Acme::CPANAuthors::Register" => 0,
"strict" => 0,
"utf8" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Find" => 0,
"File::Spec::Functions" => 0,
"File::Temp" => 0,
"List::Util" => 0,
"Test::More" => 0
},
lib/Acme/CPANAuthors/India.pm view on Meta::CPAN
package Acme::CPANAuthors::India;
use 5.006;
use strict;
use warnings FATAL => 'all';
use utf8;
# PODNAME: Acme::CPANAuthors::India
our $VERSION = '0.07'; # VERSION
# ABSTRACT: We are the Indian CPAN Authors. Coming from that big peninsula in the center of Asia, the original Indians. The ones columbus was looking for. :)
#
# This file is part of Acme-CPANAuthors-India
#
# This software is copyright (c) 2013 by Shantanu Bhadoria.
#
# This is free software; you can redistribute it and/or modify it under
t/00-report-prereqs.t view on Meta::CPAN
my @modules = qw(
Acme::CPANAuthors::Register
ExtUtils::MakeMaker
File::Find
File::Spec::Functions
File::Temp
List::Util
Test::More
perl
strict
utf8
warnings
);
# replace modules with dynamic results from MYMETA.json if we can
# (hide CPAN::Meta from prereq scanner)
my $cpan_meta = "CPAN::Meta";
if ( -f "MYMETA.json" && eval "require $cpan_meta" ) { ## no critic
if ( my $meta = eval { CPAN::Meta->load_file("MYMETA.json") } ) {
my $prereqs = $meta->prereqs;
delete $prereqs->{develop};
( run in 0.941 second using v1.01-cache-2.11-cpan-49f99fa48dc )