get everything onto the same version
[gitmo/Moose.git] / lib / Moose / AttributeHelpers / Trait / Collection / Hash.pm
index 710aad2..4c5e73a 100644 (file)
@@ -2,7 +2,7 @@
 package Moose::AttributeHelpers::Trait::Collection::Hash;
 use Moose::Role;
 
-our $VERSION   = '0.83';
+our $VERSION   = '0.84';
 $VERSION = eval $VERSION;
 our $AUTHORITY = 'cpan:STEVAN';
 
@@ -50,12 +50,12 @@ Moose::AttributeHelpers::Collection::Hash
       is        => 'ro',
       isa       => 'HashRef[Str]',
       default   => sub { {} },
-      provides  => {
-          'set'    => 'set_option',
-          'get'    => 'get_option',
-          'empty'  => 'has_options',
-          'count'  => 'num_options',
-          'delete' => 'delete_option',
+      handles   => {
+          set_option    => 'set',
+          get_option    => 'get',
+          has_options   => 'empty',
+          num_options   => 'count',
+          delete_option => 'delete',
       }
   );