todoist-ruby 0.2.6 → 0.2.7
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/README.md +1 -0
- data/lib/todoist/sync/items.rb +3 -4
- data/lib/todoist/sync/projects.rb +3 -4
- data/lib/todoist/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fac119f56ff88593c57666afa9d7f479f2f628ba240960a47476e21a7542a2aa
|
4
|
+
data.tar.gz: c8cf6695169679ddad272f5836b15f8e40b67ea3cf4502c9156a13f648658fd3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf989e7a5c79620c636393f8b8da0d8fa2ac56bb82eb1708d1c13b4f93328931526b87bfa7d264f70577d5b6df9b72ab4874bffbfc91879a1ff3265bd535b1b6
|
7
|
+
data.tar.gz: 5662e4de13fe2a8124f2aa90e433820a58abbe35b0d23f37a05541bd29ad8d735be823289ccc03dac3ddc02dbc27de56bd21e08f09ddc21d12ff8976466a4825
|
data/README.md
CHANGED
@@ -232,6 +232,7 @@ Use:
|
|
232
232
|
|
233
233
|
|
234
234
|
## Version History
|
235
|
+
* 0.2.6: Fixed File.exists? to File.exist. Updated deletion API call for items and projects with updated tests. Special thank you to @mtantawy for the pull request and updates!
|
235
236
|
* 0.2.5: Fix for Extra params aren't sent when creating a item when using the misc add_item method. (Thank you to @juliend2)
|
236
237
|
* 0.2.4: Numerous bug fixes to address v7 to v8 changes that go beyond just an endpoint change. Passing all specs.
|
237
238
|
* 0.2.3: Updated to v8 endpoints
|
data/lib/todoist/sync/items.rb
CHANGED
@@ -18,10 +18,9 @@ module Todoist
|
|
18
18
|
return @client.api_helper.command(args, "item_update")
|
19
19
|
end
|
20
20
|
|
21
|
-
# Delete
|
22
|
-
def delete(
|
23
|
-
|
24
|
-
args = {ids: item_ids.to_json}
|
21
|
+
# Delete an item given an item id
|
22
|
+
def delete(item_id)
|
23
|
+
args = {id: item_id}
|
25
24
|
return @client.api_helper.command(args, "item_delete")
|
26
25
|
end
|
27
26
|
|
@@ -15,10 +15,9 @@ module Todoist
|
|
15
15
|
return @client.api_helper.add(args, "project_add")
|
16
16
|
end
|
17
17
|
|
18
|
-
# Delete
|
19
|
-
def delete(
|
20
|
-
|
21
|
-
args = {ids: project_ids.to_json}
|
18
|
+
# Delete a project given a project id
|
19
|
+
def delete(project_id)
|
20
|
+
args = {id: project_id}
|
22
21
|
return @client.api_helper.command(args, "project_delete")
|
23
22
|
end
|
24
23
|
|
data/lib/todoist/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: todoist-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Han Yuan
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -231,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
231
231
|
- !ruby/object:Gem::Version
|
232
232
|
version: '0'
|
233
233
|
requirements: []
|
234
|
-
rubygems_version: 3.
|
234
|
+
rubygems_version: 3.4.10
|
235
235
|
signing_key:
|
236
236
|
specification_version: 4
|
237
237
|
summary: This gem provides access to the latest Todoist API.
|