App-HPGL2Cadsoft

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         }
      },
      "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",

META.yml  view on Meta::CPAN

license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  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

  "EXE_FILES" => [
    "bin/hpgl2cadsoft.pl"
  ],
  "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
  },

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',

t/01-basic.t  view on Meta::CPAN

#!/usr/bin/perl
#
# Copyright (C) 2014 by Lieven Hollevoet

# This test runs basic module tests

use Modern::Perl;
use Test::More;

BEGIN { use_ok 'App::HPGL2Cadsoft'; }
BEGIN { use_ok 'Test::Exception'; }
BEGIN { use_ok 'Test::Warn'; }
BEGIN { use_ok 'Grid::Coord'; }

require Test::Exception;
require Test::Warn;
require Grid::Coord;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.287 second using v1.00-cache-2.02-grep-82fe00e-cpan-1925d2aa809 )