Add IPC-AnyEvent-Gearman to the skip list
[gitmo/Moose.git] / benchmarks / simple_constructor.pl
index 66c0ac3..def63ed 100644 (file)
@@ -10,11 +10,11 @@ my $num_iterations = shift || 100;
     use Moose;
 
     has 'default'         => (is => 'rw', default => 10);
-    has 'default_sub'     => (is => 'rw', default => sub { [] });        
+    has 'default_sub'     => (is => 'rw', default => sub { [] });
     has 'lazy'            => (is => 'rw', default => 10, lazy => 1);
-    has 'required'        => (is => 'rw', required => 1);    
-    has 'weak_ref'        => (is => 'rw', weak_ref => 1);    
-    has 'type_constraint' => (is => 'rw', isa => 'ArrayRef');    
+    has 'required'        => (is => 'rw', required => 1);
+    has 'weak_ref'        => (is => 'rw', weak_ref => 1);
+    has 'type_constraint' => (is => 'rw', isa => 'ArrayRef');
 }
 
 foreach (0 .. $num_iterations) {