Changeset 5532


Ignore:
Timestamp:
06/24/09 14:13:20 (3 years ago)
Author:
mgrimes
Message:

Updated pod and PPIx::EditorTools? to prepare for release

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/PPIx-EditorTools

    • Property svn:ignore set to
      .releaserc
      ChangeLog
      Makefile.PL
      Makefile
      _build
      blib
      Build
      PPIx-EditorTools-*
  • trunk/PPIx-EditorTools/MANIFEST

    r5531 r5532  
    88lib/PPIx/EditorTools/RenamePackageFromPath.pm 
    99lib/PPIx/EditorTools/RenameVariable.pm 
    10 lib/PPIx/EditorTools/UpdateCopyright.pm 
    1110MANIFEST            This list of files 
    1211META.yml 
     
    2019t/10-renamevariable.t 
    2120TODO 
     21Makefile.PL 
  • trunk/PPIx-EditorTools/META.yml

    r5531 r5532  
    11--- 
    2 name: App-LexicalVarReplace 
    3 version: 0.1 
     2name: PPIx-EditorTools 
     3version: 0.03 
    44author: 
    5   - 'Mark Grimes, E<lt>mgrimes@cpan.orgE<gt>' 
    6 abstract: Lexically replace a variable name in Perl code 
     5  - |- 
     6    Steffen Mueller C<smueller@cpan.org>. 
     7    Repackaged by Mark Grimes C<mgrimes@cpan.org>. 
     8abstract: Utility methods and base class for manipulating Perl via PPI 
    79license: perl 
    810resources: 
    911  license: http://dev.perl.org/licenses/ 
    1012requires: 
    11   MooseX::Declare: 0 
     13  Class::XSAccessor: 0 
    1214  PPI: 0 
    13   Padre::PPI: 0.05 
    1415  perl: 5.010 
    1516build_requires: 
    1617  Test::Differences: 0 
    1718provides: 
    18   App::LexicalVarReplace::Vim: 
    19     file: lib/App/LexicalVarReplace/Vim.pm 
     19  PPIx::EditorTools: 
     20    file: lib/PPIx/EditorTools.pm 
     21    version: 0.03 
     22  PPIx::EditorTools::FindUnmatchedBrace: 
     23    file: lib/PPIx/EditorTools/FindUnmatchedBrace.pm 
     24    version: 0.02 
     25  PPIx::EditorTools::FindVariableDeclaration: 
     26    file: lib/PPIx/EditorTools/FindVariableDeclaration.pm 
     27    version: 0.02 
     28  PPIx::EditorTools::IntroduceTemporaryVariable: 
     29    file: lib/PPIx/EditorTools/IntroduceTemporaryVariable.pm 
     30    version: 0.02 
     31  PPIx::EditorTools::RenamePackage: 
     32    file: lib/PPIx/EditorTools/RenamePackage.pm 
     33    version: 0.02 
     34  PPIx::EditorTools::RenamePackageFromPath: 
     35    file: lib/PPIx/EditorTools/RenamePackageFromPath.pm 
     36    version: 0.02 
     37  PPIx::EditorTools::RenameVariable: 
     38    file: lib/PPIx/EditorTools/RenameVariable.pm 
     39    version: 0.02 
    2040generated_by: Module::Build version 0.32 
    2141meta-spec: 
  • trunk/PPIx-EditorTools/README

    r5531 r5532  
    11NAME 
    2     App::LexicalVarReplace - Lexically replace a variable name in Perl code 
     2    PPIx::EditorTools - Utility methods and base class for manipulating Perl 
     3    via PPI 
    34 
    45SYNOPSIS 
    5         print App::LexicalVarReplace->new( code => $doc_as_str )->replace_var( 
    6             column      => $column, 
    7             line        => $line, 
    8             replacement => $replacement, 
    9         ); 
     6        See PPIx::EditorTools::*  
    107 
    118DESCRIPTION 
    12     This module will lexically replace a variable name. The code is nearly 
    13     100% ripped from Padre::Task::PPI::LexicalReplaceVariable. 
     9    Base class and utility methods for manipulating Perl via PPI. Pulled out 
     10    from the `Padre::Task::PPI' code. 
     11 
     12METHODS 
     13    new() 
     14        Constructor. Generally shouldn't be called with any arguments. 
    1415 
    1516SEE ALSO 
    16     App::LexicalVarReplace::Vim, Padre, and PPI. 
     17    `PPIx::EditorTools::*', Padre, App::EditorTools, Padre, and PPI. 
    1718 
    1819AUTHOR 
    19     Mark Grimes, <mgrimes@cpan.org> 
     20    Steffen Mueller `smueller@cpan.org'. Repackaged by Mark Grimes 
     21    `mgrimes@cpan.org'. 
    2022 
    2123COPYRIGHT AND LICENSE 
    22     Copyright (C) 2009 by Mark Grimes 
     24    Copyright 2008-2009 The Padre development team as listed in Padre.pm. 
    2325 
    24     This library is free software; you can redistribute it and/or modify it 
    25     under the same terms as Perl itself, either Perl version 5.8.2 or, at 
    26     your option, any later version of Perl 5 you may have available. 
     26    This program is free software; you can redistribute it and/or modify it 
     27    under the same terms as Perl 5 itself. 
    2728 
  • trunk/PPIx-EditorTools/lib/PPIx/EditorTools.pm

    r5531 r5532  
    1212use PPIx::EditorTools::ReturnObject; 
    1313 
    14 our $VERSION = 0.02; 
     14our $VERSION = 0.03; 
     15 
     16=pod 
     17 
     18=head1 NAME 
     19 
     20PPIx::EditorTools - Utility methods and base class for manipulating Perl via PPI 
     21 
     22=head1 SYNOPSIS 
     23 
     24    See PPIx::EditorTools::*  
     25 
     26=head1 DESCRIPTION 
     27 
     28Base class and utility methods for manipulating Perl via PPI. Pulled out from 
     29the C<Padre::Task::PPI> code. 
     30 
     31=head1 METHODS 
     32 
     33=over 4 
     34 
     35=item new() 
     36 
     37Constructor. Generally shouldn't be called with any arguments. 
     38 
     39=back 
     40 
     41=cut 
    1542 
    1643# Used by all the PPIx::EditorTools::* modules 
     
    2833101; 
    284311 
     312__END__ 
     313 
     314=head1 SEE ALSO 
     315 
     316C<PPIx::EditorTools::*>, L<Padre>, L<App::EditorTools>, L<Padre>, and L<PPI>. 
     317 
     318=head1 AUTHOR 
     319 
     320Steffen Mueller C<smueller@cpan.org>. 
     321Repackaged by Mark Grimes C<mgrimes@cpan.org>. 
     322 
     323=head1 COPYRIGHT AND LICENSE 
     324 
     325Copyright 2008-2009 The Padre development team as listed in Padre.pm. 
     326 
     327This program is free software; you can redistribute it and/or 
     328modify it under the same terms as Perl 5 itself. 
     329 
     330=cut 
     331 
    285332# Copyright 2008-2009 The Padre development team as listed in Padre.pm. 
    286333# LICENSE 
  • trunk/Padre/lib/Padre.pm

    r5120 r5532  
    11021102Steffen MÃŒller (TSEE) E<lt>smueller@cpan.orgE<gt> 
    11031103 
     1104Mark Grimes E<lt>mgrimes@cpan.orgE<gt> 
     1105 
    11041106=head2 Translators 
    11051107 
Note: See TracChangeset for help on using the changeset viewer.