| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 
 | 
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
  DISTNAME  => 'MooseX-Meta-TypeConstraint-ForceCoercion',
  NAME      => 'MooseX::Meta::TypeConstraint::ForceCoercion',
  AUTHOR    => 'Florian\ Ragwitz\ \<rafl\@debian\.org\>',
  ABSTRACT  => 'Force coercion when validating type constraints',
  VERSION   => '0.01',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "namespace::autoclean" => '0',
    "Moose" => '0',
  },
);
 |