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

Changelog

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

  * Initial release (closes: #604943).
 -- Ubuntu Archive Auto-Sync <email address hidden>   Wed,  04 May 2011 09:36:09 +0000

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libclass-load-perl_0.06.orig.tar.gz 21.4 KiB 1ab2862b69dabe4f523d2a924025c9c3c78572f96b55376f72798fa4c24dfb0b
libclass-load-perl_0.06-1.debian.tar.gz 1.8 KiB cce2c111590ddaec61ae4a851c9adec1ca84ef289b854b7111c196ddda6e0d37
libclass-load-perl_0.06-1.dsc 2.0 KiB 9e1d8356a570b98f615153cc39fb9ca512a6f44fbe1720199e3e77ae41b7c02c

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'".