plaid 1.4.2 → 1.4.3

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: 63fc4c6d5edc540a08bf732fd0d42f85a04ab1e1
4
- data.tar.gz: 48358423aa4b643c3d6af4559468c257cf262ad4
3
+ metadata.gz: 8580b88cd18ddfec32569abeef15135a37209049
4
+ data.tar.gz: 4b23dd43db4013e15a0d78777e7b751c2918c5bc
5
5
  SHA512:
6
- metadata.gz: 1210939c88948e6712aadfe7bda081fde1ed7eca97f5c7d21ee28551177f32207d9f4aa761c7b6711fccc5ff76e7ce5401713b905e8d91ff6257ee40aaf8dd88
7
- data.tar.gz: fdff039d1be8fb988e83893e058fc65b7b3c3ccf6a3817673aaf373ef83d8ae579fe8ac8a36e7781b1aae82429efea9872ef2e4531bdffa353d3c9f94669af1c
6
+ metadata.gz: df9a31e7100ca2418f0ebdf469ea42630a8c3d0ed29fc1373efe5790ad2da25aebbeb2e39f10d4abd4ae892d787678026e704cbbac60bdd84d08777a95c3ea9c
7
+ data.tar.gz: 00cc4839fe0524bfbe90d15121bbfee0537ab0c4dbfb73c5c6c8334d32e3b808f6c88efeea46d9029739a21b23a06b3830fb8a0add17360874b538b8ef35d618
data/README.md CHANGED
@@ -6,7 +6,7 @@ Ruby bindings for the Plaid API
6
6
 
7
7
  This version is a beta version that contains failing tests for the new 'info' endpoint. While these have been tested individually on real accounts the tests here will fail with the test accounts supplied. These will be updated soon with test credentials.
8
8
 
9
- Latest stable version: **1.4.2**
9
+ Latest stable version: **1.4.3**
10
10
 
11
11
  This version removes the need to use 'type' in each additional call.
12
12
 
@@ -113,15 +113,15 @@ module Plaid
113
113
  end
114
114
 
115
115
  # Instantiate and build a new account object, return this to the accounts array
116
- def new_account(account)
117
- @account = Account.new
118
- @account.new(account)
116
+ def new_account(res)
117
+ account = Account.new
118
+ account.new(res)
119
119
  end
120
120
 
121
121
  # Instantiate and build a new account object, return this to the accounts array
122
- def new_transaction(transaction)
123
- @transaction = Transaction.new
124
- @transaction.new(transaction)
122
+ def new_transaction(res)
123
+ transaction = Transaction.new
124
+ transaction.new(res)
125
125
  end
126
126
 
127
127
  private
@@ -1,3 +1,3 @@
1
1
  module Plaid
2
- VERSION = '1.4.2'
2
+ VERSION = '1.4.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plaid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Crites