in reply to Re^2: Should I list core modules as dependencies? (yaml comments)
in thread Should I list core modules as dependencies?

"yml supports comments"

And I'm sure they're very useful for people handwriting their META.yml files. For the rest of us who generate them using CPAN::Meta (e.g. via ExtUtils::MakeMaker) YAML comments are not really an option.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Should I list core modules as dependencies? (yaml comments)

Replies are listed 'Best First'.
Re^4: Should I list core modules as dependencies? (yaml comments)
by Anonymous Monk on Jun 04, 2013 at 08:15 UTC

    And I'm sure they're very useful for people handwriting their META.yml files. For the rest of us who generate them using CPAN::Meta (e.g. via ExtUtils::MakeMaker) YAML comments are not really an option.

    Oh yeah, its not like there exist people who can write programs :)