Method: Path#uptodate?
- Defined in:
- lib/path/fileutils.rb
#uptodate?(*others) ⇒ Boolean
Returns whether self is newer than all others. Non-existent files are older than any file. See FileUtils.uptodate?.
106 107 108 |
# File 'lib/path/fileutils.rb', line 106 def uptodate?(*others) FileUtils.uptodate?(@path, others) end |