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;
}