view release on metacpan or search on metacpan
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::Differences" : "0",
"Test::More" : "0",
"perl" : "5.010"
}
}
},
"provides" : {
"Color::Swatch::ASE::Writer" : {
"file" : "lib/Color/Swatch/ASE/Writer.pm",
"version" : "0.001003"
}
---
abstract: 'Low level ASE ( Adobe Swatch Exchange ) file Writer.'
author:
- 'Kent Fredric <kentnl@cpan.org>'
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::Differences: '0'
Test::More: '0'
perl: '5.010'
configure_requires:
ExtUtils::MakeMaker: '0'
perl: '5.010'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Makefile.PL view on Meta::CPAN
"NAME" => "Color::Swatch::ASE::Writer",
"PREREQ_PM" => {
"Encode" => 0,
"Path::Tiny" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::Differences" => 0,
"Test::More" => 0
},
"VERSION" => "0.001003",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
);
my %FallbackPrereqs = (
"Encode" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Path::Tiny" => 0,
"Test::Differences" => 0,
"Test::More" => 0,
"strict" => 0,
"warnings" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
misc/built_with.json view on Meta::CPAN
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.025021",
"Encode" : "2.88",
"English" : "1.10",
"ExtUtils::MakeMaker" : "7.24",
"File::Spec" : "3.66",
"Path::Tiny" : "0.104",
"Pod::Coverage::TrustPod" : "0.100003",
"Software::License::Perl_5" : "0.103012",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"Test::Differences" : "0.64",
"Test::EOL" : "1.6",
"Test::Kwalitee" : "1.25",
"Test::MinimumVersion" : "0.101082",
"Test::More" : "1.302073",
"Test::Pod" : "1.51",
"Test::Pod::Coverage" : "1.10",
"strict" : "1.11",
"warnings" : "1.37"
},
"perl" : {
t/00-report-prereqs.dd view on Meta::CPAN
},
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::Differences' => '0',
'Test::More' => '0',
'perl' => '5.010'
}
}
};
$x;
}
t/basic-blockgroup.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Test block group property of labels
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
label => "Various",
t/basic-color-CMYK.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Basic CMYK test
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
t/basic-color-Gray.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: test Gray emitting
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
t/basic-color-LAB.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: test LAB emitting
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
t/basic-color-RGB.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: test RGB emitting
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
t/basic-end.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Test end blocks
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [
{
type => 'group_start',
t/basic-labels.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Test block labels
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [ { type => 'group_start', label => "Various", }, ]
};
t/basic-noblocks.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Test basic structure production
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => []
};
t/basic-start.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Color::Swatch::ASE::Writer;
# ABSTRACT: Test the start block type
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
blocks => [ { type => 'group_start' }, ]
};
my $out = Color::Swatch::ASE::Writer->write_string($structure);
t/io-file.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Path::Tiny;
# ABSTRACT: Basic test
use Color::Swatch::ASE::Writer;
my $tempdir = Path::Tiny->tempdir;
my $structure = {
signature => 'ASEF',
version => [ 1, 0 ],
t/io-filehandle.t view on Meta::CPAN
use strict;
use warnings;
use Test::More tests => 1;
use Test::Differences;
use Path::Tiny;
# ABSTRACT: Basic test
use Color::Swatch::ASE::Writer;
my $tempdir = Path::Tiny->tempdir;
my $fh = $tempdir->child('test.ase')->openw_raw;
my $structure = {
signature => 'ASEF',