X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/7f6415938eb888893b49cc968a5c01082743b7d7..7eeba28595f0089249c006550eab941e9f1521b3:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index 400e1967e..bfbec455c 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| + yield 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