X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/7b2e5c20165878df65a244b7eb34bf6ac1b35782..96596b76108d1e3446d8a0efb9945cdfd91e7eaa:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index e632bcfd4..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).to_s + Chef::DelayedEvaluator.new do + ::File.new(file).collect do |line| + line = block.call(line) + end.join("") + end end end end