Acme-Base64

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Acme::Base64',
    license           => 'perl',
    dist_author       => 'Alan Haggai Alavi <haggai@cpan.org>',
    dist_version_from => 'lib/Acme/Base64.pm',
    build_requires    => { 'Test::More' => 0, },
    requires          => {
        'version'        => 0,
        'MIME::Base64'   => 0,
        'Filter::Simple' => 0,
    },
    'meta_merge' => {
        'resources' => {
            'repository' =>
              'git://github.com/alanhaggai/Acme-Base64.git',
        },

Changes  view on Meta::CPAN

Revision history for Acme-Base64

0.0.2  Wednesday, 10 March 2010
       - Fixed bug relating to test failure when Test::Perl::Critic is unavailable
       - Skip author tests
       - Updated README

0.0.1  Tuesday, 09 March 2010
       - Initial release.

META.yml  view on Meta::CPAN

---
abstract: 'Write Perl in Base64 encoding'
author:
  - 'Alan Haggai Alavi <haggai@cpan.org>'
build_requires:
  Test::More: 0
configure_requires:
  Module::Build: 0.36
generated_by: 'Module::Build version 0.3603'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Acme-Base64
provides:
  Acme::Base64:

t/00.load.t  view on Meta::CPAN

use Test::More tests => 1;

BEGIN {
use_ok( 'Acme::Base64' );
}

ZGlhZyggIlRlc3RpbmcgQWNtZTo6QmFzZTY0ICRBY21lOjpCYXNlNjQ6OlZFUlNJT04iICk7Cg==

t/perlcritic.t  view on Meta::CPAN

#!perl

use Test::More;
plan 'skip_all' => "Author tests not required for installation"
  unless $ENV{'AUTOMATED_TESTING'};

eval { require Test::Perl::Critic };

if ($@) {
    Test::More::plan(
        skip_all => "Test::Perl::Critic required for testing PBP compliance"
    );
}

Test::Perl::Critic::all_critic_ok();

t/pod-coverage.t  view on Meta::CPAN

#!perl -T

use Test::More;
plan 'skip_all' => "Author tests not required for installation"
  unless $ENV{'AUTOMATED_TESTING'};

eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
all_pod_coverage_ok();

t/pod.t  view on Meta::CPAN

#!perl -T

use Test::More;
plan 'skip_all' => "Author tests not required for installation"
  unless $ENV{'AUTOMATED_TESTING'};

eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();

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

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