Skip to content

Commit

Permalink
CPAN Release 0.84
Browse files Browse the repository at this point in the history
- Pass separator along when tie'ing (Fixes GH#52, Arthur Axel 'fREW' Schmidt)
- Add ->copy method (Arthur Axel 'fREW' Schmidt)
- Prefix private methods with underscores (Arthur Axel 'fREW' Schmidt)
  • Loading branch information
Arthur Axel 'fREW' Schmidt committed Dec 14, 2014
1 parent dcdd4d8 commit ac76da9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,6 +1,6 @@
---
version: 0.84
date:
date: Sun Dec 14 02:06:37 CST 2014
changes:
- Pass separator along when tie'ing (Fixes GH#52, Arthur Axel 'fREW' Schmidt)
- Add ->copy method (Arthur Axel 'fREW' Schmidt)
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: IO-All
version: 0.83
version: 0.84
abstract: IO::All to Larry Wall!
homepage: https://metacpan.org/release/IO-All
language: perl
Expand Down
11 changes: 8 additions & 3 deletions ReadMe.pod
Expand Up @@ -233,9 +233,9 @@ L</append>, L</appendf>, L</appendln>, L</assert>, L</atime>, L</autoclose>,
L</autoflush>, L</backwards>, L</bcc>, L</binary>, L</binmode>, L</blksize>,
L</blocks>, L</block_size>, L</buffer>, L</canonpath>, L</case_tolerant>,
L</catdir>, L</catfile>, L</catpath>, L</cc>, L</chdir>, L</chomp>, L</clear>,
L</close>, L</confess>, L</content>, L</ctime>, L</curdir>, L</dbm>, L</deep>,
L</device>, L</device_id>, L</devnull>, L</dir>, L</domain>, L</empty>,
L</ext>, L</encoding>, L</eof>, L</errors>, L</file>, L</filename>,
L</close>, L</confess>, L</content>, L</copy>, L</ctime>, L</curdir>, L</dbm>,
L</deep>, L</device>, L</device_id>, L</devnull>, L</dir>, L</domain>,
L</empty>, L</ext>, L</encoding>, L</eof>, L</errors>, L</file>, L</filename>,
L</fileno>, L</filepath>, L</filter>, L</fork>, L</from>, L</ftp>, L</get>,
L</getc>, L</getline>, L</getlines>, L</gid>, L</glob>, L</handle>, L</head>,
L</http>, L</https>, L</inode>, L</io_handle>, L</is_absolute>, L</is_dir>,
Expand Down Expand Up @@ -1105,6 +1105,11 @@ different objects. For files and directories it will close and release the
handle. For sockets it calls shutdown. For tied things it unties them, and it
unlocks locked things.

=item copy

Copies the object to the path passed. Works on both files and directories, but
directories require C<File::Copy::Recursive> to be installed.

=item empty

Returns true if a file exists but has no size, or if a directory exists but
Expand Down
2 changes: 1 addition & 1 deletion lib/IO/All.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package IO::All;
our $VERSION = '0.83';
our $VERSION = '0.84';

require Carp;
# So one can use Carp::carp "$message" - without the parenthesis.
Expand Down

0 comments on commit ac76da9

Please sign in to comment.