Class: TrackerApi::Resources::Iteration
- Defined in:
- lib/tracker_api/resources/iteration.rb
Instance Method Summary collapse
-
#cycle_time_details ⇒ Array[CycleTimeDetails]
Provides a list of all the cycle_time_details of each story in the iteration.
-
#get_history ⇒ DailyHistoryContainer
Returns per day information of story points and counts by state for the given iteration.
- #stories=(data) ⇒ Object
Instance Method Details
#cycle_time_details ⇒ Array[CycleTimeDetails]
Provides a list of all the cycle_time_details of each story in the iteration.
31 32 33 |
# 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 ⇒ DailyHistoryContainer
Returns per day information of story points and counts by state for the given iteration.
38 39 40 |
# File 'lib/tracker_api/resources/iteration.rb', line 38 def get_history Endpoints::Iteration.new(client).get_history(project_id, number) end |
#stories=(data) ⇒ Object
24 25 26 |
# File 'lib/tracker_api/resources/iteration.rb', line 24 def stories=(data) super.each { |s| s.client = client } end |