X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/59df18a47e1431952fcf82ca8ab318c2566370dc..4f94ccf583d86093b3756f5999de5bfcdff99895:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index 1c8e263e4..6260c8a40 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| + block.call(line) + end.join("") + end + end end end + + class Recipe + include Chef::Mixin::EditFile + end end