module Filepath::FilesystemChanges

Public Instance Methods

touch() click to toggle source
# File lib/filepath/filepath.rb, line 849
def touch
        self.open('a') do ; end
        File.utime(File.atime(self), Time.now, self)
end