gratitude 0.0.10 → 0.0.11
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/.rspec +1 -1
- data/CHANGELOG.md +14 -10
- data/Gemfile +7 -5
- data/Guardfile +6 -0
- data/README.md +36 -11
- data/gratitude.gemspec +3 -2
- data/lib/gratitude.rb +3 -1
- data/lib/gratitude/client.rb +4 -2
- data/lib/gratitude/connection.rb +10 -0
- data/lib/gratitude/payday.rb +23 -17
- data/lib/gratitude/profile.rb +63 -32
- data/lib/gratitude/statistics.rb +30 -28
- data/lib/gratitude/tips.rb +12 -23
- data/lib/gratitude/version.rb +1 -1
- data/spec/cassettes/current_tips.json +74 -0
- data/spec/cassettes/paydays.json +18 -7
- data/spec/cassettes/profiles.json +209 -0
- data/spec/cassettes/statistics.json +132 -110
- data/spec/cassettes/update_and_prune.json +208 -189
- data/spec/cassettes/update_tips.json +74 -0
- data/spec/gratitude/client_spec.rb +2 -2
- data/spec/gratitude/connection_spec.rb +20 -0
- data/spec/gratitude/payday_spec.rb +56 -79
- data/spec/gratitude/profile_spec.rb +195 -127
- data/spec/gratitude/statistics_spec.rb +36 -80
- data/spec/gratitude/tips_spec.rb +23 -41
- data/spec/spec_helper.rb +1 -0
- metadata +31 -21
- data/spec/cassettes/complete_profile.json +0 -119
- data/spec/cassettes/get_tips.json +0 -63
- data/spec/cassettes/goal_profile.json +0 -121
- data/spec/cassettes/incomplete_profile.json +0 -62
- data/spec/cassettes/post_multiple_tips.json +0 -68
- data/spec/cassettes/post_single_tip.json +0 -68
- data/spec/cassettes/post_tip_error.json +0 -68
@@ -1,119 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions": [
|
3
|
-
{
|
4
|
-
"request": {
|
5
|
-
"method": "get",
|
6
|
-
"uri": "https://www.gittip.com/whit537/public.json",
|
7
|
-
"body": {
|
8
|
-
"encoding": "US-ASCII",
|
9
|
-
"string": ""
|
10
|
-
},
|
11
|
-
"headers": {
|
12
|
-
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": {
|
17
|
-
"code": 200,
|
18
|
-
"message": "OK"
|
19
|
-
},
|
20
|
-
"headers": {
|
21
|
-
"Access-Control-Allow-Origin": [
|
22
|
-
"*"
|
23
|
-
],
|
24
|
-
"Content-Type": [
|
25
|
-
"application/json"
|
26
|
-
],
|
27
|
-
"Date": [
|
28
|
-
"Sat, 14 Sep 2013 23:31:10 GMT"
|
29
|
-
],
|
30
|
-
"Server": [
|
31
|
-
"Aspen! Cheroot!"
|
32
|
-
],
|
33
|
-
"Set-Cookie": [
|
34
|
-
"csrf_token=aFFfMm7sTDPXzAZ0y59E1EI1dqeMvTxl; expires=Sat, 13 Sep 2014 23:31:10 GMT; Path=/"
|
35
|
-
],
|
36
|
-
"Vary": [
|
37
|
-
"Cookie"
|
38
|
-
],
|
39
|
-
"X-Frame-Options": [
|
40
|
-
"SAMEORIGIN"
|
41
|
-
],
|
42
|
-
"X-Gittip-Version": [
|
43
|
-
"10.1.20"
|
44
|
-
],
|
45
|
-
"Content-Length": [
|
46
|
-
"550"
|
47
|
-
],
|
48
|
-
"Connection": [
|
49
|
-
"keep-alive"
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"body": {
|
53
|
-
"encoding": "UTF-8",
|
54
|
-
"string": "{\n \"avatar\": \"https://www.gravatar.com/avatar/fb054b407a6461e417ee6b6ae084da37.jpg?s=128\",\n \"elsewhere\": {\n \"bitbucket\": \"https://bitbucket.org/api/1.0/users/whit537\",\n \"bountysource\": \"https://api.bountysource.com/users/whit537\",\n \"github\": \"https://api.github.com/users/whit537\",\n \"twitter\": \"https://api.twitter.com/1.1/users/show.json?id=34175404&include_entities=1\"\n },\n \"giving\": \"101.41\",\n \"goal\": null,\n \"id\": 1451,\n \"number\": \"singular\",\n \"receiving\": \"434.25\",\n \"username\": \"whit537\"\n}"
|
55
|
-
},
|
56
|
-
"http_version": null
|
57
|
-
},
|
58
|
-
"recorded_at": "Sat, 14 Sep 2013 23:31:11 GMT"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"request": {
|
62
|
-
"method": "get",
|
63
|
-
"uri": "https://www.gittip.com/gratitude_test/public.json",
|
64
|
-
"body": {
|
65
|
-
"encoding": "US-ASCII",
|
66
|
-
"string": ""
|
67
|
-
},
|
68
|
-
"headers": {
|
69
|
-
|
70
|
-
}
|
71
|
-
},
|
72
|
-
"response": {
|
73
|
-
"status": {
|
74
|
-
"code": 200,
|
75
|
-
"message": "OK"
|
76
|
-
},
|
77
|
-
"headers": {
|
78
|
-
"Access-Control-Allow-Origin": [
|
79
|
-
"*"
|
80
|
-
],
|
81
|
-
"Content-Type": [
|
82
|
-
"application/json"
|
83
|
-
],
|
84
|
-
"Date": [
|
85
|
-
"Sat, 14 Sep 2013 23:38:18 GMT"
|
86
|
-
],
|
87
|
-
"Server": [
|
88
|
-
"Aspen! Cheroot!"
|
89
|
-
],
|
90
|
-
"Set-Cookie": [
|
91
|
-
"csrf_token=gfzaLTHIVEHm8wQ1xToeV9xBYnglHuLK; expires=Sat, 13 Sep 2014 23:38:18 GMT; Path=/"
|
92
|
-
],
|
93
|
-
"Vary": [
|
94
|
-
"Cookie"
|
95
|
-
],
|
96
|
-
"X-Frame-Options": [
|
97
|
-
"SAMEORIGIN"
|
98
|
-
],
|
99
|
-
"X-Gittip-Version": [
|
100
|
-
"10.1.20"
|
101
|
-
],
|
102
|
-
"Content-Length": [
|
103
|
-
"441"
|
104
|
-
],
|
105
|
-
"Connection": [
|
106
|
-
"keep-alive"
|
107
|
-
]
|
108
|
-
},
|
109
|
-
"body": {
|
110
|
-
"encoding": "UTF-8",
|
111
|
-
"string": "{\n \"avatar\": \"https://abs.twimg.com/sticky/default_profile_images/default_profile_3.png\",\n \"elsewhere\": {\n \"bitbucket\": null,\n \"bountysource\": null,\n \"github\": null,\n \"twitter\": \"https://api.twitter.com/1.1/users/show.json?id=1865385980&include_entities=1\"\n },\n \"giving\": \"0.00\",\n \"goal\": null,\n \"id\": 196181,\n \"number\": \"singular\",\n \"receiving\": \"0.00\",\n \"username\": \"gratitude_test\"\n}"
|
112
|
-
},
|
113
|
-
"http_version": null
|
114
|
-
},
|
115
|
-
"recorded_at": "Sat, 14 Sep 2013 23:38:19 GMT"
|
116
|
-
}
|
117
|
-
],
|
118
|
-
"recorded_with": "VCR 2.5.0"
|
119
|
-
}
|
@@ -1,63 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions":[
|
3
|
-
{
|
4
|
-
"request":{
|
5
|
-
"method":"get",
|
6
|
-
"uri":"https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@www.gittip.com/gratitude_test/tips.json",
|
7
|
-
"body":{
|
8
|
-
"encoding":"US-ASCII",
|
9
|
-
"string":""
|
10
|
-
},
|
11
|
-
"headers":{
|
12
|
-
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response":{
|
16
|
-
"status":{
|
17
|
-
"code":200,
|
18
|
-
"message":"OK"
|
19
|
-
},
|
20
|
-
"headers":{
|
21
|
-
"Content-Type":[
|
22
|
-
"application/json"
|
23
|
-
],
|
24
|
-
"Date":[
|
25
|
-
"Sun, 20 Oct 2013 01:41:31 GMT"
|
26
|
-
],
|
27
|
-
"Expires":[
|
28
|
-
"Thu, 01 Jan 1970 00:00:00 GMT"
|
29
|
-
],
|
30
|
-
"Server":[
|
31
|
-
"Aspen! Cheroot!"
|
32
|
-
],
|
33
|
-
"Set-Cookie":[
|
34
|
-
"csrf_token=qJFOtxb2kGqZhrlXEv5QRrLcP3H0wik9; expires=Sun, 19 Oct 2014 01:41:31 GMT; Path=/",
|
35
|
-
"session=c08eaad1dae3407c9d31f5ca904364bd; expires=Sun, 27 Oct 2013 01:41:31 GMT; httponly; Path=/; secure"
|
36
|
-
],
|
37
|
-
"Vary":[
|
38
|
-
"Cookie"
|
39
|
-
],
|
40
|
-
"X-Frame-Options":[
|
41
|
-
"SAMEORIGIN"
|
42
|
-
],
|
43
|
-
"X-Gittip-Version":[
|
44
|
-
"10.1.35"
|
45
|
-
],
|
46
|
-
"Content-Length":[
|
47
|
-
"210"
|
48
|
-
],
|
49
|
-
"Connection":[
|
50
|
-
"keep-alive"
|
51
|
-
]
|
52
|
-
},
|
53
|
-
"body":{
|
54
|
-
"encoding":"UTF-8",
|
55
|
-
"string":"[\n {\n \"amount\": \"1.00\",\n \"platform\": \"gittip\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"0.25\",\n \"platform\": \"gittip\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
|
56
|
-
},
|
57
|
-
"http_version":null
|
58
|
-
},
|
59
|
-
"recorded_at":"Sun, 20 Oct 2013 01:41:36 GMT"
|
60
|
-
}
|
61
|
-
],
|
62
|
-
"recorded_with":"VCR 2.5.0"
|
63
|
-
}
|
@@ -1,121 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions": [
|
3
|
-
{
|
4
|
-
"request": {
|
5
|
-
"method": "get",
|
6
|
-
"uri": "https://www.gittip.com/johnkellyferguson/public.json",
|
7
|
-
"body": {
|
8
|
-
"encoding": "US-ASCII",
|
9
|
-
"string": ""
|
10
|
-
},
|
11
|
-
"headers": {
|
12
|
-
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": {
|
17
|
-
"code": 302,
|
18
|
-
"message": "Found"
|
19
|
-
},
|
20
|
-
"headers": {
|
21
|
-
"Content-Type": [
|
22
|
-
"application/json"
|
23
|
-
],
|
24
|
-
"Date": [
|
25
|
-
"Sun, 15 Sep 2013 00:15:37 GMT"
|
26
|
-
],
|
27
|
-
"Location": [
|
28
|
-
"/JohnKellyFerguson/public.json"
|
29
|
-
],
|
30
|
-
"Server": [
|
31
|
-
"Aspen! Cheroot!"
|
32
|
-
],
|
33
|
-
"Set-Cookie": [
|
34
|
-
"csrf_token=wCYRGR91AtPXQ01kbdciHHjszc6D3rhj; expires=Sun, 14 Sep 2014 00:15:37 GMT; Path=/"
|
35
|
-
],
|
36
|
-
"Vary": [
|
37
|
-
"Cookie"
|
38
|
-
],
|
39
|
-
"X-Frame-Options": [
|
40
|
-
"SAMEORIGIN"
|
41
|
-
],
|
42
|
-
"X-Gittip-Version": [
|
43
|
-
"10.1.20"
|
44
|
-
],
|
45
|
-
"Content-Length": [
|
46
|
-
"525"
|
47
|
-
],
|
48
|
-
"Connection": [
|
49
|
-
"keep-alive"
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"body": {
|
53
|
-
"encoding": "UTF-8",
|
54
|
-
"string": "<html>\n <head>\n <title>302 Found</title>\n <style>\n \n BODY {\n margin: 0;\n padding: 200px 0 0;\n text-align: center;\n font: normal 18pt/18pt Georgia, serif;\n }\n PRE {\n text-align: left;\n font: normal 10pt/12pt monospace;\n margin: 50px 200px 0;\n }\n </style>\n </head>\n <body>\n Found, program!\n <pre></pre>\n </body>\n</html>\n"
|
55
|
-
},
|
56
|
-
"http_version": null
|
57
|
-
},
|
58
|
-
"recorded_at": "Sun, 15 Sep 2013 00:15:38 GMT"
|
59
|
-
},
|
60
|
-
{
|
61
|
-
"request": {
|
62
|
-
"method": "get",
|
63
|
-
"uri": "https://www.gittip.com/JohnKellyFerguson/public.json",
|
64
|
-
"body": {
|
65
|
-
"encoding": "US-ASCII",
|
66
|
-
"string": ""
|
67
|
-
},
|
68
|
-
"headers": {
|
69
|
-
"Cookie": [
|
70
|
-
"csrf_token=wCYRGR91AtPXQ01kbdciHHjszc6D3rhj"
|
71
|
-
]
|
72
|
-
}
|
73
|
-
},
|
74
|
-
"response": {
|
75
|
-
"status": {
|
76
|
-
"code": 200,
|
77
|
-
"message": "OK"
|
78
|
-
},
|
79
|
-
"headers": {
|
80
|
-
"Access-Control-Allow-Origin": [
|
81
|
-
"*"
|
82
|
-
],
|
83
|
-
"Content-Type": [
|
84
|
-
"application/json"
|
85
|
-
],
|
86
|
-
"Date": [
|
87
|
-
"Sun, 15 Sep 2013 00:15:38 GMT"
|
88
|
-
],
|
89
|
-
"Server": [
|
90
|
-
"Aspen! Cheroot!"
|
91
|
-
],
|
92
|
-
"Set-Cookie": [
|
93
|
-
"csrf_token=wCYRGR91AtPXQ01kbdciHHjszc6D3rhj; expires=Sun, 14 Sep 2014 00:15:38 GMT; Path=/"
|
94
|
-
],
|
95
|
-
"Vary": [
|
96
|
-
"Cookie"
|
97
|
-
],
|
98
|
-
"X-Frame-Options": [
|
99
|
-
"SAMEORIGIN"
|
100
|
-
],
|
101
|
-
"X-Gittip-Version": [
|
102
|
-
"10.1.20"
|
103
|
-
],
|
104
|
-
"Content-Length": [
|
105
|
-
"487"
|
106
|
-
],
|
107
|
-
"Connection": [
|
108
|
-
"keep-alive"
|
109
|
-
]
|
110
|
-
},
|
111
|
-
"body": {
|
112
|
-
"encoding": "UTF-8",
|
113
|
-
"string": "{\n \"avatar\": \"https://www.gravatar.com/avatar/b58b357a352eda178941fd2dfd5c6d5d.jpg?s=128\",\n \"elsewhere\": {\n \"bitbucket\": null,\n \"bountysource\": null,\n \"github\": \"https://api.github.com/users/JohnKellyFerguson\",\n \"twitter\": \"https://api.twitter.com/1.1/users/show.json?id=954373436&include_entities=1\"\n },\n \"giving\": null,\n \"goal\": \"5.00\",\n \"id\": 15885,\n \"number\": \"singular\",\n \"receiving\": \"0.00\",\n \"username\": \"JohnKellyFerguson\"\n}"
|
114
|
-
},
|
115
|
-
"http_version": null
|
116
|
-
},
|
117
|
-
"recorded_at": "Sun, 15 Sep 2013 00:15:39 GMT"
|
118
|
-
}
|
119
|
-
],
|
120
|
-
"recorded_with": "VCR 2.5.0"
|
121
|
-
}
|
@@ -1,62 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions": [
|
3
|
-
{
|
4
|
-
"request": {
|
5
|
-
"method": "get",
|
6
|
-
"uri": "https://www.gittip.com/gratitude_test/public.json",
|
7
|
-
"body": {
|
8
|
-
"encoding": "US-ASCII",
|
9
|
-
"string": ""
|
10
|
-
},
|
11
|
-
"headers": {
|
12
|
-
|
13
|
-
}
|
14
|
-
},
|
15
|
-
"response": {
|
16
|
-
"status": {
|
17
|
-
"code": 200,
|
18
|
-
"message": "OK"
|
19
|
-
},
|
20
|
-
"headers": {
|
21
|
-
"Access-Control-Allow-Origin": [
|
22
|
-
"*"
|
23
|
-
],
|
24
|
-
"Content-Type": [
|
25
|
-
"application/json"
|
26
|
-
],
|
27
|
-
"Date": [
|
28
|
-
"Sun, 15 Sep 2013 00:01:27 GMT"
|
29
|
-
],
|
30
|
-
"Server": [
|
31
|
-
"Aspen! Cheroot!"
|
32
|
-
],
|
33
|
-
"Set-Cookie": [
|
34
|
-
"csrf_token=QdabBkoZ59hLsOWzefPWoY2YGTzrOuvT; expires=Sun, 14 Sep 2014 00:01:27 GMT; Path=/"
|
35
|
-
],
|
36
|
-
"Vary": [
|
37
|
-
"Cookie"
|
38
|
-
],
|
39
|
-
"X-Frame-Options": [
|
40
|
-
"SAMEORIGIN"
|
41
|
-
],
|
42
|
-
"X-Gittip-Version": [
|
43
|
-
"10.1.20"
|
44
|
-
],
|
45
|
-
"Content-Length": [
|
46
|
-
"423"
|
47
|
-
],
|
48
|
-
"Connection": [
|
49
|
-
"keep-alive"
|
50
|
-
]
|
51
|
-
},
|
52
|
-
"body": {
|
53
|
-
"encoding": "UTF-8",
|
54
|
-
"string": "{\n \"avatar\": \"https://abs.twimg.com/sticky/default_profile_images/default_profile_3.png\",\n \"elsewhere\": {\n \"bitbucket\": null,\n \"bountysource\": null,\n \"github\": null,\n \"twitter\": \"https://api.twitter.com/1.1/users/show.json?id=1865385980&include_entities=1\"\n },\n \"giving\": \"0.00\",\n \"id\": 196181,\n \"number\": \"singular\",\n \"receiving\": \"0.00\",\n \"username\": \"gratitude_test\"\n}"
|
55
|
-
},
|
56
|
-
"http_version": null
|
57
|
-
},
|
58
|
-
"recorded_at": "Sun, 15 Sep 2013 00:01:28 GMT"
|
59
|
-
}
|
60
|
-
],
|
61
|
-
"recorded_with": "VCR 2.5.0"
|
62
|
-
}
|
@@ -1,68 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions":[
|
3
|
-
{
|
4
|
-
"request":{
|
5
|
-
"method":"post",
|
6
|
-
"uri":"https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@www.gittip.com/gratitude_test/tips.json",
|
7
|
-
"body":{
|
8
|
-
"encoding":"UTF-8",
|
9
|
-
"string":"[{\"amount\":\"10\",\"platform\":\"gittip\",\"username\":\"whit537\"},{\"amount\":\"4\",\"platform\":\"gittip\",\"username\":\"JohnKellyFerguson\"}]"
|
10
|
-
},
|
11
|
-
"headers":{
|
12
|
-
"Content-Type":[
|
13
|
-
"application/json"
|
14
|
-
],
|
15
|
-
"Accept":[
|
16
|
-
"application/json"
|
17
|
-
]
|
18
|
-
}
|
19
|
-
},
|
20
|
-
"response":{
|
21
|
-
"status":{
|
22
|
-
"code":200,
|
23
|
-
"message":"OK"
|
24
|
-
},
|
25
|
-
"headers":{
|
26
|
-
"Content-Type":[
|
27
|
-
"application/json"
|
28
|
-
],
|
29
|
-
"Date":[
|
30
|
-
"Sun, 20 Oct 2013 03:12:30 GMT"
|
31
|
-
],
|
32
|
-
"Expires":[
|
33
|
-
"Thu, 01 Jan 1970 00:00:00 GMT"
|
34
|
-
],
|
35
|
-
"Server":[
|
36
|
-
"Aspen! Cheroot!"
|
37
|
-
],
|
38
|
-
"Set-Cookie":[
|
39
|
-
"csrf_token=zpQWN7H1DlHpCQvAB9mPs7aMjXroYDOV; expires=Sun, 19 Oct 2014 03:12:30 GMT; Path=/",
|
40
|
-
"session=c08eaad1dae3407c9d31f5ca904364bd; expires=Sun, 27 Oct 2013 03:12:30 GMT; httponly; Path=/; secure"
|
41
|
-
],
|
42
|
-
"Vary":[
|
43
|
-
"Cookie"
|
44
|
-
],
|
45
|
-
"X-Frame-Options":[
|
46
|
-
"SAMEORIGIN"
|
47
|
-
],
|
48
|
-
"X-Gittip-Version":[
|
49
|
-
"10.1.35"
|
50
|
-
],
|
51
|
-
"Content-Length":[
|
52
|
-
"205"
|
53
|
-
],
|
54
|
-
"Connection":[
|
55
|
-
"keep-alive"
|
56
|
-
]
|
57
|
-
},
|
58
|
-
"body":{
|
59
|
-
"encoding":"UTF-8",
|
60
|
-
"string":"[\n {\n \"amount\": \"10\",\n \"platform\": \"gittip\",\n \"username\": \"whit537\"\n },\n {\n \"amount\": \"4\",\n \"platform\": \"gittip\",\n \"username\": \"JohnKellyFerguson\"\n }\n]"
|
61
|
-
},
|
62
|
-
"http_version":null
|
63
|
-
},
|
64
|
-
"recorded_at":"Sun, 20 Oct 2013 03:12:37 GMT"
|
65
|
-
}
|
66
|
-
],
|
67
|
-
"recorded_with":"VCR 2.5.0"
|
68
|
-
}
|
@@ -1,68 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"http_interactions":[
|
3
|
-
{
|
4
|
-
"request":{
|
5
|
-
"method":"post",
|
6
|
-
"uri":"https://5962b93a-5bf7-4cb6-ae6f-aa4114c5e4f2:@www.gittip.com/gratitude_test/tips.json",
|
7
|
-
"body":{
|
8
|
-
"encoding":"UTF-8",
|
9
|
-
"string":"[{\"amount\":\"5\",\"platform\":\"gittip\",\"username\":\"whit537\"}]"
|
10
|
-
},
|
11
|
-
"headers":{
|
12
|
-
"Content-Type":[
|
13
|
-
"application/json"
|
14
|
-
],
|
15
|
-
"Accept":[
|
16
|
-
"application/json"
|
17
|
-
]
|
18
|
-
}
|
19
|
-
},
|
20
|
-
"response":{
|
21
|
-
"status":{
|
22
|
-
"code":200,
|
23
|
-
"message":"OK"
|
24
|
-
},
|
25
|
-
"headers":{
|
26
|
-
"Content-Type":[
|
27
|
-
"application/json"
|
28
|
-
],
|
29
|
-
"Date":[
|
30
|
-
"Sun, 20 Oct 2013 03:09:02 GMT"
|
31
|
-
],
|
32
|
-
"Expires":[
|
33
|
-
"Thu, 01 Jan 1970 00:00:00 GMT"
|
34
|
-
],
|
35
|
-
"Server":[
|
36
|
-
"Aspen! Cheroot!"
|
37
|
-
],
|
38
|
-
"Set-Cookie":[
|
39
|
-
"csrf_token=DRdyOGvuZo1D9zPRfgzXAbhOpQrP03Na; expires=Sun, 19 Oct 2014 03:09:02 GMT; Path=/",
|
40
|
-
"session=c08eaad1dae3407c9d31f5ca904364bd; expires=Sun, 27 Oct 2013 03:09:02 GMT; httponly; Path=/; secure"
|
41
|
-
],
|
42
|
-
"Vary":[
|
43
|
-
"Cookie"
|
44
|
-
],
|
45
|
-
"X-Frame-Options":[
|
46
|
-
"SAMEORIGIN"
|
47
|
-
],
|
48
|
-
"X-Gittip-Version":[
|
49
|
-
"10.1.35"
|
50
|
-
],
|
51
|
-
"Content-Length":[
|
52
|
-
"98"
|
53
|
-
],
|
54
|
-
"Connection":[
|
55
|
-
"keep-alive"
|
56
|
-
]
|
57
|
-
},
|
58
|
-
"body":{
|
59
|
-
"encoding":"UTF-8",
|
60
|
-
"string":"[\n {\n \"amount\": \"5\",\n \"platform\": \"gittip\",\n \"username\": \"whit537\"\n }\n]"
|
61
|
-
},
|
62
|
-
"http_version":null
|
63
|
-
},
|
64
|
-
"recorded_at":"Sun, 20 Oct 2013 03:09:09 GMT"
|
65
|
-
}
|
66
|
-
],
|
67
|
-
"recorded_with":"VCR 2.5.0"
|
68
|
-
}
|