.cvsignore .dualLivedDiffConfig .gitignore
ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL
CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING COPYING Copying
- CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE Makefile.PL
- MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json MYMETA.yml
- NEW NOTES perlcritic.rc ppport.h README README.PATCHING SIGNATURE
- THANKS TODO Todo VERSION WHATSNEW
+ cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE
+ Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json
+ MYMETA.yml NEW NOTES perlcritic.rc ppport.h README README.PATCHING
+ SIGNATURE THANKS TODO Todo VERSION WHATSNEW
);
# Each entry in the %Modules hash roughly represents a distribution,
'File::Temp' => {
'MAINTAINER' => 'tjenness',
- 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2301.tar.gz',
+ 'DISTRIBUTION' => 'DAGOLDEN/File-Temp-0.2302.tar.gz',
'FILES' => q[cpan/File-Temp],
'EXCLUDED' => [
qw( misc/benchmark.pl
package File::Temp;
# ABSTRACT: return name and handle of a temporary file safely
-our $VERSION = '0.2301'; # VERSION
+our $VERSION = '0.2302'; # VERSION
-# 5.6.0 gives us S_IWOTH, S_IWGRP, our and auto-vivifying filehandls
+# 5.6.0 gives us S_IWOTH, S_IWGRP, our and auto-vivifying filehandles
# People would like a version on 5.004 so give them what they want :-)
use 5.004;
use strict;
require Symbol if $] < 5.006;
### For the OO interface
-use base qw/ IO::Handle IO::Seekable /;
+use parent qw/ IO::Handle IO::Seekable /;
use overload '""' => "STRINGIFY", '0+' => "NUMIFY",
fallback => 1;
# We are exporting functions
-use base qw/Exporter/;
+use Exporter 'import'; # Requires 5.57+
# Export list - to allow fine tuning of export table
foreach my $file (@files) {
# close the filehandle without checking its state
# in order to make real sure that this is closed
- # if its already closed then I dont care about the answer
+ # if its already closed then I don't care about the answer
# probably a better way to do this
close($file->[0]); # file handle is [0]
=head1 VERSION
-version 0.2301
+version 0.2302
=head1 SYNOPSIS
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
-at L<https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp>.
+at L<http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
-L<http://github.com/Perl-Toolchain-Gang/File-Temp>
+L<https://github.com/Perl-Toolchain-Gang/File-Temp>
- git clone git://github.com/Perl-Toolchain-Gang/File-Temp.git
+ git clone https://github.com/Perl-Toolchain-Gang/File-Temp.git
=head1 AUTHOR
=item *
+David Steinbrunner <dsteinbrunner@pobox.com>
+
+=item *
+
Ed Avis <eda@linux01.wcl.local>
=item *
=item *
+Karen Etheridge <ether@cpan.org>
+
+=item *
+
Kevin Ryde <user42@zip.com.au>
=item *
+Olivier Mengue <dolmen@cpan.org>
+
+=item *
+
Peter John Acklam <pjacklam@online.no>
+=item *
+
+Peter Rabbitson <ribasushi@cpan.org>
+
=back
=head1 COPYRIGHT AND LICENSE