class TrackerApi::Resources::Iteration

Public Instance Methods

cycle_time_details() click to toggle source

Provides a list of all the cycle_time_details of each story in the iteration.

@return [Array] array of cycle_time_details of iterations in this project

# File lib/tracker_api/resources/iteration.rb, line 31
def cycle_time_details
  Endpoints::Iteration.new(client).get_analytics_cycle_time_details(project_id, number)
end
get_history() click to toggle source

Returns per day information of story points and counts by state for the given iteration.

@return [DailyHistoryContainer]

# File lib/tracker_api/resources/iteration.rb, line 38
def get_history
  Endpoints::Iteration.new(client).get_history(project_id, number)
end
stories=(data) click to toggle source
Calls superclass method
# File lib/tracker_api/resources/iteration.rb, line 24
def stories=(data)
  super.each { |s| s.client = client }
end