lib/tracker_api/resources/epic.rb in tracker_api-0.2.12 vs lib/tracker_api/resources/epic.rb in tracker_api-1.0.0

- old
+ new

@@ -1,17 +1,17 @@ module TrackerApi module Resources class Epic - include Shared::HasId + include Shared::Base attribute :client - attribute :comment_ids, Array[Integer] - attribute :comments, Array[Comment] + attribute :comment_ids, Shared::Collection[Integer] + attribute :comments, Shared::Collection[Comment] attribute :created_at, DateTime attribute :description, String - attribute :follower_ids, Array[Integer] - attribute :followers, Array[Person] + attribute :follower_ids, Shared::Collection[Integer] + attribute :followers, Shared::Collection[Person] attribute :kind, String attribute :label, Label attribute :label_id, Integer attribute :name, String attribute :project_id, Integer