Algorithm-Shape-RandomTree

 view release on metacpan or  search on metacpan

Build.PL  view on Meta::CPAN

my $builder = Module::Build->new(
    module_name         => 'Algorithm::Shape::RandomTree',
    license             => 'perl',
    dist_author         => q{Tamir Lousky <tlousky@cpan.org>},
    dist_version_from   => 'lib/Algorithm/Shape/RandomTree.pm',
    build_requires      => {
        'Test::More' => 0,
    },
    requires => {
        'Moose'                => 0,
        'namespace::autoclean' => 0,
    },
    add_to_cleanup      => [ 'Algorithm-Shape-RandomTree-*' ],
    create_makefile_pl  => 'traditional',
    create_readme       => 1,
    create_license      => 1,
);

$builder->create_build_script();

META.yml  view on Meta::CPAN

provides:
  Algorithm::Shape::RandomTree:
    file: lib/Algorithm/Shape/RandomTree.pm
    version: 0.01
  Algorithm::Shape::RandomTree::Branch:
    file: lib/Algorithm/Shape/RandomTree/Branch.pm
  Algorithm::Shape::RandomTree::Branch::Point:
    file: lib/Algorithm/Shape/RandomTree/Branch/Point.pm
requires:
  Moose: 0
  namespace::autoclean: 0
resources:
  license: http://dev.perl.org/licenses/
version: 0.01

Makefile.PL  view on Meta::CPAN

# Note: this file was auto-generated by Module::Build::Compat version 0.3607
use ExtUtils::MakeMaker;
WriteMakefile
(
          'NAME' => 'Algorithm::Shape::RandomTree',
          'VERSION_FROM' => 'lib/Algorithm/Shape/RandomTree.pm',
          'PREREQ_PM' => {
                           'Moose' => 0,
                           'Test::More' => 0,
                           'namespace::autoclean' => 0
                         },
          'INSTALLDIRS' => 'site',
          'EXE_FILES' => [],
          'PL_FILES' => {}
        )
;

lib/Algorithm/Shape/RandomTree.pm  view on Meta::CPAN

package Algorithm::Shape::RandomTree;

use Moose;
use namespace::autoclean;

use Algorithm::Shape::RandomTree::Branch;
use Algorithm::Shape::RandomTree::Branch::Point;

our $VERSION = '0.01';

## Attributes ##

has 'stem_length'   => ( is => 'ro', isa => 'Int' );   # Length of stem
has 'tree_width'    => ( is => 'ro', isa => 'Int' );   # Width of stem

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

( run in 2.909 seconds using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )