bloom_remit_client 0.13.0 → 0.14.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: 3b3aba46f146685d2eb407b1cb2e0ab5c059e357
4
- data.tar.gz: 06446a803900371021256cf1114cf56f8002615f
3
+ metadata.gz: 3bb115b8b45fe5f9ab96fd1e252d17690e58a4bf
4
+ data.tar.gz: 86cc02eb7fe6eca14439d1b72b028b0e11fe1839
5
5
  SHA512:
6
- metadata.gz: e43eb42d4c7b9d33eb86f9b2a0d11713a8a1b1bcd43a9391029bb49ebe84497b25466586b8ec56f620060108710abea9bf07c1b00142a492d8209a32155c85f0
7
- data.tar.gz: 72153f6ba82278624584fe9016dbe900b4d79742fac8b8dea487501d617f5a035c02f33448fa17d8811e325cfbc31214383b5b98c71e56a85ce185065326158c
6
+ metadata.gz: 3cc1d3ffce23d8998c4ebc57dc67e61932e8b5b724317ee56b2ca81950c4c0237d3ea42aad2ade24ff37f684e4b515639cf5540cf7794451bebc776576299747
7
+ data.tar.gz: 893161507e4277eb2b91264a3d28d30cb546983c7cefd44360680061aa5c40f34ae82c3df869b509ad0dfa25008f908bc98599309238a28c9569dbf7a6e147da
@@ -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.14.0] - 2016-10-05
6
+ ### Added
7
+ - Factories: `bloom_remit_client_responses_recipients_create`, `bloom_remit_client_responses_recipients_list`
8
+
5
9
  ## [0.13.0] - 2016-10-05
6
10
  ### Added
7
11
  - Add `#recipient_list` to list the recipients of a sender
@@ -25,4 +25,27 @@ FactoryGirl.define do
25
25
  body { {"json" => "value"} }
26
26
  end
27
27
 
28
+ factory(:bloom_remit_client_responses_recipients_create, {
29
+ class: "BloomRemitClient::Responses::Recipients::Create",
30
+ }) do
31
+ success true
32
+ body { {"json" => "value"} }
33
+ end
34
+
35
+ factory(:bloom_remit_client_responses_recipients_list, {
36
+ class: "BloomRemitClient::Responses::Recipients::List",
37
+ }) do
38
+ success true
39
+ recipients do
40
+ [
41
+ build(:bloom_remit_client_recipient),
42
+ build(:bloom_remit_client_recipient),
43
+ ]
44
+ end
45
+ end
46
+
47
+ factory :bloom_remit_client_recipient, class: "BloomRemitClient::Recipient" do
48
+ id { SecureRandom.uuid }
49
+ end
50
+
28
51
  end
@@ -1,3 +1,3 @@
1
1
  module BloomRemitClient
2
- VERSION = "0.13.0"
2
+ VERSION = "0.14.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bloom_remit_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag