Show
Ignore:
Timestamp:
08/01/08 22:27:03 (5 years ago)
Author:
lieutar
Message:

added MANIFEST.SKIP

Location:
lang/perl/Data-Polymorph/trunk
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Data-Polymorph/trunk/MANIFEST

    r16020 r16957  
    11Changes 
     2inc/Module/AutoInstall.pm 
     3inc/Module/Install.pm 
     4inc/Module/Install/AutoInstall.pm 
     5inc/Module/Install/Base.pm 
     6inc/Module/Install/Can.pm 
     7inc/Module/Install/Fetch.pm 
     8inc/Module/Install/Include.pm 
     9inc/Module/Install/Makefile.pm 
     10inc/Module/Install/Metadata.pm 
     11inc/Module/Install/Win32.pm 
     12inc/Module/Install/WriteAll.pm 
     13lib/Data/Polymorph.pm 
     14Makefile.PL 
    215MANIFEST 
    3 Makefile.PL 
     16MANIFEST.SKIP 
     17META.yml 
    418README 
    5 lib/Data/Polymorph.pm 
    619t/00-load.t 
    7 t/pod-coverage.t 
    8 t/pod.t 
     20t/10-normal.t 
     21t/20-die.t 
  • lang/perl/Data-Polymorph/trunk/lib/Data/Polymorph.pm

    r16901 r16957  
    7070  $poly->apply($obj, foo => $bar ); # ... die 
    7171 
    72 If this value is true, the object uses "UNIVERSAL-can"  
     72If this value is true and the object uses C<UNIVERSAL::can> 
    7373when the method is not defined. 
    7474 
     
    9393  $poly = Data::Polymorph->new( runs_native => 1 );  
    9494 
    95 Constructs and returns a new object of this class. 
     95Constructs and returns a new instance of this class. 
    9696 
    9797=cut 
     
    181181Actually, I designed these types based on the man pages from  
    182182L<Moose::Util::TypeConstraints>. 
    183 Though they never relate with L<Moose>-types. 
    184 Because L<Moose> types are designed for constraint. But they are not. 
    185  
     183Because these were not designed for constraint, they never relate with  
     184L<Moose> types. 
    186185 
    187186=item C<is_type> 
     
    246245  }  ); 
    247246 
    248 Defines an external method of the given class which is applyable  
    249 by this object of this class. 
     247Defines an external method for a given class which can be  appliabled 
     248by the instance of this class. 
    250249 
    251250=item C<define>