plaid-kilt 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +14 -6
  3. data/VERSION +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5b97a9853fe6fc505a415b82c258f6d2962c1fb2
4
- data.tar.gz: f804262388591a3f8f37af71e3133de10bde95d6
3
+ metadata.gz: 9be02e9aa975e28290a0d15ccde52624b6ef67ec
4
+ data.tar.gz: 54bb16bdf5b597d5d50f733199f71cf86e177975
5
5
  SHA512:
6
- metadata.gz: 3a6e46925739f73d5a6710f0619c49b4fc20a6d207d46bb450096f9e2817a3b1ae6bcfa6110a49c398cc52279b5ae6e1e7696b9e4cefbe6c8c0664208225f981
7
- data.tar.gz: 827cb24aacd8442693ea1d1e469b132b67cacd0410e3ee98011fff6c6b0e1a15718de1cc5031c2eab3f054dc4e750309b9cfa3d284350e3d31d756704a758cfc
6
+ metadata.gz: 50dfb502412d96e9813f6700fdd69edd1548b702d8daacbdb66df4b4385039bbbd98d075b7ee56295b1865073ff844cc0532d5e55c691c72511da822eca4f99f
7
+ data.tar.gz: 3acd37e1d75a5ae3b5146bcc0656043bfa014d9971d4fc4677a1921018426f255cb938333a0c373410fd156ed5c6a34fbbabbfc77860b5b682443e82e7605b20
data/README.rdoc CHANGED
@@ -1,18 +1,26 @@
1
- = plaid
1
+ = plaid_kilt
2
2
 
3
3
  Accessing the Plaid API using Ruby.
4
4
 
5
+ ===Notes
6
+
7
+ Minimal undergarments. Tests coming.
8
+
5
9
  === Version
6
10
 
7
11
  Head is 0.5.1
8
12
 
9
- == API
13
+ === Install
14
+
15
+ 'gem install plaid-kilt'
16
+
17
+ == Usage
10
18
 
11
19
  === Grab a client
12
20
 
13
- client = Plaid.client 'user@name.com','pass_word', 'amex'
21
+ Clients take 4 parameters: username, email, password, and the institution.
14
22
 
15
- Where the last value is the institution.
23
+ client = Plaid.client 'user_name','user@name.com','pass_word', 'amex'
16
24
 
17
25
  === Connect
18
26
 
@@ -53,7 +61,7 @@ More explicitly
53
61
 
54
62
  Errors use the gem's PlaidError object
55
63
 
56
- client = Plaid.client 'user@name.com','pass_word_xyz', 'amex'
64
+ client = Plaid.client 'user_name','user@name.com','pass_word_WRONG', 'amex'
57
65
  r = client.connect
58
66
 
59
67
  * r.http_code <= 402
@@ -100,7 +108,7 @@ The Plaid gem also has a thin_client for some secure followup operations:
100
108
  thin_client = Plaid.thin_client "me@example.com", "chase", "access_token"
101
109
 
102
110
  This client can be used where user credentials are NOT needed, but you still want to access scecure information on
103
- the Plaid side of things:
111
+ the Plaid side of things (for example, after you have retrieved an access_token):
104
112
 
105
113
  thin_client.followup <= GET operation to get account and transaction information
106
114
  thin_client.get_balance <= GET operation to receive account balances
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plaid-kilt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Koisch