pushbullet_client 0.0.13 → 0.0.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 912ca3e2d7523f0ff443e930bdf568ee33ce94f1e6a55e0bff918d011ddb305c
4
- data.tar.gz: e8eb9f47773b73faec9204afacf266f8be31c9a7188f7cdfe6622bdff562a9ca
3
+ metadata.gz: ccad9a1be453e7ca6bad8187e22e19a10546925c0132faf38a31ebd9cd4ffba0
4
+ data.tar.gz: 9687c810fe02e4d7acd5bc8a29ca275c50c1a945fece576252291ba8116a1fc3
5
5
  SHA512:
6
- metadata.gz: 81d94b9dd6d573f6cabf40ce15719a1322c6b2f5ea88a386c0f67032526c83ecde756f67ffc12507cbf5752fe815d41417117bb53af36aef69d9dc6461772df4
7
- data.tar.gz: f942f84ed4fb2d2147e2c7c9cb48f73edbe44503801995c7c78f43a2f60ce567571666c60b258c825b71f2d1f990b51488aaef1fcfbbe7b6c4c221de54722515
6
+ metadata.gz: fa91bf0c961372551dbb699a37f5b364ad5360232974cfe1bf0792f6ce1094efc5c858bb380b4373f81f2b83fbdd95e280032d4a8883cd08a2f0cea570cf1584
7
+ data.tar.gz: d34aca873ec1fc31bb2080a96015fd5e7f1f48fd8076df966e60f1733137d1ef2dcd72b97fbef1fe1bb4fc2fc5a32889a104b367f417bcc4dcdede2d4e9aee9b
@@ -6,8 +6,10 @@ module Pushbullet
6
6
  params = process_cursor(cursor, params: params)
7
7
 
8
8
  path = "permanents/#{device_identity}_threads"
9
- authorise_and_send(http_method: :get, path: path, params: params)
9
+ response = authorise_and_send(http_method: :get, path: path, params: params)
10
10
  @disable_limit = false
11
+
12
+ response
11
13
  end
12
14
 
13
15
  def permanent_conversation(device_identity:, thread_id:, params: {}, cursor: nil)
@@ -15,8 +17,10 @@ module Pushbullet
15
17
  params = process_cursor(cursor, params: params)
16
18
 
17
19
  path = "permanents/#{device_identity}_thread_#{thread_id}"
18
- authorise_and_send(http_method: :get, path: path, params: params)
20
+ response = authorise_and_send(http_method: :get, path: path, params: params)
19
21
  @disable_limit = false
22
+
23
+ response
20
24
  end
21
25
  end
22
26
  end
@@ -1,3 +1,3 @@
1
1
  module Pushbullet
2
- VERSION = '0.0.13'
2
+ VERSION = "0.0.14"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pushbullet_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - trex22