Changes between Version 14 and Version 15 of PadrePluginCookbookRecipie05
- Timestamp:
- 08/08/11 21:20:53 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PadrePluginCookbookRecipie05
v14 v15 318 318 319 319 * Plugin builds so it can be install in local repository 320 * We recommend using {{{Module::Include}}}, and suggest following in Makefile.PL 320 * We recommend using {{{Module::Include}}} at present, and suggest following in Makefile.PL 321 * The use of {{{Module::Include}}} also enables the use of our plugin via perl dev -a 322 * Don't forget to include all Perl modules you require from CPAN 321 323 {{{#!perl 322 324 use inc::Module::Install 1.01; 323 325 324 # Padre version should match that of the latest, used padre_interfaces. 326 # Define metadata 327 abstract 'Cookbook contains recipes to assist you in makeing your own Padre::Plugin'; 328 329 all_from 'lib/Padre/Plugin/Cookbook.pm'; 330 # Padre version should match that of the latest, used in padre_interfaces. 325 331 requires 'Padre' => '0.86'; 332 333 # Optional if you have used the share directory 334 install_share 326 335 }}} 327 336
