X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/b20599b6503be65674c3e420be6cca91b507ac0a..eb15b15aae4c6f83fcc917214d33458052ae248a:/cookbooks/chef/libraries/edit_file.rb?ds=sidebyside diff --git a/cookbooks/chef/libraries/edit_file.rb b/cookbooks/chef/libraries/edit_file.rb index a3c892d71..7de56267f 100644 --- a/cookbooks/chef/libraries/edit_file.rb +++ b/cookbooks/chef/libraries/edit_file.rb @@ -1,11 +1,15 @@ -class Chef - class Recipe - def edit_file(file, &block) - Chef::DelayedEvaluator.new do - ::File.new(file).collect do |line| - block.call(line) - end.join("") +module OpenStreetMap + 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 end + +Chef::DSL::Recipe.include(OpenStreetMap::Mixin::EditFile)