http://www.perlmonks.org?node_id=658162


in reply to can't locate object method bootstrap

Probably need to put this at the top of the file:

require DynaLoader; our @ISA = qw(DynaLoader);

And while you're at it, change to this:

__PACKAGE__->bootstrap($VERSION);

instead of the ugly indirect-object notation crap.