bloom_net_center_client 0.3.1 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e37ccd708abd09fe1cf05b056a6ecc9e354fcd93
|
4
|
+
data.tar.gz: 9a6e8a131c461611b16a778b4ce65712227b2b33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f68bd64e2331c00a634fe275e095be03c91f33c0cd45bd2421e07bbf75f466b50d48de665147b556a0953b0ac12617e777d12ef973df1ba26c008ad989b52b00
|
7
|
+
data.tar.gz: f17ab84198745195b4df2b7b80c231f74cbd73798a5a724c1fe15d728974d1555c822b4090fdec67b8736e421f4ebe2836b79305446f092476593a977e419f7a
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
6
6
|
|
7
|
+
## [0.4.0] - 2017-04-03
|
8
|
+
### Changed
|
9
|
+
- Rename `contact_number` to `mobile` (follow center's new API)
|
10
|
+
|
7
11
|
## [0.3.1] - 2017-03-31
|
8
12
|
### Fixed
|
9
13
|
- FindTxnResponse: `txn` is nil (no longer raises exception) when the response is invalid
|
@@ -9,13 +9,13 @@ module BloomNetCenterClient
|
|
9
9
|
attribute :sender_street, String
|
10
10
|
attribute :sender_city, String
|
11
11
|
attribute :sender_province, String
|
12
|
-
attribute :
|
12
|
+
attribute :sender_mobile, String
|
13
13
|
attribute :recipient_first_name, String
|
14
14
|
attribute :recipient_last_name, String
|
15
15
|
attribute :recipient_street, String
|
16
16
|
attribute :recipient_city, String
|
17
17
|
attribute :recipient_province, String
|
18
|
-
attribute :
|
18
|
+
attribute :recipient_mobile, String
|
19
19
|
attribute :amount, BigDecimal
|
20
20
|
attribute :account, String
|
21
21
|
attribute :currency, String
|
@@ -10,7 +10,7 @@ module BloomNetCenterClient
|
|
10
10
|
attribute :recipient_last_name, String
|
11
11
|
attribute :recipient_street, String
|
12
12
|
attribute :recipient_city, String
|
13
|
-
attribute :
|
13
|
+
attribute :recipient_mobile, String
|
14
14
|
attribute :amount, BigDecimal
|
15
15
|
attribute :currency, String
|
16
16
|
attribute :body, String, lazy: true, default: :default_body
|
@@ -25,7 +25,7 @@ module BloomNetCenterClient
|
|
25
25
|
recipient_last_name
|
26
26
|
recipient_street
|
27
27
|
recipient_city
|
28
|
-
|
28
|
+
recipient_mobile
|
29
29
|
amount
|
30
30
|
currency
|
31
31
|
]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bloom_net_center_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon Tayag
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-03
|
11
|
+
date: 2017-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gem_config
|