Changeset 2266


Ignore:
Timestamp:
12/30/08 00:42:20 (3 years ago)
Author:
azawawi
Message:

[Padre-Plugin-HTMLExport] Released 0.02 to CPAN
[Padre-Plugin-HTMLExport] Moved to Module::Install

Location:
trunk/Padre-Plugin-HTMLExport
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre-Plugin-HTMLExport/Changes

    r2237 r2266  
    11Revision history for Padre-Plugin-HTMLExport 
    22 
    3 0.02    2008.12.29 
     30.02    2008.12.30 
    44        Fixed it to work with Padre 0.22 
     5        Moved to Module::Install 
    56 
    670.01    2008.11.28 
  • trunk/Padre-Plugin-HTMLExport/Makefile.PL

    r2237 r2266  
    1 # Note: this file was auto-generated by Module::Build::Compat version 0.30 
    2 use ExtUtils::MakeMaker; 
    3 WriteMakefile 
    4 ( 
    5           'NAME' => 'Padre::Plugin::HTMLExport', 
    6           'VERSION_FROM' => 'lib/Padre/Plugin/HTMLExport.pm', 
    7           'PREREQ_PM' => { 
    8                            'Padre' => '0.22', 
    9                            'Syntax::Highlight::Engine::Kate' => '0', 
    10                            'Test::More' => '0' 
    11                          }, 
    12           'INSTALLDIRS' => 'site', 
    13           'EXE_FILES' => [], 
    14           'PL_FILES' => {} 
    15         ) 
    16 ; 
     1use strict; 
     2use inc::Module::Install; 
     3 
     4name           'Padre-Plugin-HTMLExport'; 
     5license        'perl'; 
     6author         'Gabor Szabo'; 
     7all_from       'lib/Padre/Plugin/HTMLExport.pm'; 
     8 
     9requires       'Padre'                    => '0.22'; 
     10requires       'Syntax::Highlight::Engine::Kate' => '0', 
     11 
     12test_requires  'Test::More'              => '0.47'; 
     13test_requires  'Test::Exception'         => '0.27'; 
     14test_requires  'Test::NoWarnings'        => '0.084'; 
     15test_requires  'Test::NeedsDisplay'      => '1.05'; 
     16no_index       'directory' => [ qw{ t xt eg share inc privinc} ]; 
     17 
     18homepage       'http://padre.perlide.org/'; 
     19bugtracker     'http://padre.perlide.org/'; 
     20repository     'http://svn.perlide.org/padre/trunk/Padre-Plugin-HTMLExport'; 
     21 
     22WriteAll; 
  • trunk/Padre-Plugin-HTMLExport/README

    r2238 r2266  
    1313    make install 
    1414 
    15 SUPPORT AND DOCUMENTATION 
    16  
    17 After installing, you can find documentation for this module with the 
    18 perldoc command. 
    19  
    20     perldoc Padre::Plugin::HTMLExport 
    21  
    22 You can also look for information at: 
    23  
    24     RT, CPAN's request tracker 
    25         http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-HTMLExport 
    26  
    27     AnnoCPAN, Annotated CPAN documentation 
    28         http://annocpan.org/dist/Padre-Plugin-HTMLExport 
    29  
    30     CPAN Ratings 
    31         http://cpanratings.perl.org/d/Padre-Plugin-HTMLExport 
    32  
    33     Search CPAN 
    34         http://search.cpan.org/dist/Padre-Plugin-HTMLExport/ 
    35  
    36  
    3715COPYRIGHT AND LICENCE 
    3816 
  • trunk/Padre-Plugin-HTMLExport/lib/Padre/Plugin/HTMLExport.pm

    r2237 r2266  
    11package Padre::Plugin::HTMLExport; 
    22 
     3use 5.006; 
    34use warnings; 
    45use strict; 
    56 
    6 our $VERSION = '0.01'; 
     7our $VERSION = '0.02'; 
    78 
    89use File::Basename (); 
Note: See TracChangeset for help on using the changeset viewer.