Skip to content

yappo/p5-Module-Requires

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Module::Requires - Checks to see if the module can be loaded

SYNOPSIS

more simply

use Module::Requires 'Class::Trigger', 'Class::Accessor';
use Class::Trigger;
use Class::Accessor;

with version Checks

use Module::Requires
  'Class::Trigger' => 0.13,
  'Class::Accessor';
use Class::Trigger;
use Class::Accessor;

detailed check of version # It is more than 0.10 and is except 0.12. use Module::Requires 'Class::Trigger' => [ '>' => 0.10, '!=', 0.12 ], 'Class::Accessor'; use Class::Trigger; use Class::Accessor;

with autoloader

use Module::Requires -autoload,
  'Class::Trigger', 'Class::Accessor';

with autoloader and import params

use Module::Requires -autoload,
  'Class::Trigger' => { import => [qw/ foo bar baz /] },
  'Class::Accessor';

with autoloader and import params and version check

use Module::Requires -autoload,
  'Class::Trigger' => {
      import  => [qw/ foo bar baz /],
      version => [ '>' => 0.10, '!=', 0.12 ],
  },
  'Class::Accessor';

DESCRIPTION

Module::Requires is Checks to see if the module can be loaded.

required modules warns of not installed if Inside of Makefile.PL With feature When specifying require module.

When writing modules, such as plugin, required modules which runs short is displayed on a user.

AUTHOR

Kazuhiro Osawa <yappo <at> shibuya <döt> pl>

THANKS TO

nekokak, lestrrat

SEE ALSO

Test::Requires, idea by DBIx::Class::Storage::DBI::Replicated

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

POD ERRORS

Hey! The above document had some coding errors, which are explained below:

Around line 59:

Non-ASCII character seen before =encoding in '<döt>'. Assuming UTF-8

About

Perl Module of Module::Requires

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages