Class TaskJuggler::TimeSheets
In: lib/taskjuggler/TimeSheets.rb
Parent: Array

A class to hold all time sheets of a project.

Methods

check   new   warnOnDelta  

Public Class methods

[Source]

# File lib/taskjuggler/TimeSheets.rb, line 389
    def initialize
      super
    end

Public Instance methods

[Source]

# File lib/taskjuggler/TimeSheets.rb, line 393
    def check
      each { |s| s.check }
    end

[Source]

# File lib/taskjuggler/TimeSheets.rb, line 397
    def warnOnDelta
      each { |s| s.warnOnDelta }
    end

[Validate]