Class: SprintSummaryStats
- Inherits:
-
Object
- Object
- SprintSummaryStats
- Defined in:
- lib/jirametrics/sprint_summary_stats.rb
Overview
The roll-up numbers for a single sprint's burndown: how many points/issues the sprint started with, how many were added/removed/completed while it ran, and how many remained at the end.
Instance Attribute Summary collapse
-
#added ⇒ Object
Returns the value of attribute added.
-
#changed ⇒ Object
Returns the value of attribute changed.
-
#completed ⇒ Object
Returns the value of attribute completed.
-
#points_values_changed ⇒ Object
Returns the value of attribute points_values_changed.
-
#remaining ⇒ Object
Returns the value of attribute remaining.
-
#removed ⇒ Object
Returns the value of attribute removed.
-
#started ⇒ Object
Returns the value of attribute started.
Instance Method Summary collapse
-
#initialize ⇒ SprintSummaryStats
constructor
A new instance of SprintSummaryStats.
Constructor Details
#initialize ⇒ SprintSummaryStats
Returns a new instance of SprintSummaryStats.
8 9 10 11 12 13 14 15 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 8 def initialize @added = 0 @completed = 0 @removed = 0 @started = 0 @remaining = 0 @points_values_changed = false end |
Instance Attribute Details
#added ⇒ Object
Returns the value of attribute added.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def added @added end |
#changed ⇒ Object
Returns the value of attribute changed.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def changed @changed end |
#completed ⇒ Object
Returns the value of attribute completed.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def completed @completed end |
#points_values_changed ⇒ Object
Returns the value of attribute points_values_changed.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def points_values_changed @points_values_changed end |
#remaining ⇒ Object
Returns the value of attribute remaining.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def remaining @remaining end |
#removed ⇒ Object
Returns the value of attribute removed.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def removed @removed end |
#started ⇒ Object
Returns the value of attribute started.
6 7 8 |
# File 'lib/jirametrics/sprint_summary_stats.rb', line 6 def started @started end |