X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/59df18a47e1431952fcf82ca8ab318c2566370dc..f5c9ea64c257d7d350c01eaadbc36fe950c06091:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index 1c8e263e4..bfbec455c 100644 --- a/cookbooks/chef/libraries/edit_file.rb +++ b/cookbooks/chef/libraries/edit_file.rb @@ -1,9 +1,17 @@ class Chef - class Recipe - def edit_file(file, &block) - ::File.new(file).collect do |line| - line = yield line - end.join("") + module Mixin + module EditFile + def edit_file(file, &_block) + Chef::DelayedEvaluator.new do + ::File.new(file).collect do |line| + yield line + end.join("") + end + end end end + + class Recipe + include Chef::Mixin::EditFile + end end