]> git.openstreetmap.org Git - chef.git/commitdiff
Reimplement edit_file using Chef::DelayedEvaluator
authorTom Hughes <tom@compton.nu>
Sun, 24 Nov 2013 11:21:34 +0000 (11:21 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 24 Nov 2013 11:21:34 +0000 (11:21 +0000)
cookbooks/chef/libraries/edit_file.rb

index 8a04a8090f3e45ce03a13e71bbba768d9b945376..ea200c845cc74567c55606ed4fdf264e1b04e24d 100644 (file)
@@ -1,26 +1,11 @@
 class Chef
-  class Util
-    class EditedFile
-      def initialize(file, block)
-        @file = file
-        @block = block
-      end
-
-      def kind_of?(klass)
-        klass == String || super
-      end
-
-      def to_s
-        ::File.new(@file).collect do |line|
-          line = @block.call(line)
-        end.join("")
-      end
-    end
-  end
-
   class Recipe
     def edit_file(file, &block)
-      Chef::Util::EditedFile.new(file, block)
+      Chef::DelayedEvaluator.new do
+        ::File.new(file).collect do |line|
+          line = block.call(line)
+        end.join("")
+      end
     end
   end
 end