lib/kraps/temp_paths.rb in kraps-0.5.0 vs lib/kraps/temp_paths.rb in kraps-0.6.0
- old
+ new
@@ -15,12 +15,12 @@
@temp_paths << temp_path
temp_path
end
end
- def unlink
+ def delete
synchronize do
- @temp_paths.each(&:unlink)
+ @temp_paths.each(&:delete)
end
end
def each(&block)
return enum_for(__method__) unless block_given?