Module: Pwrake::FileTaskAlgorithm
- Defined in:
- lib/pwrake/task/file_task_algorithm.rb
Instance Method Summary collapse
-
#timestamp ⇒ Object
Cache time stamp to reduce load on file system.
Instance Method Details
#timestamp ⇒ Object
Cache time stamp to reduce load on file system.
6 7 8 9 10 11 12 13 |
# File 'lib/pwrake/task/file_task_algorithm.rb', line 6 def @file_mtime || if File.exist?(name) @file_mtime = File.mtime(name.to_s) else Rake::LATE end end |