- Reorganization of distribution
- Migration to Module::Build with EU::MM backwards compatibility
- Test coverage improved to ??%
+ - The following methods have been renamed to reflect their private nature:
+ - init() is now _init()
0.96 Oct 14 09:55:00 2005 Pacific
- Fixed build (OS X hidden files killed it)
##
use strict;
+
use FileHandle;
use Fcntl qw/:flock/;
use Digest::MD5 ();
{
my @outer_params = qw( type base_offset );
- sub init {
+ sub _init {
##
# Setup $self and bless into this class.
##
elsif (ref($_[0])) { $args = $_[0]; }
else { $args = { file => shift }; }
- return $class->init($args);
+ return $class->_init($args);
}
sub TIEARRAY {
elsif (ref($_[0])) { $args = $_[0]; }
else { $args = { file => shift }; }
- return $class->init($args);
+ return $class->_init($args);
}
sub DESTROY {