libclass-load-perl 0.12-1 source package in Ubuntu

Changelog

libclass-load-perl (0.12-1) unstable; urgency=low

  * Imported Upstream version 0.12
  * debian/control: {Build-}Depends on libmodule-runtime-perl (>= 0.011)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  07 Nov 2011 10:03:55 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libclass-load-perl_0.12.orig.tar.gz 18.3 KiB d90c1574060ab5107316849416b27b1352ecac75a62d182675c0568b3d443c6a
libclass-load-perl_0.12-1.debian.tar.gz 2.1 KiB 377d54b063fe22c9f4158a31e2f4889028448ec3e9b234ed2d9c344ead4bc26e
libclass-load-perl_0.12-1.dsc 2.2 KiB 5430b74d9731c7313f54b0772825ca6c05b93c62bead45a53e545ff34494bc96

Available diffs

View changes file

Binary packages built by this source

libclass-load-perl: module for loading modules by name

 "require EXPR" only accepts Class/Name.pm style module names, not
 Class::Name. For that, Class::Load provides "load_class 'Class::Name'".
 .
 It's often useful to test whether a module can be loaded, instead of throwing
 an error when it's not available. For that, Class::Load provides
 "try_load_class 'Class::Name'".
 .
 Finally, sometimes it is important to know whether a particular class has
 been loaded. Asking %INC is an option, but that will miss inner packages and
 any class for which the filename does not correspond to the package name. For
 that, this module provides "is_class_loaded 'Class::Name'".