X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7b2e5c20165878df65a244b7eb34bf6ac1b35782..3a4d52bd4c0f8e6ae7679145846b7bc7845d8ace:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index e632bcfd4..a3c892d71 100644 --- a/cookbooks/chef/libraries/edit_file.rb +++ b/cookbooks/chef/libraries/edit_file.rb @@ -1,22 +1,11 @@ class Chef - class Util - class EditedFile - def initialize(file, block) - @file = file - @block = block - end - - def to_s - ::File.new(@file).collect do |line| - line = @block.call(line) - end.join("") - end - end - end - class Recipe def edit_file(file, &block) - Chef::Util::EditedFile.new(file, block).to_s + Chef::DelayedEvaluator.new do + ::File.new(file).collect do |line| + block.call(line) + end.join("") + end end end end