Changeset 2266
- Timestamp:
- 12/30/08 00:42:20 (3 years ago)
- Location:
- trunk/Padre-Plugin-HTMLExport
- Files:
-
- 2 deleted
- 4 edited
-
Build.PL (deleted)
-
Changes (modified) (1 diff)
-
MANIFEST (deleted)
-
Makefile.PL (modified) (1 diff)
-
README (modified) (1 diff)
-
lib/Padre/Plugin/HTMLExport.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Padre-Plugin-HTMLExport/Changes
r2237 r2266 1 1 Revision history for Padre-Plugin-HTMLExport 2 2 3 0.02 2008.12. 293 0.02 2008.12.30 4 4 Fixed it to work with Padre 0.22 5 Moved to Module::Install 5 6 6 7 0.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 ; 1 use strict; 2 use inc::Module::Install; 3 4 name 'Padre-Plugin-HTMLExport'; 5 license 'perl'; 6 author 'Gabor Szabo'; 7 all_from 'lib/Padre/Plugin/HTMLExport.pm'; 8 9 requires 'Padre' => '0.22'; 10 requires 'Syntax::Highlight::Engine::Kate' => '0', 11 12 test_requires 'Test::More' => '0.47'; 13 test_requires 'Test::Exception' => '0.27'; 14 test_requires 'Test::NoWarnings' => '0.084'; 15 test_requires 'Test::NeedsDisplay' => '1.05'; 16 no_index 'directory' => [ qw{ t xt eg share inc privinc} ]; 17 18 homepage 'http://padre.perlide.org/'; 19 bugtracker 'http://padre.perlide.org/'; 20 repository 'http://svn.perlide.org/padre/trunk/Padre-Plugin-HTMLExport'; 21 22 WriteAll; -
trunk/Padre-Plugin-HTMLExport/README
r2238 r2266 13 13 make install 14 14 15 SUPPORT AND DOCUMENTATION16 17 After installing, you can find documentation for this module with the18 perldoc command.19 20 perldoc Padre::Plugin::HTMLExport21 22 You can also look for information at:23 24 RT, CPAN's request tracker25 http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-HTMLExport26 27 AnnoCPAN, Annotated CPAN documentation28 http://annocpan.org/dist/Padre-Plugin-HTMLExport29 30 CPAN Ratings31 http://cpanratings.perl.org/d/Padre-Plugin-HTMLExport32 33 Search CPAN34 http://search.cpan.org/dist/Padre-Plugin-HTMLExport/35 36 37 15 COPYRIGHT AND LICENCE 38 16 -
trunk/Padre-Plugin-HTMLExport/lib/Padre/Plugin/HTMLExport.pm
r2237 r2266 1 1 package Padre::Plugin::HTMLExport; 2 2 3 use 5.006; 3 4 use warnings; 4 5 use strict; 5 6 6 our $VERSION = '0.0 1';7 our $VERSION = '0.02'; 7 8 8 9 use File::Basename ();
Note: See TracChangeset
for help on using the changeset viewer.
