HTML-Latemp-NavLinks-GenHtml

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

    "parent" => 0,
    "perl" => "5.008",
    "strict" => 0,
    "vars" => 0,
    "warnings" => 0
  },
  "test_requires" => {
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Test::Differences" => 0,
    "Test::More" => "0.88"
  }
);


my %fallback_build_requires = (
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Module::Build" => "0.28",
  "Test::Differences" => 0,
  "Test::More" => "0.88"
);


unless ( eval { Module::Build->VERSION(0.4004) } ) {
  delete $module_build_args{test_requires};
  $module_build_args{build_requires} = \%fallback_build_requires;
}

my $build = Module::Build->new(%module_build_args);

Changes  view on Meta::CPAN

    - Add scripts/tag-release.pl

0.2.2   2014-01-30
    - Add t/cpan-changes.t and t/style-trailing-space.t .
    - Convert license to 'mit'.
    - Minimal perl version. (CPANTS Kwalitee).
    - Convert to "use parent" instead of base.
    - Add LICENSE file (CPANTS).

0.2.1   2012-12-07
    - Add Test::Differences to the build_requires.
        - see http://www.cpantesters.org/cpan/report/6a6f6a60-3d76-11e2-a2f1-82091a5d253f
        and other reports.

0.2.0    2012-12-02
    - Add the 'ext' parameter to
    lib/HTML/Latemp/NavLinks/GenHtml/ArrowImages.pm .

0.1.8    2006-10-07
    - Added the pod-coverage.t file and made the files have
    full POD coverage.

META.json  view on Meta::CPAN

            "strict" : "0",
            "vars" : "0",
            "warnings" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Test::Differences" : "0",
            "Test::More" : "0.88"
         }
      }
   },
   "provides" : {
      "HTML::Latemp::NavLinks::GenHtml" : {
         "file" : "lib/HTML/Latemp/NavLinks/GenHtml.pm",
         "version" : "v0.2.9"
      },
      "HTML::Latemp::NavLinks::GenHtml::ArrowImages" : {

META.yml  view on Meta::CPAN

---
abstract: 'A module to generate the HTML of the navigation links.'
author:
  - 'Shlomi Fish <shlomif@cpan.org>'
build_requires:
  File::Spec: '0'
  IO::Handle: '0'
  IPC::Open3: '0'
  Module::Build: '0.28'
  Test::Differences: '0'
  Test::More: '0.88'
configure_requires:
  Module::Build: '0.28'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.015, CPAN::Meta::Converter version 2.150010'
license: mit
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: HTML-Latemp-NavLinks-GenHtml

t/01-run.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 4;

use Test::Differences qw(eq_or_diff);

package MyLink;

sub new
{
    my $class = shift;
    my $self  = shift;
    bless $self, $class;
    return $self;
}



( run in 1.115 second using v1.01-cache-2.11-cpan-9581c071862 )