plaid-kilt 0.5.2 → 0.5.4

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: 9be02e9aa975e28290a0d15ccde52624b6ef67ec
4
- data.tar.gz: 54bb16bdf5b597d5d50f733199f71cf86e177975
3
+ metadata.gz: 76e828f7dc2cf4065fb0605dacac2eb59a86e57c
4
+ data.tar.gz: 91d871ce00ac520103c9d01c70bd10856fc63ff5
5
5
  SHA512:
6
- metadata.gz: 50dfb502412d96e9813f6700fdd69edd1548b702d8daacbdb66df4b4385039bbbd98d075b7ee56295b1865073ff844cc0532d5e55c691c72511da822eca4f99f
7
- data.tar.gz: 3acd37e1d75a5ae3b5146bcc0656043bfa014d9971d4fc4677a1921018426f255cb938333a0c373410fd156ed5c6a34fbbabbfc77860b5b682443e82e7605b20
6
+ metadata.gz: 835b51e2afa99b10ad2b3ff84dd8f890b946d5438b7d4001f765078d8a8454d592902d8962754c6f82d02956a1fd003ce47acac1bcd713f92682159280db723c
7
+ data.tar.gz: c01949c6e44b47f241d37ad1ac40971e982b989c24a776accd5977cd6b141f5f88af5c39b5925cfaaee75534412d9faa99c546c468488a2411fc1957ccf0e556
data/README.rdoc CHANGED
@@ -8,7 +8,7 @@ Minimal undergarments. Tests coming.
8
8
 
9
9
  === Version
10
10
 
11
- Head is 0.5.1
11
+ Head is 0.5.2
12
12
 
13
13
  === Install
14
14
 
@@ -119,6 +119,7 @@ the Plaid side of things (for example, after you have retrieved an access_token)
119
119
  You need to configure access through your own initializers using the values you receive from Plaid.
120
120
 
121
121
  #config/initializers/plaid.rb
122
+ require 'plaid'
122
123
  Plaid.configure do |config|
123
124
  config.client_id = 'JUNK'
124
125
  config.secret = 'JUNK'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.2
1
+ 0.5.4
@@ -58,7 +58,8 @@ module Plaid
58
58
  end
59
59
 
60
60
  ##
61
- # sets configuration to default
61
+ # sets configuration to defaults
62
+ # These will probably cause your application to fail, and you should change them.
62
63
  #
63
64
  def reset_config
64
65
  configure do |config|
@@ -1,5 +1,6 @@
1
1
  module Plaid
2
2
  module Client
3
+
3
4
  class ThinClient
4
5
  attr_accessor :institution, :endpoint, :secret, :access_token, :email, :client_id
5
6
 
data/lib/plaid.rb CHANGED
@@ -2,6 +2,7 @@ module Plaid
2
2
  class << self
3
3
  def configure(&block)
4
4
  Plaid::Client::Base.configure(&block)
5
+ Plaid::Client::ThinClient.configure(&block)
5
6
  end
6
7
 
7
8
  # client for initializing access through Plaid
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.2
4
+ version: 0.5.4
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-24 00:00:00.000000000 Z
11
+ date: 2014-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty