in reply to perl module won't upload to CPAN

Ah yes, I noticed that one when perusing https://metacpan.org/recent, and was going to e-mail you but forgot. You uploaded it OK, however the module file itself was missing from the tarball, so it won't have been indexed. You've got the wrong name for the module file in your MANIFEST (see line 7).

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re^2: perl module won't upload to CPAN
by srchulo (Sexton) on Jul 18, 2013 at 21:47 UTC

    Wow, thanks so much! I forked my module from Object::Tiny::RW, and I guess I never updated the MANIFEST. Thanks again! :)