X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d047e2bd47ec035f11ce1ced0d1e217a10edd838..29e2c1a969f226660eac316bd713c0c8c31e9133:/cookbooks/chef/libraries/edit_file.rb diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index ea200c845..bfbec455c 100644 --- a/cookbooks/chef/libraries/edit_file.rb +++ b/cookbooks/chef/libraries/edit_file.rb @@ -1,11 +1,17 @@ class Chef - class Recipe - def edit_file(file, &block) - Chef::DelayedEvaluator.new do - ::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 + include Chef::Mixin::EditFile + end end