CairoX-Sweet
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
0.0200 2016-08-22 21:27:51 UTC
[Requirements]
- Remove dependency on Moops.
- Lower Perl compatibility to 5.10.
[Stats & Dependency Changes]
- 15 files changed, 668 insertions(+), 547 deletions(-)
- (run req) + List::SomeUtils 0.53
- (run req) + List::Util 1.45
- (run req) + MooseX::AttributeShortcuts 0.028
- (run req) + namespace::autoclean 0.22
- (run req) ~ Moose 2.0000 --> 2.1803
- (run req) ~ MooseX::StrictConstructor (any) --> 0.19
- (run req) ~ Path::Tiny (any) --> 0.072
- (run req) ~ Type::Tiny 1.000000 --> 1.000005
- (run req) ~ Types::Path::Tiny (any) --> 0.005
- (run req) ~ perl 5.014000 --> 5.010000
- (run req) - List::AllUtils
- (run req) - Moops
- (test req) + IO::Handle (any)
- (test req) + IPC::Open3 (any)
"Cairo" : "1.000",
"Eponymous::Hash" : "0",
"List::SomeUtils" : "0.53",
"List::Util" : "1.45",
"Moose" : "2.1803",
"MooseX::AttributeShortcuts" : "0.028",
"MooseX::StrictConstructor" : "0.19",
"Path::Tiny" : "0.072",
"Type::Tiny" : "1.000005",
"Types::Path::Tiny" : "0.005",
"namespace::autoclean" : "0.22",
"perl" : "5.010000"
}
},
"test" : {
"recommends" : {
"CPAN::Meta" : "2.120900"
},
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
Cairo: '1.000'
Eponymous::Hash: '0'
List::SomeUtils: '0.53'
List::Util: '1.45'
Moose: '2.1803'
MooseX::AttributeShortcuts: '0.028'
MooseX::StrictConstructor: '0.19'
Path::Tiny: '0.072'
Type::Tiny: '1.000005'
Types::Path::Tiny: '0.005'
namespace::autoclean: '0.22'
perl: '5.010000'
resources:
bugtracker: https://github.com/Csson/p5-CairoX-Sweet/issues
homepage: https://metacpan.org/release/CairoX-Sweet
repository: https://github.com/Csson/p5-CairoX-Sweet.git
version: '0.0200'
x_Dist_Zilla:
perl:
version: '5.020001'
plugins:
Makefile.PL view on Meta::CPAN
"Cairo" => "1.000",
"Eponymous::Hash" => 0,
"List::SomeUtils" => "0.53",
"List::Util" => "1.45",
"Moose" => "2.1803",
"MooseX::AttributeShortcuts" => "0.028",
"MooseX::StrictConstructor" => "0.19",
"Path::Tiny" => "0.072",
"Type::Tiny" => "1.000005",
"Types::Path::Tiny" => "0.005",
"namespace::autoclean" => "0.22"
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::More" => "0.96",
"Test::Requires" => "0.08"
},
"VERSION" => "0.0200",
Cairo = 1.000
Eponymous::Hash = 0
List::SomeUtils = 0.53
List::Util = 1.45
Moose = 2.1803
MooseX::AttributeShortcuts = 0.028
MooseX::StrictConstructor = 0.19
Path::Tiny = 0.072
Type::Tiny = 1.000005
Types::Path::Tiny = 0.005
namespace::autoclean = 0.22
perl = 5.010000
[Prereqs / TestRequires]
Test::More = 0.96
Test::Requires = 0.08
; authordep Badge::Depot = 0.0103
; authordep Badge::Depot::Plugin::Coverage = 0
; authordep Badge::Depot::Plugin::Cpantesters = 0
; authordep Badge::Depot::Plugin::Kwalitee = 0
- Moose
- MooseX::AttributeShortcuts: 0.028
- MooseX::StrictConstructor
- List::Util
- List::SomeUtils: 0.53
- Eponymous::Hash
- Path::Tiny
- Type::Tiny
- Types::Path::Tiny
- Cairo: 1.000
- namespace::autoclean
test:
requires:
- Test::Requires: 0.08
plugins:
- +config: Author::CSSON
- +extend_plugin: Git::GatherDir
exclude_match: \.png
lib/CairoX/Sweet/Elk.pm view on Meta::CPAN
use warnings;
package CairoX::Sweet::Elk;
our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
# ABSTRACT: Internal Moose
our $VERSION = '0.0200';
use Moose();
use MooseX::AttributeShortcuts();
use namespace::autoclean();
use Moose::Exporter;
Moose::Exporter->setup_import_methods(also => ['Moose']);
sub init_meta {
my $class = shift;
my %params = @_;
my $for_class = $params{'for_class'};
Moose->init_meta(@_);
MooseX::AttributeShortcuts->init_meta(for_class => $for_class);
namespace::autoclean->import(-cleanee => $for_class);
}
1;
__END__
=pod
=encoding UTF-8
lib/Types/CairoX/Sweet.pm view on Meta::CPAN
CurveTo
LineTo
MoveTo
NumUpToOne
Path
Point
/;
use Type::Utils -all;
use List::Util qw/any/;
use List::SomeUtils qw/zip/;
use namespace::autoclean;
use Types::Standard -types;
#use Types::TypeTiny -types;
class_type CairoContext => { class => 'Cairo::Context' };
class_type CairoSurface => { class => 'Cairo::Surface' };
class_type Color => { class => 'CairoX::Sweet::Color' };
class_type CurveTo => { class => 'CairoX::Sweet::Core::CurveTo' };
class_type LineTo => { class => 'CairoX::Sweet::Core::LineTo' };
t/00-report-prereqs.dd view on Meta::CPAN
'Cairo' => '1.000',
'Eponymous::Hash' => '0',
'List::SomeUtils' => '0.53',
'List::Util' => '1.45',
'Moose' => '2.1803',
'MooseX::AttributeShortcuts' => '0.028',
'MooseX::StrictConstructor' => '0.19',
'Path::Tiny' => '0.072',
'Type::Tiny' => '1.000005',
'Types::Path::Tiny' => '0.005',
'namespace::autoclean' => '0.22',
'perl' => '5.010000'
}
},
'test' => {
'recommends' => {
'CPAN::Meta' => '2.120900'
},
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.751 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )