Module: Filepath::FilesystemChanges
- Included in:
- Filepath
- Defined in:
- lib/filepath/filepath.rb
Instance Method Summary collapse
Instance Method Details
#touch ⇒ Object
849 850 851 852 |
# File 'lib/filepath/filepath.rb', line 849 def touch self.open('a') do ; end File.utime(File.atime(self), Time.now, self) end |