On Tue Jun 21 07:59:41 2016, haarg wrote:
Show quoted text> This was fixed in Moo 2.002002
It doesn't look like it. Latest Moo and DBIC (2.002004 and 0.082840) result in an error still.
Changing just this is sufficient to resolve the problem, which makes me think that Moo is in fact to blame here... (no MI, no load_components, just an s/extends/use base/)
diff --git a/lib/DBIx/Class/IndexSearch/Dezi.pm b/lib/DBIx/Class/IndexSearch/Dezi.pm
index 8a05f6b..2c03af0 100644
--- a/lib/DBIx/Class/IndexSearch/Dezi.pm
+++ b/lib/DBIx/Class/IndexSearch/Dezi.pm
@@ -1,6 +1,5 @@
package DBIx::Class::IndexSearch::Dezi;
-use Moo;
-extends 'DBIx::Class';
+use base 'DBIx::Class';
use Carp;
use Module::Load;