Name: | perl-Path-Tiny |
---|---|
Version: | 0.076 |
Release: | 1.el7 |
Architecture: | noarch |
Group: | Development/Libraries |
Size: | 174695 |
License: | ASL 2.0 |
RPM: | perl-Path-Tiny-0.076-1.el7.noarch.rpm |
Source RPM: | perl-Path-Tiny-0.076-1.el7.src.rpm |
Build Date: | Sat Nov 04 2017 |
Build Host: | x86-ol7-builder-03.us.oracle.com |
Vendor: | Oracle America |
URL: | http://search.cpan.org/dist/Path-Tiny/ |
Summary: | File path utility |
Description: | This module attempts to provide a small, fast utility for working with file paths. It is friendlier to use than File::Spec and provides easy access to functions from several other core file handling modules. It doesn't attempt to be as full-featured as IO::All or Path::Class, nor does it try to work for anything except Unix-like and Win32 platforms. Even then, it might break if you try something particularly obscure or tortuous. All paths are forced to have Unix-style forward slashes. Stringifying the object gives you back the path (after some clean up). File input/output methods flock handles before reading or writing, as appropriate. The *_utf8 methods (slurp_utf8, lines_utf8, etc.) operate in raw mode without CRLF translation. |
- Update to 0.076 - Tilde expansion on Windows was resulting in backslashes; now they are correctly normalized to forward slashes - Typos fixed - Fixed spewing to a symlink that crosses a filesystem boundary - Add Test::MockRandom to META as a recommended test prerequisite
- Update to 0.072 - Fixed incorrect error argument for File::Path functions (mkpath and remove_tree)
- Fixed incorrect error argument for File::Path functions (mkpath and remove_tree) (GH#144)
- Update to 0.070 - The 'copy' method now returns the object for the copied file - The 'visit' method only dereferences the callback return value for scalar refs, avoiding some common bugs
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
- Perl 5.22 rebuild
- Update to 0.068 - Added exclusive locking option to filehandle opens; spew now exclusively locks tempfile used for atomic writes
- Update to 0.065 - Added 'assert' method - Added 'visit' method - Added support for a negative count for 'lines' to get the last lines of a file - Fixed tilde expansion if path has spaces - Make realpath non-fatal if the parent path exists and only the final path component does not (was fatal on Windows and some Unixes) - Removed redundant locking on tempfile use for spewing - Work around File::Temp bugs on older ActiveState Windows Perls https://bugs.activestate.com/show_bug.cgi?id=104767 - Fixed SYNOPSIS example
- Update to 0.061 - Fixed append_utf8 and append_raw with 'truncate' option
- Update to 0.060 - Added 'truncate' option to append for in-place replacement of file contents