class RuboCop::Cop::Chef::Deprecations::RubyBlockCreateAction

Use the :run action in the ruby_block resource instead of the deprecated :create action

@example

### incorrect
ruby_block 'my special ruby block' do
  block do
    puts 'running'
  end
  action :create
end

### correct
ruby_block 'my special ruby block' do
  block do
    puts 'running'
  end
  action :run
end