NAME
File::HomeDir::PathClass - File::HomeDir returning Path::Class objects
VERSION
version 1.112060
SYNOPSIS
use File::HomeDir::PathClass '-all';
my $home = home();
# $home is a Path::Class object now
# - or -
use File::HomeDir::PathClass;
my $home = File::HomeDir::PathClass->home;
# $home is a Path::Class object now
DESCRIPTION
This module is just a wrapper around File::HomeDir methods, transforming their return value to Path::Class objects. This allows for easier usage of the value.
Refer to File::HomeDir#METHODS for a list of which functions are supported.
File::HomeDir::PathClass
supports both original File::HomeDir interfaces.
Procedural mode
All functions are exportable. Nothing is exported by default, though. One has to list which function(s) she wants to import.
Some groups are defined for your convenience:
all
- all available functions.
Note that this module is exporting subs via Sub::Exporter, so groups are available either as :group
or -group
. One can also play any trick supported by Sub::Exporter, check its documentation for further information.
Class method mode
Otherwise, functions are available as class methods, called as:
File::HomeDir::PathClass->method();
In this case, one doesn't need to import anything during module use-age.
SEE ALSO
Find other relevant information in File::HomeDir and Path::Class.
You can also look for information on this module at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Open bugs
http://rt.cpan.org/NoAuth/Bugs.html?Dist=File-HomeDir-PathClass
Git repository
AUTHOR
Jerome Quelin
COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.