config/definitions.rb in checkoff-0.44.3 vs config/definitions.rb in checkoff-0.44.4
- old
+ new
@@ -87,26 +87,26 @@
# def find_all(assignee: nil, workspace: nil, project: nil, section: nil,
# tag: nil, user_task_list: nil, completed_since: nil,
# modified_since: nil, per_page: 20, options: {}); end
# # @param section [Asana::Resources::section]
# # @param options [Hash] the request I/O options.
-# # @return [Array<Asana::Resources::Task>]
+# # @return [Enumerable<Asana::Resources::Task>]
# def get_tasks(assignee: nil,
# project: nil,
# section: nil,
# workspace: nil,
# completed_since: nil,
# per_page: 20,
# modified_since: nil,
# options: {}); end
# end
# class Workspace
-# # @return [Array<Asana::Resources::Workspace>]
+# # @return [Enumerable<Asana::Resources::Workspace>]
# def find_all; end
# end
# class Section
# # @param project_gid [String]
-# # @return [Array<Asana::Resources::Section>]
+# # @return [Enumerable<Asana::Resources::Section>]
# def get_sections_for_project(client, project_gid:, options: {}); end
# end
# class Project
# # Returns the compact project records for all projects in the workspace.
# #