Class: TaskJuggler::TimeSheets

Inherits:
Array
  • Object
show all
Defined in:
lib/taskjuggler/TimeSheets.rb

Overview

A class to hold all time sheets of a project.

Instance Method Summary collapse

Constructor Details

#initializeTimeSheets

Returns a new instance of TimeSheets.



391
392
393
# File 'lib/taskjuggler/TimeSheets.rb', line 391

def initialize
  super
end

Instance Method Details

#checkObject



395
396
397
# File 'lib/taskjuggler/TimeSheets.rb', line 395

def check
  each { |s| s.check }
end

#warnOnDeltaObject



399
400
401
# File 'lib/taskjuggler/TimeSheets.rb', line 399

def warnOnDelta
  each { |s| s.warnOnDelta }
end