Subject: | A documented way to exclude plugins |
I'm excluding certain tables via:
package Email::Store;
use Module::Pluggable (search_path => [ "Email::Store" ],
except => [ "Email::Store::List" ]);
in my script which calls Email::Store->setup.
This should at least be documented somewhere as a (I don't doubt that it's not the proper way) way to skip certain plugins and there probably should be some interface to Email::Store->setup which will support options analogous to the "only" and "except" options for Module::Pluggable.
Thanks.