There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

DESCRIPTION

This rule rewrites heredoc as double-quote strings. For example, this code:

print <<'EOF';
  Nihao
EOF

... is rewritten as:

print "  Nihao\n";