App-HPGL2Cadsoft
view release on metacpan or search on metacpan
},
"runtime" : {
"requires" : {
"Carp" : "0",
"Getopt::Long" : "0",
"Grid::Coord" : "0",
"IO::File" : "0",
"Modern::Perl" : "0",
"Moose" : "0",
"Pod::Usage" : "0",
"namespace::autoclean" : "0",
"strict" : "0"
}
},
"test" : {
"requires" : {
"Test::Exception" : "0",
"Test::More" : "0",
"Test::Warn" : "0"
}
}
version: 1.4
name: App-HPGL2Cadsoft
requires:
Carp: 0
Getopt::Long: 0
Grid::Coord: 0
IO::File: 0
Modern::Perl: 0
Moose: 0
Pod::Usage: 0
namespace::autoclean: 0
strict: 0
resources:
bugtracker: https://github.com/hollie/app-hpgl2cadsoft-perl/issues
repository: git://github.com/hollie/app-hpgl2cadsoft-perl.git
version: 0.01
Makefile.PL view on Meta::CPAN
"LICENSE" => "perl",
"NAME" => "App::HPGL2Cadsoft",
"PREREQ_PM" => {
"Carp" => 0,
"Getopt::Long" => 0,
"Grid::Coord" => 0,
"IO::File" => 0,
"Modern::Perl" => 0,
"Moose" => 0,
"Pod::Usage" => 0,
"namespace::autoclean" => 0,
"strict" => 0
},
"TEST_REQUIRES" => {
"Test::Exception" => 0,
"Test::More" => 0,
"Test::Warn" => 0
},
"VERSION" => "0.01",
"test" => {
"TESTS" => "t/*.t"
Makefile.PL view on Meta::CPAN
"Carp" => 0,
"Getopt::Long" => 0,
"Grid::Coord" => 0,
"IO::File" => 0,
"Modern::Perl" => 0,
"Moose" => 0,
"Pod::Usage" => 0,
"Test::Exception" => 0,
"Test::More" => 0,
"Test::Warn" => 0,
"namespace::autoclean" => 0,
"strict" => 0
);
unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}
lib/App/HPGL2Cadsoft.pm view on Meta::CPAN
use strict
; # Keep Perl::Critic happy, althoug this is covered my the Modern::Perl too...
package App::HPGL2Cadsoft;
$App::HPGL2Cadsoft::VERSION = '0.01';
use Modern::Perl;
use Moose;
use IO::File;
use Grid::Coord;
use namespace::autoclean;
use Carp;
use Carp qw/croak carp/;
has scaling_factor => (
is => 'ro',
isa => 'Num',
default => 342.3151,
);
( run in 0.250 second using v1.01-cache-2.11-cpan-a5abf4f5562 )