Skip Menu |

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

Report information
The Basics
Id: 118844
Status: new
Priority: 0/
Queue: DBIx-Class-Graph

People
Owner: Nobody in particular
Requestors: DROLSKY [...] cpan.org
Cc:
AdminCc:

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



Subject: Fails with Moose 2.19xx
Here's a patch: --- lib/DBIx/Class/Graph/Role/ResultSet.pm 2016-11-19 10:01:47.390532328 -0600 +++ ResultSet.pm 2016-11-19 10:01:42.702436606 -0600 @@ -29,7 +29,7 @@ sub _import_methods { return map { $_ => $_ } - grep { $_ ne 'new' && $_ !~ /^_/ && !__PACKAGE__->can($_) } + grep { $_ ne 'new' && $_ !~ /^_/ && !__PACKAGE__->can($_) && $_ =~ /^[a-zA-Z]/ } $_[1]->get_all_method_names; }