in reply to Re^2: RFC - Module::Cooker
in thread RFC - Module::Cooker - UPDATE

This also assumes that your directory layout is like a typical CPAN dist. Otherwise you may need to make tweaks to Makefile.PL so it can find your stuff. (Or better yet, rearrange your files.)

Makefile.PL # in the project root directory lib/Foo/Bar.pm # modules named like this script/foobar # scripts like this bin/foobaz # ... or this t/foo-bar.t # tests like this xt/foo-baz.t # extra tests like this
use Moops; class Cow :rw { has name => (default => 'Ermintrude') }; say Cow->new->name