Changeset 9375 for lib

Show
Ignore:
Timestamp:
03/10/06 08:23:11 (3 years ago)
Author:
gaal
Message:

* Pugs::Doc::* - minor cleanups

Location:
lib/Pugs/Doc
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lib/Pugs/Doc/Hack.pod

    r9366 r9375  
    11=head1 NAME 
    22 
    3 pugs::hack - How to hack on Pugs 
     3Pugs::Doc::Hack - How to hack on Pugs 
    44 
    55=head1 SYNOPSIS 
     
    5959    |  |-- patches             Debian specific patches 
    6060    |  |   |-- 00list          List of patches 
    61     |  |   `-- 10smoker.dpatch Patch to djust smoker.yml path 
     61    |  |   `-- 10smoker.dpatch Patch to adjust smoker.yml path 
    6262    |  |-- pugs-doc.dirs       Directories to be created in the pugs-doc package 
    6363    |  |-- pugs-modules.dirs   Directories to be created in the pugs-modules 
     
    345345=head2 Testing 
    346346 
    347 See L<pugs::run> and F<t/README>.  If you wish to use the C<prove> utility 
     347See L<Pugs::Doc::Run> and F<t/README>.  If you wish to use the C<prove> utility 
    348348to run individual tests or test directories, you will need to set at least 
    349349the following environment variables first: 
     
    352352    $ export PERL6LIB=blib6/lib 
    353353 
    354 You can also just say C<./pugs -Iblib6/lib t/.../mumble.t>. 
     354You can also just say C<./pugs -Iblib6/lib t/your/test/file.t>. 
    355355 
    356356=head3 Regex testing 
     
    395395=head1 SEE ALSO 
    396396 
    397 L<Perl6::Pugs>, L<pugs::run> 
     397L<Perl6::Pugs>, L<Pugs::Doc::Run> 
  • lib/Pugs/Doc/Run.pod

    r9366 r9375  
    11=head1 NAME 
    22 
    3 pugs::run - How to run Pugs 
     3Pugs::Doc::Run - How to run Pugs 
    44 
    55=head1 SYNOPSYS 
     
    110110displays short configuration information for C<I<item>>. 
    111111 
    112     $ pugs -V:pugs_version 
     112    $ pugs -V:pugs_versnum 
    113113    pugs_versnum: 6.2.6 
    114114 
     
    137137Perl 5 test system should be instructed to use your copy of Pugs. If you use 
    138138C<make test> or C<make smoke>, you should not need to set this manually; but if 
    139 you want to use C<prove>, set it to C<./pugs> (just C<pugs.exe> on Windows). 
     139you want to use C<prove>, set it to C<./pugs> (or C<pugs.exe> on Windows). 
    140140 
    141141=item C<PERL6LIB> 
     
    206206    rsync -avz smoke.html perlcabal.org:public_html 
    207207 
     208You may alternatively set the C<smoke_upload> option in C<config.yml> to 
     209have smokes uploaded to the public smokeserver automatically. 
     210 
    208211=item C<PUGS_TESTS_CONCURRENT> [BUILD] 
    209212 
     
    229232=head1 SEE ALSO 
    230233 
    231 L<Perl6::Pugs>, L<pugs::hack> 
     234L<Perl6::Pugs>, L<Pugs::Doc::Hack>