logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Specio::Library::Path::Tiny - Path::Tiny types and coercions for Specio

Author

       Dave Rolsky <autarch@urth.org>

Contributor

       Paulo Custodio <pauloscustodio@gmail.com>

Credits

       The vast majority of the code in this distribution comes from David Golden's Types::Path::Tiny
       distribution.

Description

       This library provides a set of Path::Tiny types and coercions for Specio.  These types can be used with
       Moose, Moo, Params::ValidationCompiler, and other modules.

Donations

       If you'd like to thank me for the work I've done on this module, please consider making a "donation" to
       me via PayPal. I spend a lot of free time creating free software, and would appreciate any support you'd
       care to offer.

       Please note that Iamnotsuggestingthatyoumustdothis in order for me to continue working on this
       particular software. I will continue to do so, inasmuch as I have in the past, for as long as it
       interests me.

       Similarly, a donation made in this way will probably not make me work on this software much more, unless
       I get so many donations that I can consider working on free software full time (let's all have a chuckle
       at that together).

       To donate, log into PayPal and send money to autarch@urth.org, or use the button at
       <https://www.urth.org/fs-donation.html>.

Name

       Specio::Library::Path::Tiny - Path::Tiny types and coercions for Specio

Source

       The source code repository for Specio-Library-Path-Tiny can be found at
       <https://github.com/houseabsolute/Specio-Library-Path-Tiny>.

Support

       Bugs may be submitted at <https://github.com/houseabsolute/Specio-Library-Path-Tiny/issues>.

Synopsis

         use Specio::Library::Path::Tiny;

         has path => ( isa => t('Path') );

Types

       This library provides the following types:

   Path
       A Path::Tiny object.

       Will be coerced from a string or arrayref via "Path::Tiny::path".

   AbsPath
       A Path::Tiny object where "$path->is_absolute" returns true.

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->absolute".

   RealPath
       A Path::Tiny object where "$path->realpath eq $path".

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->realpath".

   File
       A Path::Tiny object which is a file on disk according to "$path->is_file".

       Will be coerced from a string or arrayref via "Path::Tiny::path".

   AbsFile
       A Path::Tiny object which is a file on disk according to "$path->is_file" where "$path->is_absolute"
       returns true.

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->absolute".

   RealFile
       A Path::Tiny object which is a file on disk according to "$path->is_file" where "$path->realpath eq
       $path".

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->realpath".

   Dir
       A Path::Tiny object which is a directory on disk according to "$path->is_dir".

       Will be coerced from a string or arrayref via "Path::Tiny::path".

   AbsDir
       A Path::Tiny object which is a directory on disk according to "$path->is_dir" where "$path->is_absolute"
       returns true.

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->absolute".

   RealDir
       A Path::Tiny object which is a directory on disk according to "$path->is_dir" where "$path->realpath eq
       $path".

       Will be coerced from a string or arrayref via "Path::Tiny::path" followed by call to "$path->realpath".

Version

       version 0.05

See Also