lib/pt-flow/ui.rb in pt-flow-0.6.0 vs lib/pt-flow/ui.rb in pt-flow-0.6.1
- old
+ new
@@ -8,10 +8,10 @@
def start
if @params[0]
task = create
else
- table = PT::TasksTable.new(@client.get_work(@project))
+ table = TasksTable.new(@client.get_work(@project))
title("Available tasks in #{project_to_s}")
task = select("Please select a task to start working on", table)
end
estimate_task(task, ask("How many points do you estimate for it? (#{@project.point_scale})")) if task.estimate && task.estimate < 0
assign_task(task, @local_config[:user_name])