Games-ABC_Path-Solver
view release on metacpan or search on metacpan
my $builder = Test::Run::Builder->new(
module_name => 'Games::ABC_Path::Solver',
license => 'mit',
dist_abstract => 'A Solver for ABC Path',
dist_author => 'Shlomi Fish <shlomif@cpan.org>',
configure_requires => {
'Module::Build' => '0.36',
},
build_requires => {
'Test::Differences' => 0,
'Test::More' => 0,
},
requires => {
'base' => 0,
'Carp' => 0,
'Getopt::Long' => '2.36',
'Pod::Usage' => 0,
'perl' => '5.008',
'strict' => 0,
'warnings' => 0,
a file.
- Add the scripts/tag-release.pl file to tag a release in the
Subversion repository.
0.0.3 2011-01-21
- Encapsulated scripts/abc-path-solve inside
lib/Games/ABC_Path/Solver/App.pm .
- Add POD to scripts/abc-path-solve
0.0.2 2011-01-10
- Add the missing Test::Differences to the build_requires. It caused
some build failures.
- Add scripts/bump-version-number.pl .
0.0.1 2011-01-09
First version, released on an unsuspecting world.
"mit"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Games-ABC_Path-Solver",
"prereqs" : {
"build" : {
"requires" : {
"Test::Differences" : "0",
"Test::More" : "0"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.36"
}
},
"runtime" : {
"requires" : {
---
abstract: 'A Solver for ABC Path'
author:
- 'Shlomi Fish <shlomif@cpan.org>'
build_requires:
Test::Differences: '0'
Test::More: '0'
configure_requires:
Module::Build: '0.36'
dynamic_config: 1
generated_by: 'Module::Build version 0.4224, CPAN::Meta::Converter version 2.150010'
keywords:
- abc
- game
- games
- grid
Makefile.PL view on Meta::CPAN
require 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'Games::ABC_Path::Solver',
'VERSION_FROM' => 'lib/Games/ABC_Path/Solver.pm',
'PREREQ_PM' => {
'Carp' => 0,
'Getopt::Long' => '2.36',
'Pod::Usage' => 0,
'Test::Differences' => 0,
'Test::More' => 0,
'base' => 0,
'strict' => 0,
'warnings' => 0
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [
'scripts/abc-path-solve'
],
'PL_FILES' => {}
t/input-from-string.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 3;
use Test::Differences;
use Games::ABC_Path::Solver::Board;
{
my $input_string = <<'EOF';
OWXIBQN
J AK
E L
U F
Y P
t/solver-output-system-test.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 6;
use Test::Differences qw( eq_or_diff );
sub _slurp
{
my $filename = shift;
open my $in, "<", $filename
or die "Cannot open '$filename' for slurping - $!";
local $/;
my $contents = <$in>;
( run in 1.223 second using v1.01-cache-2.11-cpan-39bf76dae61 )