Acme-Alt-Dep-Test

 view release on metacpan or  search on metacpan

CONTRIBUTING  view on Meta::CPAN

Contributing
============

The "Acme-Alt-Dep-Test" Project needs your help!

Please consider being a contributor. This file contains instructions that will
help you be an effective contributor to the Project.

GitHub
------

The code for this Project is hosted at GitHub. The URL is:

  https://github.com/ingydotnet/acme-alt-dep-test-pm

META.json  view on Meta::CPAN

{
   "abstract" : "Test Module for Depping on Alted Modules",
   "author" : [
      "Ingy döt Net <ingy@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 5.029, CPAN::Meta::Converter version 2.143240",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
      "version" : "2"
   },
   "name" : "Acme-Alt-Dep-Test",
   "no_index" : {
      "directory" : [
         "inc",
         "t",
         "xt",
         "example"
      ]
   },
   "prereqs" : {
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "develop" : {
         "requires" : {
            "Test::Pod" : "1.41"
         }
      },
      "runtime" : {
         "requires" : {
            "Acme::Math::XS" : "0",
            "perl" : "v5.8.1"
         }
      }
   },
   "release_status" : "stable",

META.yml  view on Meta::CPAN

---
abstract: 'Test Module for Depping on Alted Modules'
author:
  - 'Ingy döt Net <ingy@cpan.org>'
build_requires: {}
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.029, CPAN::Meta::Converter version 2.143240'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-Alt-Dep-Test
no_index:
  directory:
    - inc
    - t
    - xt
    - example
requires:
  Acme::Math::XS: '0'
  perl: v5.8.1
resources:

Makefile.PL  view on Meta::CPAN

use strict;
use warnings;

use 5.008001;

use ExtUtils::MakeMaker;



my %WriteMakefileArgs = (
  "ABSTRACT" => "Test Module for Depping on Alted Modules",
  "AUTHOR" => "Ingy d\x{f6}t Net <ingy\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "Acme-Alt-Dep-Test",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008001",
  "NAME" => "Acme::Alt::Dep::Test",
  "PREREQ_PM" => {
    "Acme::Math::XS" => 0
  },
  "VERSION" => "0.0.1",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


README  view on Meta::CPAN

NAME
    Acme::Alt::Dep::Test - Test Depping on an Alted Module

SYNOPSIS
        cpanm Alt::Acme::Math::XS::EUMM
        cpanm Acme::Alt::Dep::Test
        perl -MAcme::Math::XS\ 9

DESCRIPTION
    Alt::Acme::Math::XS::EUMM ships a version of Acme::Math::XS with:

        our $VERSION = -1;

    Acme::Alt::Dep::Test deps on:

        Acme::Math::XS: 0

    Install Acme::Alt::Dep::Test after Alt::Acme::Math::XS::EUMM should
    install the real Acme::Math::XS (v0.0.15 or higher).

AUTHOR
    Ingy döt Net <ingy@cpan.org>

COPYRIGHT
    Copyright 2014. Ingy döt Net.

    This program is free software; you can redistribute it and/or modify it
    under the same terms as Perl itself.

lib/Acme/Alt/Dep/Test.pm  view on Meta::CPAN

package Acme::Alt::Dep::Test;
our $VERSION = '0.0.1';

lib/Acme/Alt/Dep/Test.pod  view on Meta::CPAN

=pod

=for comment
DO NOT EDIT. This Pod was generated by Swim v0.1.31.
See http://github.com/ingydotnet/swim-pm#readme

=encoding utf8

=head1 NAME

Acme::Alt::Dep::Test - Test Depping on an Alted Module

=head1 SYNOPSIS

    cpanm Alt::Acme::Math::XS::EUMM
    cpanm Acme::Alt::Dep::Test
    perl -MAcme::Math::XS\ 9

=head1 DESCRIPTION

L<Alt::Acme::Math::XS::EUMM> ships a version of L<Acme::Math::XS> with:

    our $VERSION = -1;

L<Acme::Alt::Dep::Test> deps on:

    Acme::Math::XS: 0

Install L<Acme::Alt::Dep::Test> after L<Alt::Acme::Math::XS::EUMM> should
install the real L<Acme::Math::XS> (v0.0.15 or higher).

=head1 AUTHOR

Ingy döt Net <ingy@cpan.org>

=head1 COPYRIGHT

Copyright 2014. Ingy döt Net.

t/000-compile-modules.t  view on Meta::CPAN

# This test does a basic `use` check on all the code.
use Test::More;

use File::Find;

sub test {
    s{^lib/(.*)\.pm$}{$1} or return;
    s{/}{::}g;
    use_ok $_;
}

$ENV{PERL_ZILD_TEST_000_COMPILE_MODULES} = 1;

t/release-pod-syntax.t  view on Meta::CPAN

#!perl

BEGIN {
  unless ($ENV{RELEASE_TESTING}) {
    require Test::More;
    Test::More::plan(skip_all => 'these tests are for release candidate testing');
  }
}

# This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests.
use Test::More;
use Test::Pod 1.41;

all_pod_files_ok();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.687 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )