Handling Critical and Effort-driven Tasks in Ruby

Aspose.Tasks - Handling Critical and Effort-driven Tasks

To Handle Critical and Effort-driven Tasks using Aspose.Tasks Java for Ruby, simply invoke CriticalAndEffortDrivenTasks module. Here you can see example code.

Ruby Code

 1project = Rjb::import('com.aspose.tasks.Project').new('test_tasks.mpp')
 2collector = Rjb::import('com.aspose.tasks.ChildTasksCollector').new
 3Rjb::import('com.aspose.tasks.TaskUtils').apply(project.getRootTask(), collector, 0)
 4tsk = Rjb::import('com.aspose.tasks.Tsk')
 5tasks = collector.getTasks()
 6i = 0
 7while i < tasks.size()
 8    task = tasks.get(i)
 9    puts str_ed = task.get(tsk.IS_EFFORT_DRIVEN) != nil ? "EffortDriven" : "Non-EffortDriven"
10    puts str_crit = task.get(tsk.IS_CRITICAL) != nil ? "Critical" : "Non-Critical"
11    i += 1
12end

Download Running Code

Download Handling Critical and Effort-driven Tasks (Aspose.Tasks) from any of the below mentioned social coding sites:

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.