franck cuny
http://lumberjaph.net - http://github.com/franckcuny
I know I'm harping on this again… sorry…
I found where you're matching the '+' symbol - should you be stripping
it off of $mw before you pass it on? I'm having errors from
Class::MOP
------------------
in: Net/HTTP/Spore/Role/Middleware.pm
sub _complete_mw_name {
my ($self, $mw) = @_;
if ($mw !~ /(?:^\+|Net\:\:HTTP\:\:Spore\:\:Middleware)/) {
$mw = "Net::HTTP::Spore::Middleware::".$mw;
}
ADD THIS ---> $mw =~ s/\+//; <-------
return $mw;
}
----------------