do not recomment importing everything from Moose::Util::TypeConstraints
Karen Etheridge [Sun, 22 Mar 2015 21:24:41 +0000 (14:24 -0700)]
creating new stringy types is not recommended, so limit our importing to just
the sugar we need.

lib/JSON/MaybeXS.pm

index a9ef9de..65702d2 100644 (file)
@@ -241,7 +241,7 @@ constant described above, as so:
 
 Alternatively, you can use duck typing:
 
-    use Moose::Util::TypeConstraints;
+    use Moose::Util::TypeConstraints 'duck_type';
     is 'json' => ( isa => Object , duck_type([qw/ encode decode /]));
 
 =head1 AUTHOR