Query: mousex::types::path::class
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MouseX::Types::Path::Class(3pm) User Contributed Perl Documentation MouseX::Types::Path::Class(3pm)NAMEMouseX::Types::Path::Class - A Path::Class type library for MouseSYNOPSISCLASS TYPES package MyApp; use Mouse; use MouseX::Types::Path::Class; has 'dir' => ( is => 'ro', isa => 'Path::Class::Dir', required => 1, coerce => 1, ); has 'file' => ( is => 'ro', isa => 'Path::Class::File', required => 1, coerce => 1, ); CUSTOM TYPES package MyApp; use Mouse; use MouseX::Types::Path::Class qw(Dir File); has 'dir' => ( is => 'ro', isa => Dir, required => 1, coerce => 1, ); has 'file' => ( is => 'ro', isa => File, required => 1, coerce => 1, );DESCRIPTIONMouseX::Types::Path::Class creates common Mouse types, coercions and option specifications useful for dealing with Path::Class objects as Mouse attributes. Coercions (see Mouse::Util::TypeConstraints) are made from both "Str" and "ArrayRef" to both Path::Class::Dir and Path::Class::File objects. If you have MouseX::Getopt installed, the Getopt option type ("=s") will be added for both Path::Class::Dir and Path::Class::File.TYPESDir A Path::Class::Dir class type. Coerces from "Str" and "ArrayRef" via "new" in Path::Class::Dir. File A Path::Class::File class type. Coerces from "Str" and "ArrayRef" via "new" in Path::Class::File.AUTHORNAKAGAWA Masaki <masaki@cpan.org>THANKS TO"AUTHOR" in MooseX::Types::Path::ClassLICENSEThis library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.SEE ALSOMouse, MouseX::Types, Path::Class, MooseX::Types::Path::Class perl v5.14.2 2012-04-01 MouseX::Types::Path::Class(3pm)
Similar Topics in the Unix Linux Community |
---|
File and Dir permissions |
Using Secure Path |
Creating a File system with required permissions for all DIR's created in |
How to get the current directory Path? |
Replace file name from Other File |