add patch from awwaiid for build_requires Test::Deep
[gitmo/MooseX-Storage.git] / lib / MooseX / Storage / IO / File.pm
index cbff2d0..0bf379f 100644 (file)
@@ -4,19 +4,20 @@ use Moose::Role;
 
 use MooseX::Storage::Engine::IO::File;
 
-our $VERSION = '0.01';
+our $VERSION   = '0.01';
+our $AUTHORITY = 'cpan:STEVAN';
 
 requires 'thaw';
 requires 'freeze';
 
 sub load {
-    my ( $class, $filename ) = @_;
-    $class->thaw( MooseX::Storage::Engine::IO::File->new( file => $filename )->load() );
+    my ( $class, $filename, @args ) = @_;
+    $class->thaw( MooseX::Storage::Engine::IO::File->new( file => $filename )->load(), @args );
 }
 
 sub store {
-    my ( $self, $filename ) = @_;
-    MooseX::Storage::Engine::IO::File->new( file => $filename )->store( $self->freeze() );
+    my ( $self, $filename, @args ) = @_;
+    MooseX::Storage::Engine::IO::File->new( file => $filename )->store( $self->freeze(@args) );
 }
 
 1;
@@ -83,7 +84,7 @@ Stevan Little E<lt>stevan.little@iinteractive.comE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright 2007 by Infinity Interactive, Inc.
+Copyright 2007-2008 by Infinity Interactive, Inc.
 
 L<http://www.iinteractive.com>