Changes between Version 19 and Version 20 of PadrePluginCookbookRecipie05
- Timestamp:
- 08/08/11 21:51:58 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PadrePluginCookbookRecipie05
v19 v20 319 319 == Build 320 320 321 * Plug in builds so it can be install in local repository322 * We recommend using {{{Module::Include}}} at present, and suggest following in Makefile.PL323 * The use of {{{Module::Include}}} also enables the use of our plug in via perl dev -a321 * Plug-in builds so it can be install in local repository 322 * We recommend using {{{Module::Include}}} at present, and suggest following in {{{Makefile.PL}}} 323 * The use of {{{Module::Include}}} also enables the use of our plug-in via {{{perl dev -a}}} 324 324 * Don't forget to include all the Perl modules, you require from CPAN 325 325 326 {{{#!perl 326 327 use inc::Module::Install 1.01; … … 331 332 # All from our plugin 332 333 all_from 'lib/Padre/Plugin/Cookbook.pm'; 334 requires_from 'lib/Padre/Plugin/Cookbook/Recipe01/Main.pm'; 335 requires_from 'lib/Padre/Plugin/Cookbook/Recipe02/Main.pm'; 336 requires_from 'lib/Padre/Plugin/Cookbook/Recipe03/Main.pm'; 337 requires_from 'lib/Padre/Plugin/Cookbook/Recipe04/Main.pm'; 333 338 334 339 # Padre version, should match that of the latest version, used in padre_interfaces, 335 requires 'Padre' => '0.86'; 340 requires 'Padre' => '0.86'; 341 342 # required modules from CPAN 343 requires 'Moose' => '2.00'; 344 requires 'namespace::autoclean' => '0.12'; 345 requires 'Data::Printer' => '0.19'; 336 346 337 347 # Optional if you have used the share directory
