tarpon 0.2.0 → 0.2.1

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: c6a65859f989fffb6bd8b475ba7c4b9868437d5fdcf625e0d4707a787c4143da
4
- data.tar.gz: 35bd6987ce3cf9eda1a035a48c90bdc07e687de617c7fedd671ec53dcaf0695f
3
+ metadata.gz: 43d32ae8222984c5d2c3bda9e1180af14df41282df57877738e54f7b527613ee
4
+ data.tar.gz: 970daff511109f860752b86d8a5455f213f62a39d58dcdecbad7a90b08d5bab0
5
5
  SHA512:
6
- metadata.gz: 3c2bc8ca48ddf4240fab201af578eb8408b6d446274232f1ee939157af3a098ed9ca6b22ddf39b54b3da0b65feac0ee7400edb5fe15978a778229507b5ccd7b0
7
- data.tar.gz: 0f171966fa51d6ff53b0ad1e2e886107e46d7f1947061a3d37163a00926b5bb278894a8a6cefc03bab0e31aebbb56f2a28674fbf080ae98cfba3fc5f413e76a4
6
+ metadata.gz: 4b7afdaf330f8c8045fc50ec53218943ddd370afd655dcb4d0c9899882210a5970d6b21f217755fdaeabc9d475e986064240fd3d09fc35efe1d00e1c935a9a3a
7
+ data.tar.gz: f318b1b22b050f49bd57abb41db3d9ca96e90f3697d3166355402fa64922cf665b1b4e431291c0c4e24e402de85f47b4514b172989338a9ced6d069f48a78110
@@ -32,7 +32,7 @@ module Tarpon
32
32
  def parse_body(http_response)
33
33
  return {} if http_response.body.empty?
34
34
 
35
- JSON.parse(http_response.body, symbolize_names: true)
35
+ JSON.parse(http_response.body.to_s, symbolize_names: true)
36
36
  end
37
37
 
38
38
  def create_response(http_response)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tarpon
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tarpon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Igor Belo
@@ -108,7 +108,7 @@ dependencies:
108
108
  - - "~>"
109
109
  - !ruby/object:Gem::Version
110
110
  version: '3.8'
111
- description: A ruby interface to RevenueCat REST API
111
+ description: A Ruby interface to RevenueCat REST API
112
112
  email:
113
113
  - igor.belo@fishbrain.com
114
114
  executables: []
@@ -134,8 +134,8 @@ licenses:
134
134
  - MIT
135
135
  metadata:
136
136
  homepage_uri: https://github.com/fishbrain/tarpon
137
- source_code_uri: https://github.com/fishbrain/tarpon
138
- changelog_uri: https://github.com/fishbrain/tarpon/CHANGELOG.md
137
+ source_code_uri: https://github.com/fishbrain/tarpon.git
138
+ changelog_uri: https://github.com/fishbrain/tarpon/blob/master/CHANGELOG.md
139
139
  post_install_message:
140
140
  rdoc_options: []
141
141
  require_paths:
@@ -154,5 +154,5 @@ requirements: []
154
154
  rubygems_version: 3.0.3
155
155
  signing_key:
156
156
  specification_version: 4
157
- summary: A ruby interface to RevenueCat REST API
157
+ summary: A Ruby interface to RevenueCat REST API
158
158
  test_files: []