Module::New::License - Module::New::License documentation


Module-New documentation  | view source Contained in the Module-New distribution.

Index


NAME

Top

Module::New::License

SYNOPSIS

Top

  use Module::New::License;
  Module::New::License->render('perl');

DESCRIPTION

Top

This is used internally to render a license text. At the moment, only perl license is supported.

METHOD

Top

render

takes a license name and render the text.

CREATE OTHER LICENSES

Top

  package Your::Module::New::License;
  use Module::New::License 'base';

  license 'license name' => content { my @args = @_; return <<"EOT";
  blah blah blah...
  EOT
  };

With a base flag, domain specific license and content functions will be installed to define custom licenses.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki at cpan.org>

COPYRIGHT AND LICENSE

Top


Module-New documentation  | view source Contained in the Module-New distribution.