class RuboCop::Cop::Chef::Deprecations::EasyInstallResource

Don't use the deprecated easy_install resource removed in Chef Infra Client 13.

@example

#### incorrect
easy_install "my_thing" do
  bar
end

Constants

MSG
RESTRICT_ON_SEND

Public Instance Methods

on_send(node) click to toggle source
# File lib/rubocop/cop/chef/deprecation/easy_install.rb, line 35
def on_send(node)
  add_offense(node, message: MSG, severity: :warning)
end