ANSI-Heatmap

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : 0
         }
      },
      "runtime" : {
         "requires" : {
            "Class::Accessor::Fast" : 0,
            "Test::More" : 0
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/richardjharris/ANSI-Heatmap/issues"
      },
      "repository" : {
         "url" : "https://github.com/richardjharris/ANSI-Heatmap"

META.yml  view on Meta::CPAN

meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: ANSI-Heatmap
no_index:
  directory:
    - t
    - inc
requires:
  Class::Accessor::Fast: 0
  Test::More: 0
resources:
  bugtracker: https://github.com/richardjharris/ANSI-Heatmap/issues
  repository: https://github.com/richardjharris/ANSI-Heatmap
version: 0.3

Makefile.PL  view on Meta::CPAN

            bugtracker => q{https://github.com/richardjharris/ANSI-Heatmap/issues},
        },
    },
    NAME              => q{ANSI::Heatmap},
    AUTHOR            => q{Richard Harris <richardjharris@gmail.com>},
    ABSTRACT          => q{Render heatmaps to your terminal},
    VERSION_FROM      => q{./lib/ANSI/Heatmap.pm},
    LICENSE           => q{perl},
    PREREQ_PM => {
      q{Class::Accessor::Fast} => 0,
      q{Test::More}            => 0,
    },
    MAN3PODS          => {
      'lib/ANSI/Heatmap.pm' => 'blib/man3/ANSI::Heatmap.3',
    },
    dist                => { COMPRESS => q{gzip -9f}, SUFFIX => q{gz}, },
    clean               => { FILES    => q{ANSI-Heatmap-*} },
);

sub WriteMakefile1 {
    my %params = @_;

t/basic.t  view on Meta::CPAN

use Test::More tests => 16;
use strict;
use warnings;

use ANSI::Heatmap;

my $map = ANSI::Heatmap->new;
$map->set(0,0,1);
$map->set(1,1,1);

is_deeply( $map->data, [[1,0], [0,1]], 'set' );

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

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