plaid-kilt 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 76e828f7dc2cf4065fb0605dacac2eb59a86e57c
4
- data.tar.gz: 91d871ce00ac520103c9d01c70bd10856fc63ff5
3
+ metadata.gz: c31f3351bcfedb3c2b38f45b0eca367e6c06b731
4
+ data.tar.gz: d8be603d732c8448584d57061a8fc439e744aa13
5
5
  SHA512:
6
- metadata.gz: 835b51e2afa99b10ad2b3ff84dd8f890b946d5438b7d4001f765078d8a8454d592902d8962754c6f82d02956a1fd003ce47acac1bcd713f92682159280db723c
7
- data.tar.gz: c01949c6e44b47f241d37ad1ac40971e982b989c24a776accd5977cd6b141f5f88af5c39b5925cfaaee75534412d9faa99c546c468488a2411fc1957ccf0e556
6
+ metadata.gz: 9efe6d5fb35d44d14dff742ed758a9865b85214726b6bb7bb1c2b6c14ebc3f2a9d6e21a26e5968863d7f673d74e7c1e584da36983999eeadb42647036778b8b1
7
+ data.tar.gz: f4c0cce2c8311c5e4940b571ffdf015583ef47fd2ab37a7657abcb8610f417d90cfb56662989a244b3283b6cc88e7282692da06b28e3c8f56a7d01f42ad1d788
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.4
1
+ 0.5.5
@@ -40,7 +40,7 @@ module Plaid
40
40
  "password" => self.password
41
41
  }
42
42
  ret[:email] = 'me@example.com'
43
- ret[:options] = options(nil,"list",true)
43
+ ret[:options] = {"list" => true}
44
44
  ret.merge(body)
45
45
  end
46
46
 
@@ -84,9 +84,10 @@ module Plaid
84
84
  end
85
85
 
86
86
  def body_init_user
87
- ret = Hash.new
88
- ret[:options] = options(options(nil,"login",true),"webhook",webhook_address )
89
- ret.merge(body_original)
87
+ ret = body_original
88
+ z = {"login" => true, "webhook" => webhook_address}
89
+ ret[:options] = body_original[:options].merge(z)
90
+ ret
90
91
  end
91
92
 
92
93
  #helper method to add options to an option hash
@@ -18,7 +18,7 @@ class PlaidResponse
18
18
  @http_code = response.code
19
19
  zed = PlaidObject.new(response)
20
20
 
21
- if save_full_response.eql?(save_full_response)
21
+ if save_full_response.eql?(true)
22
22
  @response = zed
23
23
  end
24
24
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plaid-kilt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Koisch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-26 00:00:00.000000000 Z
11
+ date: 2014-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty