bloom_remit_client 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/bloom_remit_client/factories.rb +7 -0
- data/lib/bloom_remit_client/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a1c99743910d255c4afc76e7be6012bb19c99fe
|
4
|
+
data.tar.gz: 71ed61a4d3f4f86e23210f6761333a91d4fb2570
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30b8224d1975a5b7107961061301bc019e03ec3899510ca672a6486be2fcedcb54997f9c86ea58c90250992ed96ee332dc7cd1facbd95155641ed01181d06641
|
7
|
+
data.tar.gz: e2943a1ae53f607f718b42d7874ff3099746e87f0c8ea9ff5e283d841d54e20703b103896d29fef40d2eadb85d0341fa21bc1ecc0f162d23c69788c55e8ff81a
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,10 @@
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
4
4
|
|
5
|
+
## [0.9.0] - 2016-09-16
|
6
|
+
### Added
|
7
|
+
- Factory `bloom_remit_client_deposit_strategy`
|
8
|
+
|
5
9
|
## [0.8.0] - 2016-09-16
|
6
10
|
### Added
|
7
11
|
- Add a way to get the deposit strategies. `slug` and `name` for now
|
@@ -10,6 +10,13 @@ FactoryGirl.define do
|
|
10
10
|
second_field_width 50
|
11
11
|
end
|
12
12
|
|
13
|
+
factory(:bloom_remit_client_deposit_strategy, {
|
14
|
+
class: "BloomRemitClient::DepositStrategy",
|
15
|
+
}) do
|
16
|
+
sequence(:slug) {|n| "deposit_strategy_#{n}" }
|
17
|
+
name "Deposit Strategy"
|
18
|
+
end
|
19
|
+
|
13
20
|
factory(:bloom_remit_client_responses_payments_create, {
|
14
21
|
class: "BloomRemitClient::Responses::Payments::Create",
|
15
22
|
}) do
|