This release removes the legacy perl::default recipe and node['perl'] attributes. Use custom
resources directly in your wrapper cookbooks.
Replace:
include_recipe 'perl::default'with:
perl_install 'default'Replace node attributes with resource properties:
perl_install 'default' do
packages %w(perl libperl-dev)
cpanm_path '/usr/local/bin/cpanm'
cpanm_url 'https://raw.githubusercontent.com/miyagawa/cpanminus/1.7043/cpanm'
cpanm_checksum 'd2221f1adb956591fa43cd61d0846b961be1fffa222210f097bfd472a11e0539'
suppress_cpanm_diff false
endThe cpan_module resource now accepts cpanm_path directly instead of reading
node['perl']['cpanm']['path'].