plaid-kilt 0.5.1 → 0.5.2
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 +4 -4
- data/README.rdoc +14 -6
- data/VERSION +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9be02e9aa975e28290a0d15ccde52624b6ef67ec
|
|
4
|
+
data.tar.gz: 54bb16bdf5b597d5d50f733199f71cf86e177975
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50dfb502412d96e9813f6700fdd69edd1548b702d8daacbdb66df4b4385039bbbd98d075b7ee56295b1865073ff844cc0532d5e55c691c72511da822eca4f99f
|
|
7
|
+
data.tar.gz: 3acd37e1d75a5ae3b5146bcc0656043bfa014d9971d4fc4677a1921018426f255cb938333a0c373410fd156ed5c6a34fbbabbfc77860b5b682443e82e7605b20
|
data/README.rdoc
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
|
-
=
|
|
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
|
-
|
|
13
|
+
=== Install
|
|
14
|
+
|
|
15
|
+
'gem install plaid-kilt'
|
|
16
|
+
|
|
17
|
+
== Usage
|
|
10
18
|
|
|
11
19
|
=== Grab a client
|
|
12
20
|
|
|
13
|
-
|
|
21
|
+
Clients take 4 parameters: username, email, password, and the institution.
|
|
14
22
|
|
|
15
|
-
|
|
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','
|
|
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
|
+
0.5.2
|