fio_api 0.0.9 → 0.0.10
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 +4 -4
- data/Gemfile +2 -0
- data/fio_api.gemspec +1 -1
- data/lib/base/deserializers/list_response_deserializer.rb +2 -0
- data/lib/fio_api.rb +2 -1
- metadata +2 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc55159a121e534fbc4cd4026c817f2659b251d3100ae163fc26ce30e8b9b504
|
4
|
+
data.tar.gz: 931218cb83b33ffe3af6f6385065c075915d759b37df9fef7d44c6d6d9e38e85
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 242daa426d0ca9749b3f7d816149a7087e2064d462bc0d2f7da485f93bc7b4092718704b78cbb019c1d6ccb19c33c58fbc7a1165c0bad8c6118ddcc3c96a8539
|
7
|
+
data.tar.gz: 5cfcbc4d3d3a20b22700068431cbcc64255b85f46118d39478f428b9940227a234fdde6ed14f50c08fe848ac497e49c0d42bd559aac27c2887a09ff557e8c5f4
|
data/Gemfile
CHANGED
data/fio_api.gemspec
CHANGED
@@ -26,6 +26,8 @@ module FioAPI
|
|
26
26
|
# New object with account and transactions attributes
|
27
27
|
#
|
28
28
|
def deserialize(json)
|
29
|
+
raise FioAPI::InvalidJsonResponse.new(json) if json.is_a?(String)
|
30
|
+
|
29
31
|
self.account = deserialize_account(json.try_path('accountStatement', 'info'))
|
30
32
|
self.transactions = deserialize_transactions(json.try_path('accountStatement', 'transactionList', 'transaction'))
|
31
33
|
self
|
data/lib/fio_api.rb
CHANGED
@@ -12,12 +12,13 @@ require 'base/payments/xml/root'
|
|
12
12
|
require 'base/payments/xml/item'
|
13
13
|
require 'base/deserializers/list_response_deserializer'
|
14
14
|
require 'base/deserializers/import_response_deserializer'
|
15
|
+
require 'base/errors/invalid_json_response'
|
15
16
|
|
16
17
|
module FioAPI
|
17
18
|
# == Returns:
|
18
19
|
# A string with current version of gem
|
19
20
|
#
|
20
|
-
VERSION = '0.0.
|
21
|
+
VERSION = '0.0.10'.freeze
|
21
22
|
|
22
23
|
# Set API token for requests
|
23
24
|
#
|
metadata
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fio_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robin Bortlik
|
8
8
|
- Adam Martinik
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
11
|
date: 2018-06-06 00:00:00.000000000 Z
|
@@ -180,7 +179,6 @@ homepage: http://github.com/14113/fio_api
|
|
180
179
|
licenses:
|
181
180
|
- MIT
|
182
181
|
metadata: {}
|
183
|
-
post_install_message:
|
184
182
|
rdoc_options: []
|
185
183
|
require_paths:
|
186
184
|
- lib
|
@@ -195,8 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
193
|
- !ruby/object:Gem::Version
|
196
194
|
version: '0'
|
197
195
|
requirements: []
|
198
|
-
rubygems_version: 3.
|
199
|
-
signing_key:
|
196
|
+
rubygems_version: 3.6.4
|
200
197
|
specification_version: 4
|
201
198
|
summary: API wrapper for FIO bank
|
202
199
|
test_files: []
|