|
NAMEFile::HomeDir::PathClass - File::HomeDir returning Path::Class objectsVERSIONversion 1.112060SYNOPSISuse 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 DESCRIPTIONThis 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 modeAll 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:
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 modeOtherwise, 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 ALSOFind other relevant information in File::HomeDir and Path::Class.You can also look for information on this module at:
AUTHORJerome QuelinCOPYRIGHT AND LICENSEThis 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.
Visit the GSP FreeBSD Man Page Interface. |