class RuboCop::Cop::Chef::Correctness::TmpPath

Use file_cache_path rather than hard-coding system temp paths

@example downloading a large file into /tmp/

### incorrect
remote_file '/tmp/large-file.tar.gz' do

### correct
remote_file "#{Chef::Config[:file_cache_path]}/large-file.tar.gz" do