]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/edit_file.rb
Fix some rubocop detected style issues
[chef.git] / cookbooks / chef / libraries / edit_file.rb
index 8a04a8090f3e45ce03a13e71bbba768d9b945376..a3c892d719f4332c696813364dc7ac85ecdac343 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|
+          block.call(line)
+        end.join("")
+      end
     end
   end
 end