Subject: | Deprecation warning since perl 5.14 |
Use of qw(...) as parentheses is deprecated at
/usr/lib/perl5/vendor_perl/5.14.2/Color/Library/Color.pm line 101
To fix, replace:
for my $method qw/id name title dictionary html value hex/ {
with:
for my $method (qw/id name title dictionary html value hex/) {