plaid_rails 0.5.0 → 0.6.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: 7d20288ae52a3c55735e45555b58da6ef3086e1f
4
- data.tar.gz: e8b1a5ea03b763be1a188c9be56a42a724d2f7a6
3
+ metadata.gz: c8addb91fb8b76b1d63bdc11afefc10043a3978b
4
+ data.tar.gz: 7cd3dc1b60cb373f03ea63d0e7204ed7139e0eb8
5
5
  SHA512:
6
- metadata.gz: 6081b6bf3de23372e2988b1de4e9580477d13c5cf3b7fd06c5062a9b56eeb93db642f6747bece54ceb28ffd6d668d37ae375deb92b8251654eda09935fbee4f9
7
- data.tar.gz: 8c23aee3dbbc54619f470d3231203d23069450dba0a7806e748b5645a816db4e344ab14360ea244b5e4a07594db042218ec4da1ca52eb00993a0cf89e3c71a76
6
+ metadata.gz: d235ad574ae428818fac0d4bc5e72b47060904be31684a34ea8418fbc5338360f9875815b4f2dca355b867f18f3cf8b62e2176949f20decf484459837434c310
7
+ data.tar.gz: ef19a24c6b75480b3baf64a8b99dd50f916091b5e5f96769da9fb695033ed6b89015ba034b4a5ee76b87feacfc498f221188ff3352f4e2db200db072117c043a
@@ -19,7 +19,6 @@ function getPlaid(plaidData) {
19
19
  key: plaidData.data('key'),
20
20
  product: 'connect',
21
21
  webhook: plaidData.data('webhook'),
22
- longtail: plaidData.data('longtail'),
23
22
  onLoad: function () {
24
23
  // The Link module finished loading.
25
24
  },
@@ -12,7 +12,6 @@ module PlaidRails
12
12
  account_params["access_token"]
13
13
  @user = Plaid::User.load(:connect, account_params["access_token"])
14
14
  @user.transactions
15
- puts "@user #{@user.inspect}"
16
15
  @accounts = @user.accounts
17
16
  end
18
17
 
@@ -15,7 +15,7 @@ module PlaidRails
15
15
  token: account_params["token"],
16
16
  plaid_type: account_params["type"],
17
17
  name: account.name,
18
- bank_name: Plaid::LongTailInstitution.get(account_params["type"]).name,
18
+ bank_name: Plaid::Institution.get(account_params["type"]).name,
19
19
  number: account.meta["number"],
20
20
  owner_id: account_params["owner_id"],
21
21
  owner_type: account_params["owner_type"],
@@ -1,3 +1,3 @@
1
1
  module PlaidRails
2
- VERSION = "0.5.0"
2
+ VERSION = "0.6.0"
3
3
  end