]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/edit_file.rb
Fix more rubocop detected style issues
[chef.git] / cookbooks / chef / libraries / edit_file.rb
index 1c8e263e41697f30c73352b092157e48880940f0..a3c892d719f4332c696813364dc7ac85ecdac343 100644 (file)
@@ -1,9 +1,11 @@
 class Chef
   class Recipe
     def edit_file(file, &block)
-      ::File.new(file).collect do |line|
-        line = yield line
-      end.join("")
+      Chef::DelayedEvaluator.new do
+        ::File.new(file).collect do |line|
+          block.call(line)
+        end.join("")
+      end
     end
   end
 end