google-apis-tasks_v1 0.23.0 → 0.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/tasks_v1/classes.rb +104 -4
- data/lib/google/apis/tasks_v1/gem_version.rb +3 -3
- data/lib/google/apis/tasks_v1/representations.rb +47 -0
- data/lib/google/apis/tasks_v1/service.rb +42 -18
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87946d1c15246e99c893b4d059ad7d5c87bc77579a321da0ba9d22b648abb449
|
4
|
+
data.tar.gz: 11f12724fd755e104b9c29030f7f819b818a0818154bb9b3daa35cd221c52358
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57b4afb676f47245e340d2f3a69197045a131817c646eb7e421a61704a030c6a054e626c11fcb15657e632de16825b6a9d47cb5de1ae229b1c6f488e6cb1a88f
|
7
|
+
data.tar.gz: 28ef84aa4e0f5cb5916611ab5a7177928283d0e0b4ace61f192e4825a8cc93de65a3e2211594789f5614cdce3cfa71b7572f715c52054f44345378e87d41a179
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-tasks_v1
|
2
2
|
|
3
|
+
### v0.25.0 (2025-01-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250105
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.24.0 (2024-07-07)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240630
|
11
|
+
|
3
12
|
### v0.23.0 (2024-06-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240526
|
@@ -22,17 +22,114 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module TasksV1
|
24
24
|
|
25
|
+
# Information about the source of the task assignment (Document, Chat Space).
|
26
|
+
class AssignmentInfo
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Information about the Drive resource where a task was assigned from (the
|
30
|
+
# document, sheet, etc.).
|
31
|
+
# Corresponds to the JSON property `driveResourceInfo`
|
32
|
+
# @return [Google::Apis::TasksV1::DriveResourceInfo]
|
33
|
+
attr_accessor :drive_resource_info
|
34
|
+
|
35
|
+
# Output only. An absolute link to the original task in the surface of
|
36
|
+
# assignment (Docs, Chat spaces, etc.).
|
37
|
+
# Corresponds to the JSON property `linkToTask`
|
38
|
+
# @return [String]
|
39
|
+
attr_accessor :link_to_task
|
40
|
+
|
41
|
+
# Information about the Chat Space where a task was assigned from.
|
42
|
+
# Corresponds to the JSON property `spaceInfo`
|
43
|
+
# @return [Google::Apis::TasksV1::SpaceInfo]
|
44
|
+
attr_accessor :space_info
|
45
|
+
|
46
|
+
# Output only. The type of surface this assigned task originates from. Currently
|
47
|
+
# limited to DOCUMENT or SPACE.
|
48
|
+
# Corresponds to the JSON property `surfaceType`
|
49
|
+
# @return [String]
|
50
|
+
attr_accessor :surface_type
|
51
|
+
|
52
|
+
def initialize(**args)
|
53
|
+
update!(**args)
|
54
|
+
end
|
55
|
+
|
56
|
+
# Update properties of this object
|
57
|
+
def update!(**args)
|
58
|
+
@drive_resource_info = args[:drive_resource_info] if args.key?(:drive_resource_info)
|
59
|
+
@link_to_task = args[:link_to_task] if args.key?(:link_to_task)
|
60
|
+
@space_info = args[:space_info] if args.key?(:space_info)
|
61
|
+
@surface_type = args[:surface_type] if args.key?(:surface_type)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# Information about the Drive resource where a task was assigned from (the
|
66
|
+
# document, sheet, etc.).
|
67
|
+
class DriveResourceInfo
|
68
|
+
include Google::Apis::Core::Hashable
|
69
|
+
|
70
|
+
# Output only. Identifier of the file in the Drive API.
|
71
|
+
# Corresponds to the JSON property `driveFileId`
|
72
|
+
# @return [String]
|
73
|
+
attr_accessor :drive_file_id
|
74
|
+
|
75
|
+
# Output only. Resource key required to access files shared via a shared link.
|
76
|
+
# Not required for all files. See also developers.google.com/drive/api/guides/
|
77
|
+
# resource-keys.
|
78
|
+
# Corresponds to the JSON property `resourceKey`
|
79
|
+
# @return [String]
|
80
|
+
attr_accessor :resource_key
|
81
|
+
|
82
|
+
def initialize(**args)
|
83
|
+
update!(**args)
|
84
|
+
end
|
85
|
+
|
86
|
+
# Update properties of this object
|
87
|
+
def update!(**args)
|
88
|
+
@drive_file_id = args[:drive_file_id] if args.key?(:drive_file_id)
|
89
|
+
@resource_key = args[:resource_key] if args.key?(:resource_key)
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# Information about the Chat Space where a task was assigned from.
|
94
|
+
class SpaceInfo
|
95
|
+
include Google::Apis::Core::Hashable
|
96
|
+
|
97
|
+
# Output only. The Chat space where this task originates from. The format is "
|
98
|
+
# spaces/`space`".
|
99
|
+
# Corresponds to the JSON property `space`
|
100
|
+
# @return [String]
|
101
|
+
attr_accessor :space
|
102
|
+
|
103
|
+
def initialize(**args)
|
104
|
+
update!(**args)
|
105
|
+
end
|
106
|
+
|
107
|
+
# Update properties of this object
|
108
|
+
def update!(**args)
|
109
|
+
@space = args[:space] if args.key?(:space)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
25
113
|
#
|
26
114
|
class Task
|
27
115
|
include Google::Apis::Core::Hashable
|
28
116
|
|
117
|
+
# Information about the source of the task assignment (Document, Chat Space).
|
118
|
+
# Corresponds to the JSON property `assignmentInfo`
|
119
|
+
# @return [Google::Apis::TasksV1::AssignmentInfo]
|
120
|
+
attr_accessor :assignment_info
|
121
|
+
|
29
122
|
# Completion date of the task (as a RFC 3339 timestamp). This field is omitted
|
30
123
|
# if the task has not been completed.
|
31
124
|
# Corresponds to the JSON property `completed`
|
32
125
|
# @return [String]
|
33
126
|
attr_accessor :completed
|
34
127
|
|
35
|
-
# Flag indicating whether the task has been deleted.
|
128
|
+
# Flag indicating whether the task has been deleted. For assigned tasks this
|
129
|
+
# field is read-only. They can only be deleted by calling tasks.delete, in which
|
130
|
+
# case both the assigned task and the original task (in Docs or Chat Spaces) are
|
131
|
+
# deleted. To delete the assigned task only, navigate to the assignment surface
|
132
|
+
# and unassign the task from there. The default is False.
|
36
133
|
# Corresponds to the JSON property `deleted`
|
37
134
|
# @return [Boolean]
|
38
135
|
attr_accessor :deleted
|
@@ -74,14 +171,16 @@ module Google
|
|
74
171
|
# @return [Array<Google::Apis::TasksV1::Task::Link>]
|
75
172
|
attr_accessor :links
|
76
173
|
|
77
|
-
# Notes describing the task.
|
174
|
+
# Notes describing the task. Tasks assigned from Google Docs cannot have notes.
|
175
|
+
# Optional. Maximum length allowed: 8192 characters.
|
78
176
|
# Corresponds to the JSON property `notes`
|
79
177
|
# @return [String]
|
80
178
|
attr_accessor :notes
|
81
179
|
|
82
180
|
# Output only. Parent task identifier. This field is omitted if it is a top-
|
83
|
-
# level task.
|
84
|
-
#
|
181
|
+
# level task. Use the "move" method to move the task under a different parent or
|
182
|
+
# to the top level. A parent task can never be an assigned task (from Chat
|
183
|
+
# Spaces, Docs). This field is read-only.
|
85
184
|
# Corresponds to the JSON property `parent`
|
86
185
|
# @return [String]
|
87
186
|
attr_accessor :parent
|
@@ -128,6 +227,7 @@ module Google
|
|
128
227
|
|
129
228
|
# Update properties of this object
|
130
229
|
def update!(**args)
|
230
|
+
@assignment_info = args[:assignment_info] if args.key?(:assignment_info)
|
131
231
|
@completed = args[:completed] if args.key?(:completed)
|
132
232
|
@deleted = args[:deleted] if args.key?(:deleted)
|
133
233
|
@due = args[:due] if args.key?(:due)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TasksV1
|
18
18
|
# Version of the google-apis-tasks_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250105"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,24 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module TasksV1
|
24
24
|
|
25
|
+
class AssignmentInfo
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class DriveResourceInfo
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class SpaceInfo
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
25
43
|
class Task
|
26
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
45
|
|
@@ -52,9 +70,38 @@ module Google
|
|
52
70
|
include Google::Apis::Core::JsonObjectSupport
|
53
71
|
end
|
54
72
|
|
73
|
+
class AssignmentInfo
|
74
|
+
# @private
|
75
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
76
|
+
property :drive_resource_info, as: 'driveResourceInfo', class: Google::Apis::TasksV1::DriveResourceInfo, decorator: Google::Apis::TasksV1::DriveResourceInfo::Representation
|
77
|
+
|
78
|
+
property :link_to_task, as: 'linkToTask'
|
79
|
+
property :space_info, as: 'spaceInfo', class: Google::Apis::TasksV1::SpaceInfo, decorator: Google::Apis::TasksV1::SpaceInfo::Representation
|
80
|
+
|
81
|
+
property :surface_type, as: 'surfaceType'
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
class DriveResourceInfo
|
86
|
+
# @private
|
87
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
88
|
+
property :drive_file_id, as: 'driveFileId'
|
89
|
+
property :resource_key, as: 'resourceKey'
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
class SpaceInfo
|
94
|
+
# @private
|
95
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
96
|
+
property :space, as: 'space'
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
55
100
|
class Task
|
56
101
|
# @private
|
57
102
|
class Representation < Google::Apis::Core::JsonRepresentation
|
103
|
+
property :assignment_info, as: 'assignmentInfo', class: Google::Apis::TasksV1::AssignmentInfo, decorator: Google::Apis::TasksV1::AssignmentInfo::Representation
|
104
|
+
|
58
105
|
property :completed, as: 'completed'
|
59
106
|
property :deleted, as: 'deleted'
|
60
107
|
property :due, as: 'due'
|
@@ -51,7 +51,9 @@ module Google
|
|
51
51
|
@batch_path = 'batch'
|
52
52
|
end
|
53
53
|
|
54
|
-
# Deletes the authenticated user's specified task list.
|
54
|
+
# Deletes the authenticated user's specified task list. If the list contains
|
55
|
+
# assigned tasks, both the assigned tasks and the original tasks in the
|
56
|
+
# assignment surface (Docs, Chat Spaces) are deleted.
|
55
57
|
# @param [String] tasklist
|
56
58
|
# Task list identifier.
|
57
59
|
# @param [String] fields
|
@@ -272,7 +274,10 @@ module Google
|
|
272
274
|
execute_or_queue_command(command, &block)
|
273
275
|
end
|
274
276
|
|
275
|
-
# Deletes the specified task from the task list.
|
277
|
+
# Deletes the specified task from the task list. If the task is assigned, both
|
278
|
+
# the assigned task and the original task (in Docs, Chat Spaces) are deleted. To
|
279
|
+
# delete the assigned task only, navigate to the assignment surface and unassign
|
280
|
+
# the task from there.
|
276
281
|
# @param [String] tasklist
|
277
282
|
# Task list identifier.
|
278
283
|
# @param [String] task
|
@@ -336,14 +341,18 @@ module Google
|
|
336
341
|
execute_or_queue_command(command, &block)
|
337
342
|
end
|
338
343
|
|
339
|
-
# Creates a new task on the specified task list.
|
340
|
-
#
|
344
|
+
# Creates a new task on the specified task list. Tasks assigned from Docs or
|
345
|
+
# Chat Spaces cannot be inserted from Tasks Public API; they can only be created
|
346
|
+
# by assigning them from Docs or Chat Spaces. A user can have up to 20,000 non-
|
347
|
+
# hidden tasks per list and up to 100,000 tasks in total at a time.
|
341
348
|
# @param [String] tasklist
|
342
349
|
# Task list identifier.
|
343
350
|
# @param [Google::Apis::TasksV1::Task] task_object
|
344
351
|
# @param [String] parent
|
345
352
|
# Parent task identifier. If the task is created at the top level, this
|
346
|
-
# parameter is omitted.
|
353
|
+
# parameter is omitted. An assigned task cannot be a parent task, nor can it
|
354
|
+
# have a parent. Setting the parent to an assigned task results in failure of
|
355
|
+
# the request. Optional.
|
347
356
|
# @param [String] previous
|
348
357
|
# Previous sibling task identifier. If the task is created at the first position
|
349
358
|
# among its siblings, this parameter is omitted. Optional.
|
@@ -378,8 +387,9 @@ module Google
|
|
378
387
|
execute_or_queue_command(command, &block)
|
379
388
|
end
|
380
389
|
|
381
|
-
# Returns all tasks in the specified task list.
|
382
|
-
#
|
390
|
+
# Returns all tasks in the specified task list. Does not return assigned tasks
|
391
|
+
# be default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden
|
392
|
+
# tasks per list and up to 100,000 tasks in total at a time.
|
383
393
|
# @param [String] tasklist
|
384
394
|
# Task list identifier.
|
385
395
|
# @param [String] completed_max
|
@@ -399,10 +409,13 @@ module Google
|
|
399
409
|
# allowed: 100).
|
400
410
|
# @param [String] page_token
|
401
411
|
# Token specifying the result page to return. Optional.
|
412
|
+
# @param [Boolean] show_assigned
|
413
|
+
# Optional. Flag indicating whether tasks assigned to the current user are
|
414
|
+
# returned in the result. Optional. The default is False.
|
402
415
|
# @param [Boolean] show_completed
|
403
|
-
# Flag indicating whether completed tasks are returned in the result.
|
404
|
-
#
|
405
|
-
#
|
416
|
+
# Flag indicating whether completed tasks are returned in the result. Note that
|
417
|
+
# showHidden must also be True to show tasks completed in first party clients,
|
418
|
+
# such as the web UI and Google's mobile apps. Optional. The default is True.
|
406
419
|
# @param [Boolean] show_deleted
|
407
420
|
# Flag indicating whether deleted tasks are returned in the result. Optional.
|
408
421
|
# The default is False.
|
@@ -429,7 +442,7 @@ module Google
|
|
429
442
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
430
443
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
431
444
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
432
|
-
def list_tasks(tasklist, completed_max: nil, completed_min: nil, due_max: nil, due_min: nil, max_results: nil, page_token: nil, show_completed: nil, show_deleted: nil, show_hidden: nil, updated_min: nil, fields: nil, quota_user: nil, options: nil, &block)
|
445
|
+
def list_tasks(tasklist, completed_max: nil, completed_min: nil, due_max: nil, due_min: nil, max_results: nil, page_token: nil, show_assigned: nil, show_completed: nil, show_deleted: nil, show_hidden: nil, updated_min: nil, fields: nil, quota_user: nil, options: nil, &block)
|
433
446
|
command = make_simple_command(:get, 'tasks/v1/lists/{tasklist}/tasks', options)
|
434
447
|
command.response_representation = Google::Apis::TasksV1::Tasks::Representation
|
435
448
|
command.response_class = Google::Apis::TasksV1::Tasks
|
@@ -440,6 +453,7 @@ module Google
|
|
440
453
|
command.query['dueMin'] = due_min unless due_min.nil?
|
441
454
|
command.query['maxResults'] = max_results unless max_results.nil?
|
442
455
|
command.query['pageToken'] = page_token unless page_token.nil?
|
456
|
+
command.query['showAssigned'] = show_assigned unless show_assigned.nil?
|
443
457
|
command.query['showCompleted'] = show_completed unless show_completed.nil?
|
444
458
|
command.query['showDeleted'] = show_deleted unless show_deleted.nil?
|
445
459
|
command.query['showHidden'] = show_hidden unless show_hidden.nil?
|
@@ -449,20 +463,29 @@ module Google
|
|
449
463
|
execute_or_queue_command(command, &block)
|
450
464
|
end
|
451
465
|
|
452
|
-
# Moves the specified task to another position in the task list.
|
453
|
-
#
|
454
|
-
#
|
455
|
-
#
|
466
|
+
# Moves the specified task to another position in the destination task list. If
|
467
|
+
# the destination list is not specified, the task is moved within its current
|
468
|
+
# list. This can include putting it as a child task under a new parent and/or
|
469
|
+
# move it to a different position among its sibling tasks. A user can have up to
|
470
|
+
# 2,000 subtasks per task.
|
456
471
|
# @param [String] tasklist
|
457
472
|
# Task list identifier.
|
458
473
|
# @param [String] task
|
459
474
|
# Task identifier.
|
475
|
+
# @param [String] destination_tasklist
|
476
|
+
# Optional. Destination task list identifier. If set, the task is moved from
|
477
|
+
# tasklist to the destinationTasklist list. Otherwise the task is moved within
|
478
|
+
# its current list. Recurrent tasks cannot currently be moved between lists.
|
479
|
+
# Optional.
|
460
480
|
# @param [String] parent
|
461
481
|
# New parent task identifier. If the task is moved to the top level, this
|
462
|
-
# parameter is omitted.
|
482
|
+
# parameter is omitted. The task set as parent must exist in the task list and
|
483
|
+
# can not be hidden. Assigned tasks can not be set as parent task (have subtasks)
|
484
|
+
# or be moved under a parent task (become subtasks). Optional.
|
463
485
|
# @param [String] previous
|
464
486
|
# New previous sibling task identifier. If the task is moved to the first
|
465
|
-
# position among its siblings, this parameter is omitted.
|
487
|
+
# position among its siblings, this parameter is omitted. The task set as
|
488
|
+
# previous must exist in the task list and can not be hidden. Optional.
|
466
489
|
# @param [String] fields
|
467
490
|
# Selector specifying which fields to include in a partial response.
|
468
491
|
# @param [String] quota_user
|
@@ -480,12 +503,13 @@ module Google
|
|
480
503
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
481
504
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
482
505
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
483
|
-
def move_task(tasklist, task, parent: nil, previous: nil, fields: nil, quota_user: nil, options: nil, &block)
|
506
|
+
def move_task(tasklist, task, destination_tasklist: nil, parent: nil, previous: nil, fields: nil, quota_user: nil, options: nil, &block)
|
484
507
|
command = make_simple_command(:post, 'tasks/v1/lists/{tasklist}/tasks/{task}/move', options)
|
485
508
|
command.response_representation = Google::Apis::TasksV1::Task::Representation
|
486
509
|
command.response_class = Google::Apis::TasksV1::Task
|
487
510
|
command.params['tasklist'] = tasklist unless tasklist.nil?
|
488
511
|
command.params['task'] = task unless task.nil?
|
512
|
+
command.query['destinationTasklist'] = destination_tasklist unless destination_tasklist.nil?
|
489
513
|
command.query['parent'] = parent unless parent.nil?
|
490
514
|
command.query['previous'] = previous unless previous.nil?
|
491
515
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tasks_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tasks_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tasks_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tasks_v1/v0.25.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tasks_v1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Google Tasks API V1
|
82
79
|
test_files: []
|