NAME
MooseX::Templated::Util - helper methods
SYNOPSIS
use MooseX::Templated::Util qw/ where_pm /;
METHODS
where_pm( 'ClassName' )
Returns the file path information for a given class path
$abs_file = where_pm( 'Some::Module' );
# /path/to/Some/Module.pm
($abs_file, $inc_path, $require) = where_pm( 'Some::Module' );
# /path/to/Some/Module.pm
# /path/to
# Some/Module.pm