Skip Menu |

This queue is for tickets about the DBIx-Class-IndexSearch-Dezi CPAN distribution.

Report information
The Basics
Id: 115189
Status: open
Priority: 0/
Queue: DBIx-Class-IndexSearch-Dezi

People
Owner: Nobody in particular
Requestors: ribasushi [...] leporine.io
Cc: haarg [...] cpan.org
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



CC: haarg [...] cpan.org
Subject: Module stopped working as of Moo 1.00300 (1.00200 is fine)
I do not see anything obvious, just narrowing it down for whoever comes next. Also adding Moo maint on CC in case there is something obvious.
This was fixed in Moo 2.002002
RT-Send-CC: haarg [...] cpan.org
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;