From: Todd Hepler Date: Fri, 14 Mar 2008 19:49:38 +0000 (+0000) Subject: some docs X-Git-Tag: 0_05~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=192bdd619f8b81b396ebc472910880e0d90347ff;hp=ac0539bfefb90a11a7564744796d69945925636d;p=gitmo%2FMooseX-Types-Path-Class.git some docs almost ready for 0.05 updated copyright year --- diff --git a/lib/MooseX/Types/Path/Class.pm b/lib/MooseX/Types/Path/Class.pm index 64b2265..753cf1a 100644 --- a/lib/MooseX/Types/Path/Class.pm +++ b/lib/MooseX/Types/Path/Class.pm @@ -3,7 +3,7 @@ package MooseX::Types::Path::Class; use warnings FATAL => 'all'; use strict; -our $VERSION = '0.04'; +our $VERSION = '0.05'; our $AUTHORITY = 'cpan:THEPLER'; use MooseX::Getopt; @@ -59,14 +59,14 @@ MooseX::Types::Path::Class - A Path::Class type library for Moose has 'dir' => ( is => 'ro', - isa => Dir, + isa => Dir, # or 'Path::Class::Dir' required => 1, coerce => 1, ); has 'file' => ( is => 'ro', - isa => File, + isa => File, # or 'Path::Class::File' required => 1, coerce => 1, ); @@ -112,8 +112,7 @@ L, L, L, L =head1 BUGS AND LIMITATIONS -All complex software has bugs lurking in it, and this module is -no exception. If you find a bug please either email the author, or add +If you find a bug please either email the author, or add the bug to cpan-RT L. @@ -124,7 +123,7 @@ Todd Hepler C<< >> =head1 LICENCE AND COPYRIGHT -Copyright (c) 2007, Todd Hepler C<< >>. All rights reserved. +Copyright (c) 2007-2008, Todd Hepler C<< >>. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L.