view release on metacpan or search on metacpan
"Test::Pod::Coverage" : "1.08"
},
"suggests" : {
"Dist::Zilla::App::Command::bakeini" : "0.002006",
"Dist::Zilla::PluginBundle::Author::KENTNL" : "2.025021"
}
},
"runtime" : {
"requires" : {
"Class::Tiny" : "0",
"parent" : "0",
"perl" : "5.006",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900",
"ExtUtils::MakeMaker" : "7.00",
"Test::More" : "0.99"
file: lib/Acme/Flat/SV.pm
version: '0.001001'
Acme::Flat::SVOP:
file: lib/Acme/Flat/SVOP.pm
version: '0.001001'
Acme::Flat::UNOP:
file: lib/Acme/Flat/UNOP.pm
version: '0.001001'
requires:
Class::Tiny: '0'
parent: '0'
perl: '5.006'
strict: '0'
warnings: '0'
resources:
bugtracker: https://github.com/kentnl/Acme-Flat/issues
homepage: https://github.com/kentnl/Acme-Flat
repository: https://github.com/kentnl/Acme-Flat.git
version: '0.001001'
Makefile.PL view on Meta::CPAN
"AUTHOR" => "Kent Fredric <kentnl\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => 0
},
"DISTNAME" => "Acme-Flat",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.006",
"NAME" => "Acme::Flat",
"PREREQ_PM" => {
"Class::Tiny" => 0,
"parent" => 0,
"strict" => 0,
"warnings" => 0
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => 0
},
"VERSION" => "0.001001",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
);
my %FallbackPrereqs = (
"Class::Tiny" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => 0,
"parent" => 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;
}
lib/Acme/Flat/AV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::AV;
# ABSTRACT: An Array Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/BINOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::BINOP;
# ABSTRACT: A Binary Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::UNOP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/COP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::COP;
# ABSTRACT: A State Operation (Control OP).
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/CV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::CV;
# ABSTRACT: A Code Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/FM.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::FM;
# ABSTRACT: A Form Metadata container
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::CV';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/GV.pm view on Meta::CPAN
use warnings;
package Acme::Flat::GV;
# ABSTRACT: A Glob Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/HV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::HV;
# ABSTRACT: A Hash Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/IO.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::IO;
# ABSTRACT: An IO Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/IV.pm view on Meta::CPAN
use warnings;
package Acme::Flat::IV;
# ABSTRACT: An Integer Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::SV';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/LISTOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::LISTOP;
# ABSTRACT: A List Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::BINOP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/LOOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::LOOP;
# ABSTRACT: A Loop Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::LISTOP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/METHOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::METHOP;
# ABSTRACT: A Method Call Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/NV.pm view on Meta::CPAN
use warnings;
package Acme::Flat::NV;
# ABSTRACT: A Numeric Value ( Float/Double )
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::SV';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PADOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::PADOP;
# ABSTRACT: An Operation with a reference to a PAD element.
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PMOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::PMOP;
# ABSTRACT: A Regexp (Pattern Matching) Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::LISTOP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PV.pm view on Meta::CPAN
use warnings;
package Acme::Flat::PV;
# ABSTRACT: A Pointer Value ( Generally, for strings )
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::SV';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PVIV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::PVIV;
# ABSTRACT: A Value with both String and Integer Parts
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::PV Acme::Flat::IV );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PVLV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::PVLV;
# ABSTRACT: A Special Magic LValue value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::GV';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PVMG.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::PVMG;
# ABSTRACT: A Value with Magic
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::PVNV );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PVNV.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::PVNV;
# ABSTRACT: A Value with Float, Integer, and String Parts
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::PVIV Acme::Flat::NV );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/PVOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::PVOP;
# ABSTRACT: An Operator with an embedded C Pointer
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/REGEXP.pm view on Meta::CPAN
use strict;
use warnings;
package Acme::Flat::REGEXP;
# ABSTRACT: A Regular Expression Value
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent 'Acme::Flat::PVMG';
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/SVOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::SVOP;
# ABSTRACT: An Operation with a static embedded SV.
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
lib/Acme/Flat/UNOP.pm view on Meta::CPAN
use warnings;
package Acme::Flat::UNOP;
# ABSTRACT: A Unary Operation
our $VERSION = '0.001001';
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use parent qw( Acme::Flat::OP );
use Class::Tiny;
1;
__END__
=pod
=encoding UTF-8
misc/built_with.json view on Meta::CPAN
"Pod::Coverage::TrustPod" : "0.100003",
"Software::License::Perl_5" : "0.103012",
"Test::CPAN::Changes" : "0.400002",
"Test::CPAN::Meta" : "0.25",
"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",
"parent" : "0.236",
"strict" : "1.11",
"warnings" : "1.37"
},
"perl" : {
"original" : "v5.25.10",
"qv" : 1,
"version" : [
5,
25,
10
t/00-report-prereqs.dd view on Meta::CPAN
'Test::Pod::Coverage' => '1.08'
},
'suggests' => {
'Dist::Zilla::App::Command::bakeini' => '0.002006',
'Dist::Zilla::PluginBundle::Author::KENTNL' => '2.025021'
}
},
'runtime' => {
'requires' => {
'Class::Tiny' => '0',
'parent' => '0',
'perl' => '5.006',
'strict' => '0',
'warnings' => '0'
}
},
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900',
'ExtUtils::MakeMaker' => '7.00',
'Test::More' => '0.99'