Codebase list libio-all-perl / 3b536cf
Imported Upstream version 0.67 gregor herrmann 9 years ago
19 changed file(s) with 31 addition(s) and 75 deletion(s). Raw diff Collapse all Expand all
0 0.67 Sat Aug 2 11:58:01 PDT 2014
1 - Fix Copyright years.
2
03 0.66 Wed Jul 16 23:39:38 PDT 2014
14 - Move doc to Swim
25 - Fix Meta and add Contributing file
137140 http://rt.cpan.org/Public/Bug/Display.html?id=20053 Made sure Carp is
138141 required and the sub Carp::carp is predeclared in IO/All.pm.
139142
140 0.35
143 0.35 Tue May 9 08:25:37 PDT 2006
144 - Remove dependency on XXX.pm *groan*
141145
142146 0.34 Mon May 8 01:03:12 PDT 2006
143147 - Remove dependency on Spiffy.pm
178182 - Fixed buglets in sockets
179183 - Added Cookbook example for Tiny Web Server
180184
181 0.20 Mon May 24 17:02:24 PDT 2004
185 0.20 Thu May 27 01:46:04 PDT 2004
186 - Rewrote documentation
187 - Refactored construction
188 - File::Spec support
189 - File::Path support
190 - lots of new methods
191
192 0.19 Mon May 24 17:02:24 PDT 2004
182193 - DBM support
183194 - MLDBM support
184195 - chomp support
185196 - Fixed forking server zombie issues
186197 - Replaced flags with methods (-tie -fork -lock, etc)
198 - Added chainable options `assert, chomp, deep, rdonly, rdwr, sort`
187199 - Fixed problems with perl-5.6.1 and Solaris
188200
189201 0.18 Sun May 16 17:40:37 PDT 2004
5555 "web" : "https://github.com/ingydotnet/io-all-pm"
5656 }
5757 },
58 "version" : "0.66"
58 "version" : "0.67"
5959 }
6060
2828 bugtracker: https://github.com/ingydotnet/io-all-pm/issues
2929 homepage: https://github.com/ingydotnet/io-all-pm
3030 repository: https://github.com/ingydotnet/io-all-pm.git
31 version: '0.66'
31 version: '0.67'
2222 "Cwd" => 0,
2323 "Scalar::Util" => 0
2424 },
25 "VERSION" => "0.66",
25 "VERSION" => "0.67",
2626 "test" => {
2727 "TESTS" => "t/*.t"
2828 }
15001500 Ingy döt Net <ingy@cpan.org>
15011501
15021502 COPYRIGHT
1503 Copyright (c) 2004-2005. Brian Ingerson.
1504
1505 Copyright (c) 2006-2014. Ingy döt Net.
1503 Copyright 2004-2014. Ingy döt Net.
15061504
15071505 This program is free software; you can redistribute it and/or modify it
15081506 under the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
44 use IO::All -base;
55
66 const type => 'string';
7
87
98 sub string_ref {
109 my ($self, $ref) = @_;
3231 $self->is_open(1);
3332 }
3433
35 =encoding utf8
36
37 =head1 NAME
38
39 IO::All::String - String IO Support for IO::All
40
41 =head1 SYNOPSIS
42
43 See L<IO::All>.
44
45 =head1 DESCRIPTION
46
47 =head1 AUTHOR
48
49 Ingy döt Net <ingy@cpan.org>
50
51 =head1 COPYRIGHT
52
53 Copyright (c) 2004-2005. Brian Ingerson. All rights reserved.
54
55 Copyright (c) 2006-2014. Ingy döt Net. All rights reserved.
56
57 This program is free software; you can redistribute it and/or modify it
58 under the same terms as Perl itself.
59
60 See http://www.perl.com/perl/misc/Artistic.html
61
62 =cut
63
6434 1;
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
2121
2222 =head1 COPYRIGHT
2323
24 Copyright (c) 2004-2005. Brian Ingerson.
25
26 Copyright (c) 2006-2014. Ingy döt Net.
24 Copyright 2004-2014. Ingy döt Net.
2725
2826 This program is free software; you can redistribute it and/or modify it under
2927 the same terms as Perl itself.
00 package IO::All;
1 our $VERSION = '0.66';
1 our $VERSION = '0.67';
22
33 use 5.006001;
44 use strict;
17311731
17321732 =head1 COPYRIGHT
17331733
1734 Copyright (c) 2004-2005. Brian Ingerson.
1735
1736 Copyright (c) 2006-2014. Ingy döt Net.
1734 Copyright 2004-2014. Ingy döt Net.
17371735
17381736 This program is free software; you can redistribute it and/or modify it under
17391737 the same terms as Perl itself.