• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/File/Slurp/H14-Jul-2006-13749

t/H14-Jul-2006-3826

Build.PLH A D14-Jul-2006434 1816

ChangesH A D14-Jul-2006672 2015

MANIFESTH A D14-Jul-2006108 109

META.ymlH A D14-Jul-2006378 1918

Makefile.PLH A D14-Jul-2006538 1715

READMEH A D14-Jul-20061.5 KiB7743

README

1README for File::Slurp::Tree 1.24
2
3=head1 NAME
4
5File::Slurp::Tree - slurp and emit file trees as nested hashes
6
7=head1 SYNOPSIS
8
9 # (inefficiently) duplicate a file tree from path a to b
10 use File::Slurp::Tree;
11 my $tree = slurp_tree( "path_a" );
12 spew_tree( "path_b" => $tree );
13
14
15=head1 DEPENDENCIES
16
17This module has external dependencies on the following modules:
18
19 File::Find::Rule
20 File::Path
21 File::Slurp
22
23=head1 INSTALLATION
24
25 perl Build.PL
26 perl Build test
27
28and if all goes well
29
30 perl Build install
31
32=head1 HISTORY
33
34What changed over the last 3 revisions
35
36=over
37
38=item 1.24    Friday 14th July, 2006
39
40	Cope with slurp_tree("some_path/") (ie, with a trailing slash) and
41	slurp_tree("/") (still not really recommended).
42
43
44=item 1.23	Thursday 11th May, 2006
45
46	Specify binmode in the calls to read_file and write_file - should
47	hopefully fix http://rt.cpan.org/Ticket/Display.html?id=14665
48	(problem with images on Win32)
49	Drop reference to rt.cpan in L</BUGS>
50
51
52=item 1.22	Tuesday, 12th August 2003
53
54	lose the dependency on Exporter::Simple, which opens us up to
55	5.6 users.  Thanks to Gavin Estey for this work.
56
57	went one step further and backported to 5.00503.  Thank the
58	Northern Line for being slow
59
60=back
61
62=head1 AUTHOR
63
64Richard Clamp <richardc@unixbeard.net>
65
66=head1 COPYRIGHT
67
68Copyright (C) 2003, 2006 Richard Clamp.  All Rights Reserved.
69
70This module is free software; you can redistribute it and/or modify it
71under the same terms as Perl itself.
72
73=head1 SEE ALSO
74
75L<File::Slurp>, L<Test::More>
76
77