X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d6519b0543e8a88903a308c4b6f1f277625497eb..48debd1ec47bbada97c4ef9ec7ae7e4daf3ded53:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index 400e1967e..6260c8a40 100644 --- a/cookbooks/chef/libraries/edit_file.rb +++ b/cookbooks/chef/libraries/edit_file.rb @@ -1,22 +1,17 @@ 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("") + 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 - def edit_file(file, &block) - Chef::Util::EditedFile.new(file, block) - end + include Chef::Mixin::EditFile end end