Changeset 250

Show
Ignore:
Timestamp:
05/15/07 17:54:04 (2 years ago)
Author:
ingy
Message:
 r4330@skinny-2:  ingy | 2007-04-16 00:54:20 -0700
 Release 0.11
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/ingy/Document-Tools/Changes

    r231 r250  
     1--- 
     2version: 0.11 
     3date:    Sun Apr 15 23:25:12 CST 2007 
     4changes: Small changes 
     5--- 
    16version: 0.10 
    27date:    Sat Apr  7 13:26:50 JST 2007 
  • trunk/src/ingy/Document-Tools/MANIFEST

    r231 r250  
    66inc/Module/Install/Makefile.pm 
    77inc/Module/Install/Metadata.pm 
     8inc/Module/Install/Perldoc.pm 
    89inc/Module/Install/Win32.pm 
    910inc/Module/Install/WriteAll.pm 
  • trunk/src/ingy/Document-Tools/Makefile.PL

    r231 r250  
    55 
    66requires    perl => '5.6.1'; 
     7perldoc; 
    78 
    89WriteAll; 
  • trunk/src/ingy/Document-Tools/lib/Document/Parser.pm

    r243 r250  
    2122121; 
    213213 
     214=for perldoc 
     215This POD generated by Perldoc-0.21. 
     216DO NOT EDIT. Your changes will be lost. 
     217 
     218=encoding utf8 
     219 
    214220=head1 NAME 
    215221 
     
    229235=head1 DESCRIPTION 
    230236 
    231 Document::Parser is a base class that you can use to easily generate a parse 
    232 for text document markups (like Wiki or POD markups). 
     237Document::Parser is a base class that you can use to easily generate a 
     238parser for text document markups (like Wiki or POD markups). 
    233239 
    234240See this parser as an example: 
     
    242248=head1 AUTHOR 
    243249 
    244 Ingy döt Net <ingy@cpan.org> 
     250Ingy döt Net 
    245251 
    246252=head1 COPYRIGHT 
     
    252258 
    253259See http://www.perl.com/perl/misc/Artistic.html 
     260 
     261=cut 
  • trunk/src/ingy/Document-Tools/lib/Document/Tools.pm

    r231 r250  
    33use strict; 
    44use warnings; 
    5 our $VERSION = '0.10'; 
     5our $VERSION = '0.11'; 
    66 
    771;