Class: SprintSummaryStats
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.
6 7 8 9 10 11 12 13 |
# File 'lib/jirametrics/sprint_burndown.rb', line 6 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.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def added @added end |
#changed ⇒ Object
Returns the value of attribute changed.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def changed @changed end |
#completed ⇒ Object
Returns the value of attribute completed.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def completed @completed end |
#points_values_changed ⇒ Object
Returns the value of attribute points_values_changed.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def points_values_changed @points_values_changed end |
#remaining ⇒ Object
Returns the value of attribute remaining.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def remaining @remaining end |
#removed ⇒ Object
Returns the value of attribute removed.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def removed @removed end |
#started ⇒ Object
Returns the value of attribute started.
4 5 6 |
# File 'lib/jirametrics/sprint_burndown.rb', line 4 def started @started end |