in reply to Re: Polymorphic Plugins
in thread Polymorphic Plugins

That's just what I was looking for! Read the docs, threw this test together, and it works perfectly straight out of the box.
#!/usr/bin/perl -wT use strict; use MyNamespace::Event; use Module::Pluggable require => 1, search_path => ['MyNamespace::Even +t']; print join "\n", plugins; print "\n\n"; print join "\n", keys %MyNamespace::Event::event_list; print "\n";
Thanks!