pt 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Changelog.md +3 -0
- data/lib/pt.rb +1 -1
- data/lib/pt/ui.rb +3 -3
- metadata +2 -2
data/Changelog.md
CHANGED
data/lib/pt.rb
CHANGED
data/lib/pt/ui.rb
CHANGED
@@ -309,11 +309,11 @@ class PT::UI
|
|
309
309
|
|
310
310
|
def show_task(task)
|
311
311
|
title task.name
|
312
|
-
estimation = task.estimate
|
313
|
-
message "#{task.current_state.capitalize} #{task.story_type} | #{estimation} | Req: #{task.requested_by} | Owns: #{task.owned_by}"
|
312
|
+
estimation = [-1, nil].include?(task.estimate) ? "Unestimated" : "#{task.estimate} points"
|
313
|
+
message "#{task.current_state.capitalize} #{task.story_type} | #{estimation} | Req: #{task.requested_by} | Owns: #{task.owned_by} | Id: #{task.id}"
|
314
314
|
message task.description unless task.description.empty?
|
315
315
|
task.tasks.all.each{ |t| message "- #{t.complete ? "(done) " : "(pend)"} #{t.description}" }
|
316
316
|
task.notes.all.each{ |n| message "#{n.author}: \"#{n.text}\"" }
|
317
317
|
end
|
318
318
|
|
319
|
-
end
|
319
|
+
end
|