per http://search.cpan.org/dist/Moose/lib/Moose/Manual/Delta.pod#1.09, legal_options_...
Justin Hunter [Fri, 29 Oct 2010 16:52:50 +0000 (09:52 -0700)]
we don't need to add anything to illegal, as we were only adding to legal

lib/Reaction/Role/Meta/Attribute.pm

index 512cbbb..45ad927 100644 (file)
@@ -6,9 +6,11 @@ use Moose::Role;
 has lazy_fail  =>
     (is => 'ro', reader => 'is_lazy_fail',  required => 1, default => 0);
 
-around legal_options_for_inheritance => sub {
-  return (shift->(@_), qw/valid_values/);
-};
+if ( $Moose::VERSION < 1.09 ) { 
+  around legal_options_for_inheritance => sub {
+    return (shift->(@_), qw/valid_values/);
+  };
+}
 
 around _process_options => sub {
     my $super = shift;