wolf_core 1.0.1 → 1.0.2

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: 34de3ce44a6c43a34f730c9a1e1eebf091f63ce6a94c0acbccfc6f1e15e151ab
4
- data.tar.gz: 3e16fb618f71f3c36f17dc312933dfad77ce0f32a0d3eb87bf775d2d16591c57
3
+ metadata.gz: 713728dd5e1dcb51f570691d0c6db147a43aa3ca51641b8a4ae041c34f3a2444
4
+ data.tar.gz: f2633bf41157b9e4f4003bac49bf49e1a1ce9c6a40f5551ec0974702733bf396
5
5
  SHA512:
6
- metadata.gz: 95f3529936b64862714e4163e793a81e260193efd35dcc845569e80ea606904da74040bc17b0c69c75ff08f16d3c7361b9c6f05bc13d63cf71492ec8c8186f34
7
- data.tar.gz: 635cd4831a4582f5bb134a917125fb95170b2b21f569e73c3d268ab37116839ce68917a4b2321cb3845cf0f8bd1fd180495f6ec03ad7395eb3a381f4f7aaa9be
6
+ metadata.gz: 75e0dbf1afad256967de638b6b680ede71cf3c98fb7424bfa73915dd5843c94764b7c5a19f240d7821283c2de2e6c4a4c84233212c8f91a4db9abb8e65095109
7
+ data.tar.gz: 65097203aeda8d2f63ca98b3ab74141e325fe11364dfa9eece70cb9850a69783d56ba17f076ad177adc2cd94d1dcdc8c96c9910d6fa1fcdd4ae4bf2e55397f51
@@ -34,8 +34,8 @@ module WolfCore
34
34
  WolfCore::HttpDataSource.http_get(url: url, headers: headers, query: query)
35
35
  end
36
36
 
37
- def parsed_http_post(url:, headers: {}, query: nil)
38
- response = http_post(url: url, headers: headers, query: query)
37
+ def parsed_http_post(url:, body:, headers: {}, query: nil)
38
+ response = http_post(url: url, headers: headers, query: query, body: body)
39
39
  parse_http_response(response)
40
40
  end
41
41
 
@@ -65,8 +65,8 @@ module WolfCore
65
65
  WolfCore::HttpDataSource.http_post(url: url, headers: headers, query: query, body: body)
66
66
  end
67
67
 
68
- def parsed_http_put(url:, headers: {}, query: nil)
69
- response = http_put(url: url, headers: headers, query: query)
68
+ def parsed_http_put(url:, body:, headers: {}, query: nil)
69
+ response = http_put(url: url, headers: headers, query: query, body: body)
70
70
  parse_http_response(response)
71
71
  end
72
72
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.1"
4
+ VERSION = "1.0.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo