]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/edit_file.rb
Fix some cookstyle warnings
[chef.git] / cookbooks / chef / libraries / edit_file.rb
index 1c8e263e41697f30c73352b092157e48880940f0..7de56267f3628b62f639ce6afdc1d6b267accb0a 100644 (file)
@@ -1,9 +1,15 @@
-class Chef
-  class Recipe
-    def edit_file(file, &block)
-      ::File.new(file).collect do |line|
-        line = yield 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)