lib/pdk/util/filesystem.rb in pdk-1.13.0 vs lib/pdk/util/filesystem.rb in pdk-1.14.0
- old
+ new
@@ -62,9 +62,14 @@
def exist?(*args)
File.exist?(*args)
end
module_function :exist?
+
+ def rm(*args)
+ FileUtils.rm(*args)
+ end
+ module_function :rm
#:nocov:
end
end
end