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.



389
390
391
# File 'lib/taskjuggler/TimeSheets.rb', line 389

def initialize
  super
end

Instance Method Details

#checkObject



393
394
395
# File 'lib/taskjuggler/TimeSheets.rb', line 393

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

#warnOnDeltaObject



397
398
399
# File 'lib/taskjuggler/TimeSheets.rb', line 397

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