keep $VERSION right in the repo
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin / Turtles.pm
index a8fd9df..49c6eaf 100644 (file)
@@ -1,8 +1,11 @@
+use strict;
+use warnings;
 package Devel::REPL::Plugin::Turtles;
-use Devel::REPL::Plugin;
 
-use Scalar::Util qw(reftype);
+our $VERSION = '1.003027';
 
+use Devel::REPL::Plugin;
+use Scalar::Util qw(reftype);
 use namespace::autoclean;
 
 has default_command_prefix => (
@@ -12,7 +15,7 @@ has default_command_prefix => (
 );
 
 has turtles_matchers => (
-  metaclass => "Collection::Array",
+  traits => ['Array'],
   isa => "ArrayRef[RegexpRef|CodeRef]",
   is  => "rw",
   lazy => 1,