payjp_mock 0.2.0 → 0.3.0

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
  SHA1:
3
- metadata.gz: 781df7ed343c3d3d363d3c94cb1f6c27946b93d2
4
- data.tar.gz: b90ae66c681c1b4650d1668f8d89c54da3cdd608
3
+ metadata.gz: c7f977063630656f5c88303550868aa9236b9e4a
4
+ data.tar.gz: a2e2189498c05968358a6fb49a27b56402905cee
5
5
  SHA512:
6
- metadata.gz: c4213de616fc6ba5d3b6420171700e4c9426011921720f64b472de97843213794b5c6f2d82253d39ef91e8c6abb16fc3dd21d32eb48b8d77174d6a7b61f5e6c2
7
- data.tar.gz: fbd868f91ab569b0fc8dc168ede3eef25b494fbcf42b9e132a0c1a2d9c474d7d7df5a03bc36648fd4f318c54b7726ba4e41cf2f123ff25f39e88b9a41e25b618
6
+ metadata.gz: 3ea678234fd4172642bf3b2d339723b5a2fc87e589d123193d59bbd2667c7a936a9e42c7885bc05d20dd083382716b5ab25012035b8f0145da32a43b5f9db272
7
+ data.tar.gz: 80607c4f44c6c192814301d70b5231d9f303dc6049fd5a87e6a4ff9ce87360dd2d96065a980f3288c095238e9f91361f9b6a05fc1e9416a3cf57eb9032d166ee
@@ -3,6 +3,7 @@ require 'webmock'
3
3
 
4
4
  class PayjpMock::Request
5
5
  include WebMock::API
6
+ using PayjpMock::Ext::Hash
6
7
 
7
8
  API_HOST = 'api.pay.jp'.freeze
8
9
  API_VERSION = 'v1'.freeze
@@ -17,5 +18,7 @@ class PayjpMock::Request
17
18
  def stub
18
19
  stub_request(@method, @url)
19
20
  .to_return(body: @response.body, status: @response.status, exception: @response.exception)
21
+
22
+ JSON.parse(@response.body || '{}').symbolize_keys
20
23
  end
21
24
  end
@@ -1,3 +1,3 @@
1
1
  module PayjpMock
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: payjp_mock
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - kirikiriyamama