Changes between Version 70 and Version 71 of Plugins
- Timestamp:
- 07/30/11 09:19:30 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Plugins
v70 v71 102 102 103 103 * Plugin Loads 104 * Plugin Manager can load plugin (you will need to have a version in your Padre::Plugin::Name.pm). 104 * Plugin Manager can load plugin 105 * For compliance you will need to have a version in your Padre::Plugin::Name.pm. 106 {{{#!perl 107 our $VERSION = '0.01'; 108 }}} 105 109 * Plugin builds so it can be install in local repository 106 * {{{Module::Include}}} we recommend using,following in Makefile.PL110 * We recommend using {{{Module::Include}}}, and suggest following in Makefile.PL 107 111 {{{#!perl 108 112 use inc::Module::Install 1.01; 109 113 }}} 110 114 * Plugin can be loaded and unloaded repeatedly 115 * Don't forget to include the following sub. 116 {{{#!perl 117 sub plugin_disable { 118 .... 119 } 120 }}} 111 121 112 122 * POD
