cloud-waba-ruby-client 0.0.7 → 0.0.8

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: 8109b7e99d244e79bf1ccff9a3342a630a54bfe3dec3458d2b38dc529a62ca9d
4
- data.tar.gz: 51c7317afcc5b2381a7d4aeae236b43a58ebf8d960d2342ec2d5a3e46c58e25f
3
+ metadata.gz: b3bc4d08be977a4a8d16701fc5cb5b037aea2004628888b18d39733c30cb258a
4
+ data.tar.gz: 6f84106e2196f1e369c51016b6d87ce3c4594c7ba68d35f50d8ae6dcf7bbdab5
5
5
  SHA512:
6
- metadata.gz: 7d1eb2b16aef7bef41e9d9c83d55b71fe3957b6be69ff82155cb0472b6c932ad86336f93103af8eb0384daa7b528c51c9cf9be158000b3a75621bb3a0a2215d9
7
- data.tar.gz: 9dfe39bf65f578644527362b6c3d075ea27e7b5beefa35523a3eb72368247664f778963129e45daa67f884d8db2740375b5b099eade0b1754e36996635b3d8e6
6
+ metadata.gz: cf7475b7e91ff0098fa85e5c8cbd187946bbfbcf06f59f82bf4b0b355a78864542c464489510172d4521b34b88f0406d37fe69ae8ca9688efc218ea4e95bc4bd
7
+ data.tar.gz: b714356912b941a45adb19f69ada1d4e1c5765a039523ff74cfd059de164e6aa431fa0d12f96a0470967ff33a58de1d4c303e3dac7174c8ae2b7aa53bd5773d1
data/README.md CHANGED
@@ -7,7 +7,7 @@ Ruby wrapper for [Cloud WhatsApp Business API](https://developers.facebook.com/d
7
7
  Add following line to your Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'cloud-waba-ruby-client', '~> 0.0.7'
10
+ gem 'cloud-waba-ruby-client', '~> 0.0.8'
11
11
  ```
12
12
 
13
13
  then run
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cloud-waba-ruby-client"
3
- s.version = "0.0.7"
3
+ s.version = "0.0.8"
4
4
  s.summary = "Cloud Waba Client for Ruby."
5
5
  s.description = "A simple API wrapper for Cloud Whatsapp Business API"
6
6
  s.authors = ["Ahmed Bassell"]
@@ -258,7 +258,7 @@ module API
258
258
  end
259
259
  def download_media(media_url:)
260
260
  client = ::CloudWaba::HttpClient.new(base_url: media_url, auth_token: @config.access_token)
261
- response = with_error_handling { client.get }
261
+ response = client.get
262
262
  StringIO.new(response.body)
263
263
  end
264
264
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud-waba-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ahmed Bassell