lib/tracker_api/resources/iteration.rb in tracker_api-1.1.0 vs lib/tracker_api/resources/iteration.rb in tracker_api-1.1.1

- old
+ new

@@ -11,11 +11,11 @@ attribute :length, Integer attribute :number, Integer attribute :planned, Boolean attribute :project_id, Integer attribute :start, DateTime - attribute :stories, Shared::Collection[Story] - attribute :story_ids, Shared::Collection[Integer] + attribute :stories, [Story] + attribute :story_ids, [Integer] attribute :team_strength, Float def stories=(data) super.each { |s| s.client = client } end