X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7f6415938eb888893b49cc968a5c01082743b7d7..935838c4747aac13b9c626c8728b5bf1fd4d6e4d:/cookbooks/chef/libraries/edit_file.rb 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