The FileRecord stores the name of a file and the modification time.
[Source]
# File lib/taskjuggler/FileList.rb, line 19 def initialize(fileName) @name = fileName.dup.untaint @mtime = File.mtime(@name) end
# File lib/taskjuggler/FileList.rb, line 24 def modified? File.mtime(@name) > @mtime end
[Validate]