Class-Inspector
view release on metacpan or search on metacpan
current = Graham Ollis <plicease@cpan.org>
original = Adam Kennedy <adamk@cpan.org>
contributor = Tom Wyant
contributor = Steffen Müller
contributor = Kivanc Yazan (KYZN)
[MetaProvides::Package]
[PruneFiles]
filename = xt/release/changes.t
; some unicode issue needs to be resolved:
filename = xt/author/pod_spelling_system.t
lib/Class/Inspector.pm view on Meta::CPAN
# lot of things in here that aren't strict refs friendly.
use strict qw{vars subs};
use warnings;
use File::Spec ();
# ABSTRACT: Get information about a class and its structure
our $VERSION = '1.36'; # VERSION
# If Unicode is available, enable it so that the
# pattern matches below match unicode method names.
# We can safely ignore any failure here.
BEGIN {
local $@;
eval {
require utf8;
utf8->import;
};
}
# Predefine some regexs
( run in 0.785 second using v1.01-cache-2.11-cpan-88abd93f124 )