Class: SprintSummaryStats

Inherits:
Object show all
Defined in:
lib/jirametrics/sprint_burndown.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSprintSummaryStats

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

#addedObject

Returns the value of attribute added.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def added
  @added
end

#changedObject

Returns the value of attribute changed.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def changed
  @changed
end

#completedObject

Returns the value of attribute completed.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def completed
  @completed
end

#points_values_changedObject

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

#remainingObject

Returns the value of attribute remaining.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def remaining
  @remaining
end

#removedObject

Returns the value of attribute removed.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def removed
  @removed
end

#startedObject

Returns the value of attribute started.



4
5
6
# File 'lib/jirametrics/sprint_burndown.rb', line 4

def started
  @started
end