X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/d6519b0543e8a88903a308c4b6f1f277625497eb..0090bd318bd4f43d2523d71ed9404f4c93055b9e:/cookbooks/chef/libraries/edit_file.rb?ds=sidebyside diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index 400e1967e..ea200c845 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) + Chef::DelayedEvaluator.new do + ::File.new(file).collect do |line| + line = block.call(line) + end.join("") + end end end end