QutBioacoustics/baw-server

View on GitHub
lib/gems/baw-app/lib/patches/pathname.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Extensions to the Pathname class
class Pathname
  raise 'Pathname#touch is already implemented' if defined?(touch)

  # creates the file
  def touch
    FileUtils.touch(self)
  end
end