X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2Foose.pm;h=94b2d32b331fb798c58cb0ab5e3eecfc82570f60;hb=405fb8858b07b8a97ce8fa5cf0dc9fbdf1ef4af1;hp=0699c72264a39bb138a44a47ace1e4688c16fc18;hpb=6fdf3dfaab2a36f6a73204759df23782f0b1940f;p=gitmo%2FMoose.git diff --git a/lib/oose.pm b/lib/oose.pm index 0699c72..94b2d32 100644 --- a/lib/oose.pm +++ b/lib/oose.pm @@ -5,7 +5,7 @@ use warnings; use Class::MOP; -our $VERSION = '0.88'; +our $VERSION = '0.93'; $VERSION = eval $VERSION; our $AUTHORITY = 'cpan:STEVAN'; @@ -18,7 +18,7 @@ BEGIN { Class::MOP::load_class($package); } } - use Filter::Simple sub { s/^/package $package;\nuse Moose;\n/; } + use Filter::Simple sub { s/^/package $package;\nuse Moose;use Moose::Util::TypeConstraints;\n/; } } 1; @@ -41,6 +41,9 @@ oose - syntactic sugar to make Moose one-liners easier # debugging/introspection easier perl -Moose=+My::Class -e 'print join ", " => __PACKAGE__->meta->get_method_list' + # also loads Moose::Util::TypeConstraints to allow subtypes etc + perl -Moose=Person -e'subtype q[Age] => as q[Int] => where { $_ > 0 && $_ < 78 }; has => age ( isa => q[ValidAge], is => q[ro]); Person->new(age => 90)' + =head1 DESCRIPTION oose.pm is a simple source filter that adds C @@ -75,7 +78,7 @@ to cpan-RT. =head1 AUTHOR -Chris Prather C<< >> +Chris Prather C<< >> =head1 COPYRIGHT AND LICENSE