cloudapp-service 1.0.0.beta.1

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.
Files changed (52) hide show
  1. data/CHANGELOG.md +34 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +56 -0
  4. data/MIT-LICENSE +20 -0
  5. data/README.md +14 -0
  6. data/Rakefile +148 -0
  7. data/cloudapp-service.gemspec +115 -0
  8. data/lib/cloudapp/collection_json.rb +3 -0
  9. data/lib/cloudapp/collection_json/item.rb +20 -0
  10. data/lib/cloudapp/collection_json/representation.rb +74 -0
  11. data/lib/cloudapp/collection_json/template.rb +17 -0
  12. data/lib/cloudapp/collection_json/tint.rb +11 -0
  13. data/lib/cloudapp/service.rb +204 -0
  14. data/lib/cloudapp/service/authorized_representation.rb +17 -0
  15. data/lib/cloudapp/service/drop.rb +44 -0
  16. data/lib/cloudapp/service/drop_collection.rb +39 -0
  17. data/spec/cassettes/account_token.yml +88 -0
  18. data/spec/cassettes/create_bookmark.yml +132 -0
  19. data/spec/cassettes/create_bookmark_with_name.yml +133 -0
  20. data/spec/cassettes/create_bookmark_with_privacy.yml +133 -0
  21. data/spec/cassettes/delete_drop.yml +215 -0
  22. data/spec/cassettes/list_drops.yml +488 -0
  23. data/spec/cassettes/list_drops_with_bad_token.yml +45 -0
  24. data/spec/cassettes/list_drops_with_filter.yml +345 -0
  25. data/spec/cassettes/list_drops_with_limit.yml +129 -0
  26. data/spec/cassettes/privatize_drop.yml +222 -0
  27. data/spec/cassettes/publicize_drop.yml +222 -0
  28. data/spec/cassettes/purge_drops.yml +764 -0
  29. data/spec/cassettes/recover_drop.yml +309 -0
  30. data/spec/cassettes/rename_drop.yml +222 -0
  31. data/spec/cassettes/token_for_account.yml +88 -0
  32. data/spec/cassettes/token_for_account_with_bad_credentials.yml +86 -0
  33. data/spec/cassettes/trash_drop.yml +222 -0
  34. data/spec/cassettes/update_drop_bookmark_url.yml +222 -0
  35. data/spec/cassettes/update_file.yml +365 -0
  36. data/spec/cassettes/upload_file.yml +276 -0
  37. data/spec/cassettes/upload_file_with_name.yml +278 -0
  38. data/spec/cassettes/upload_file_with_privacy.yml +277 -0
  39. data/spec/cassettes/view_drop.yml +174 -0
  40. data/spec/cloudapp/authorized_representation_spec.rb +32 -0
  41. data/spec/cloudapp/collection_json/item_spec.rb +45 -0
  42. data/spec/cloudapp/collection_json/representation_spec.rb +118 -0
  43. data/spec/cloudapp/collection_json/template_spec.rb +53 -0
  44. data/spec/cloudapp/drop_collection_spec.rb +148 -0
  45. data/spec/cloudapp/drop_spec.rb +186 -0
  46. data/spec/cloudapp/service_spec.rb +321 -0
  47. data/spec/helper.rb +8 -0
  48. data/spec/integration_spec.rb +77 -0
  49. data/spec/support/files/favicon.ico +0 -0
  50. data/spec/support/stub_class_or_module.rb +22 -0
  51. data/spec/support/vcr.rb +24 -0
  52. metadata +194 -0
@@ -0,0 +1,222 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.getcloudapp.com/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Authorization:
11
+ - Token token="abc123"
12
+ Accept:
13
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
14
+ text/plain
15
+ Accept-Encoding:
16
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
17
+ User-Agent:
18
+ - Ruby
19
+ response:
20
+ status:
21
+ code: 200
22
+ message: OK
23
+ headers:
24
+ Cache-Control:
25
+ - max-age=0, private, must-revalidate
26
+ Content-Type:
27
+ - application/vnd.collection+json; charset=utf-8
28
+ Etag:
29
+ - ! '"44e8e003e0f1b5e38f7ca916ff4497d7"'
30
+ Server:
31
+ - thin 1.4.1 codename Chromeo
32
+ X-Runtime:
33
+ - '0.007406'
34
+ X-Ua-Compatible:
35
+ - IE=Edge,chrome=1
36
+ Transfer-Encoding:
37
+ - chunked
38
+ Connection:
39
+ - keep-alive
40
+ body:
41
+ encoding: US-ASCII
42
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/","links":[{"rel":"drops","href":"https://api.getcloudapp.com/drops"}]}}'
43
+ http_version:
44
+ recorded_at: Tue, 11 Sep 2012 15:47:07 GMT
45
+ - request:
46
+ method: get
47
+ uri: https://api.getcloudapp.com/drops
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ''
51
+ headers:
52
+ Authorization:
53
+ - Token token="abc123"
54
+ Accept:
55
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
56
+ text/plain
57
+ Accept-Encoding:
58
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
59
+ User-Agent:
60
+ - Ruby
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Cache-Control:
67
+ - max-age=0, private, must-revalidate
68
+ Content-Type:
69
+ - application/vnd.collection+json; charset=utf-8
70
+ Etag:
71
+ - ! '"83864c611a2a9ff41a8361a12b0f25a0"'
72
+ Server:
73
+ - thin 1.4.1 codename Chromeo
74
+ X-Runtime:
75
+ - '0.036185'
76
+ X-Ua-Compatible:
77
+ - IE=Edge,chrome=1
78
+ Transfer-Encoding:
79
+ - chunked
80
+ Connection:
81
+ - keep-alive
82
+ body:
83
+ encoding: US-ASCII
84
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907695","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/3Q313d440a3B"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/3Q313d440a3B"},{"rel":"embed","href":"http://cl.ly/image/3Q313d440a3B/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/3Q313d440a3B/download/favicon.ico"}],"data":[{"name":"id","value":21907695},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:06Z"}]},{"href":"https://api.getcloudapp.com/drops/21907694","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/02073a0O3m0F"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907694},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:04Z"}]},{"href":"https://api.getcloudapp.com/drops/21907693","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNym"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907693},{"name":"name","value":"New
85
+ Drop Name"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:02Z"}]},{"href":"https://api.getcloudapp.com/drops/21907691","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNxB"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/JNxB"},{"rel":"embed","href":"http://cl.ly/JNxB/favicon.ico"},{"rel":"download","href":"http://cl.ly/JNxB/download/favicon.ico"}],"data":[{"name":"id","value":21907691},{"name":"name","value":"favicon.ico"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:01Z"}]},{"href":"https://api.getcloudapp.com/drops/21907690","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1o3e271l1G0n"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1o3e271l1G0n"},{"rel":"embed","href":"http://cl.ly/image/1o3e271l1G0n/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1o3e271l1G0n/download/favicon.ico"}],"data":[{"name":"id","value":21907690},{"name":"name","value":"New
86
+ File"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:59Z"}]},{"href":"https://api.getcloudapp.com/drops/21907688","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/0o2S0W1n2L30"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/0o2S0W1n2L30"},{"rel":"embed","href":"http://cl.ly/image/0o2S0W1n2L30/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/0o2S0W1n2L30/download/favicon.ico"}],"data":[{"name":"id","value":21907688},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:57Z"}]},{"href":"https://api.getcloudapp.com/drops/21907686","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNXA"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907686},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:56Z"}]},{"href":"https://api.getcloudapp.com/drops/21907685","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2k1L0G2U2z0I"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907685},{"name":"name","value":"New
87
+ Bookmark"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:55Z"}]},{"href":"https://api.getcloudapp.com/drops/21907683","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/0e0E2w0w0T0U"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907683},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:54Z"}]},{"href":"https://api.getcloudapp.com/drops/21907682","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2x3S331L1a3o"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907682},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:52Z"}]},{"href":"https://api.getcloudapp.com/drops/21907679","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1G282W04401a"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907679},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:47Z"}]},{"href":"https://api.getcloudapp.com/drops/21907678","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1u232n412l14"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1u232n412l14"},{"rel":"embed","href":"http://cl.ly/image/1u232n412l14/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1u232n412l14/download/favicon.ico"}],"data":[{"name":"id","value":21907678},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:45Z"}]}]}}'
88
+ http_version:
89
+ recorded_at: Tue, 11 Sep 2012 15:47:07 GMT
90
+ - request:
91
+ method: post
92
+ uri: https://api.getcloudapp.com/drops
93
+ body:
94
+ encoding: UTF-8
95
+ string: ! '{"name":null,"private":false,"trash":false,"bookmark_url":"http://getcloudapp.com","file_size":null}'
96
+ headers:
97
+ Authorization:
98
+ - Token token="abc123"
99
+ Content-Type:
100
+ - application/json
101
+ Accept:
102
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
103
+ text/plain
104
+ User-Agent:
105
+ - Ruby
106
+ response:
107
+ status:
108
+ code: 201
109
+ message: Created
110
+ headers:
111
+ Cache-Control:
112
+ - max-age=0, private, must-revalidate
113
+ Content-Type:
114
+ - application/vnd.collection+json; charset=utf-8
115
+ Etag:
116
+ - ! '"3dec58f0d469908ef043b3c10e2b748e"'
117
+ Server:
118
+ - thin 1.4.1 codename Chromeo
119
+ Set-Cookie:
120
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJThiZmI3MjU4MmQzODgzNjdjZGU2ZWQzYmRjOTIwMmM2BjsAVA%3D%3D--d2f8df45325bd09dee159a85713e39802b3f8f7a;
121
+ path=/; HttpOnly
122
+ X-Runtime:
123
+ - '0.070871'
124
+ X-Ua-Compatible:
125
+ - IE=Edge,chrome=1
126
+ Transfer-Encoding:
127
+ - chunked
128
+ Connection:
129
+ - keep-alive
130
+ body:
131
+ encoding: US-ASCII
132
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNu5"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]}]}}'
133
+ http_version:
134
+ recorded_at: Tue, 11 Sep 2012 15:47:08 GMT
135
+ - request:
136
+ method: get
137
+ uri: https://api.getcloudapp.com/drops/21907697
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ''
141
+ headers:
142
+ Authorization:
143
+ - Token token="abc123"
144
+ Accept:
145
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
146
+ text/plain
147
+ Accept-Encoding:
148
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
149
+ User-Agent:
150
+ - Ruby
151
+ response:
152
+ status:
153
+ code: 200
154
+ message: OK
155
+ headers:
156
+ Cache-Control:
157
+ - max-age=0, private, must-revalidate
158
+ Content-Type:
159
+ - application/vnd.collection+json; charset=utf-8
160
+ Etag:
161
+ - ! '"3dec58f0d469908ef043b3c10e2b748e"'
162
+ Server:
163
+ - thin 1.4.1 codename Chromeo
164
+ X-Runtime:
165
+ - '0.018630'
166
+ X-Ua-Compatible:
167
+ - IE=Edge,chrome=1
168
+ Transfer-Encoding:
169
+ - chunked
170
+ Connection:
171
+ - keep-alive
172
+ body:
173
+ encoding: US-ASCII
174
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNu5"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]}]}}'
175
+ http_version:
176
+ recorded_at: Tue, 11 Sep 2012 15:47:08 GMT
177
+ - request:
178
+ method: put
179
+ uri: https://api.getcloudapp.com/drops/21907697
180
+ body:
181
+ encoding: UTF-8
182
+ string: ! '{"name":"http://getcloudapp.com","private":true,"trash":false,"bookmark_url":null,"file_size":null}'
183
+ headers:
184
+ Authorization:
185
+ - Token token="abc123"
186
+ Content-Type:
187
+ - application/json
188
+ Accept:
189
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
190
+ text/plain
191
+ User-Agent:
192
+ - Ruby
193
+ response:
194
+ status:
195
+ code: 200
196
+ message: OK
197
+ headers:
198
+ Cache-Control:
199
+ - max-age=0, private, must-revalidate
200
+ Content-Type:
201
+ - application/vnd.collection+json; charset=utf-8
202
+ Etag:
203
+ - ! '"c8f252e9ac961d282cb02b5b9887511f"'
204
+ Server:
205
+ - thin 1.4.1 codename Chromeo
206
+ Set-Cookie:
207
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWUxNWExMDNhODQxYzEyYWYyYTQ0NjE0NGI5YmU3MWE4BjsAVA%3D%3D--2a86a47188a696920fde11c5d7d73481d03d3d69;
208
+ path=/; HttpOnly
209
+ X-Runtime:
210
+ - '0.059524'
211
+ X-Ua-Compatible:
212
+ - IE=Edge,chrome=1
213
+ Content-Length:
214
+ - '1005'
215
+ Connection:
216
+ - keep-alive
217
+ body:
218
+ encoding: US-ASCII
219
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3U1Q170u0g2b"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]}]}}'
220
+ http_version:
221
+ recorded_at: Tue, 11 Sep 2012 15:47:08 GMT
222
+ recorded_with: VCR 2.0.1
@@ -0,0 +1,222 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.getcloudapp.com/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Authorization:
11
+ - Token token="abc123"
12
+ Accept:
13
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
14
+ text/plain
15
+ Accept-Encoding:
16
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
17
+ User-Agent:
18
+ - Ruby
19
+ response:
20
+ status:
21
+ code: 200
22
+ message: OK
23
+ headers:
24
+ Cache-Control:
25
+ - max-age=0, private, must-revalidate
26
+ Content-Type:
27
+ - application/vnd.collection+json; charset=utf-8
28
+ Etag:
29
+ - ! '"44e8e003e0f1b5e38f7ca916ff4497d7"'
30
+ Server:
31
+ - thin 1.4.1 codename Chromeo
32
+ X-Runtime:
33
+ - '0.006024'
34
+ X-Ua-Compatible:
35
+ - IE=Edge,chrome=1
36
+ Content-Length:
37
+ - '139'
38
+ Connection:
39
+ - keep-alive
40
+ body:
41
+ encoding: US-ASCII
42
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/","links":[{"rel":"drops","href":"https://api.getcloudapp.com/drops"}]}}'
43
+ http_version:
44
+ recorded_at: Tue, 11 Sep 2012 15:47:09 GMT
45
+ - request:
46
+ method: get
47
+ uri: https://api.getcloudapp.com/drops
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ''
51
+ headers:
52
+ Authorization:
53
+ - Token token="abc123"
54
+ Accept:
55
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
56
+ text/plain
57
+ Accept-Encoding:
58
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
59
+ User-Agent:
60
+ - Ruby
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Cache-Control:
67
+ - max-age=0, private, must-revalidate
68
+ Content-Type:
69
+ - application/vnd.collection+json; charset=utf-8
70
+ Etag:
71
+ - ! '"b3dc79ff415c25830fefa2a56a20049d"'
72
+ Server:
73
+ - thin 1.4.1 codename Chromeo
74
+ X-Runtime:
75
+ - '0.069361'
76
+ X-Ua-Compatible:
77
+ - IE=Edge,chrome=1
78
+ Transfer-Encoding:
79
+ - chunked
80
+ Connection:
81
+ - keep-alive
82
+ body:
83
+ encoding: US-ASCII
84
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3U1Q170u0g2b"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]},{"href":"https://api.getcloudapp.com/drops/21907695","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/3Q313d440a3B"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/3Q313d440a3B"},{"rel":"embed","href":"http://cl.ly/image/3Q313d440a3B/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/3Q313d440a3B/download/favicon.ico"}],"data":[{"name":"id","value":21907695},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:06Z"}]},{"href":"https://api.getcloudapp.com/drops/21907694","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/02073a0O3m0F"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907694},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:04Z"}]},{"href":"https://api.getcloudapp.com/drops/21907693","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNym"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907693},{"name":"name","value":"New
85
+ Drop Name"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:02Z"}]},{"href":"https://api.getcloudapp.com/drops/21907691","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNxB"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/JNxB"},{"rel":"embed","href":"http://cl.ly/JNxB/favicon.ico"},{"rel":"download","href":"http://cl.ly/JNxB/download/favicon.ico"}],"data":[{"name":"id","value":21907691},{"name":"name","value":"favicon.ico"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:01Z"}]},{"href":"https://api.getcloudapp.com/drops/21907690","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1o3e271l1G0n"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1o3e271l1G0n"},{"rel":"embed","href":"http://cl.ly/image/1o3e271l1G0n/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1o3e271l1G0n/download/favicon.ico"}],"data":[{"name":"id","value":21907690},{"name":"name","value":"New
86
+ File"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:59Z"}]},{"href":"https://api.getcloudapp.com/drops/21907688","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/0o2S0W1n2L30"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/0o2S0W1n2L30"},{"rel":"embed","href":"http://cl.ly/image/0o2S0W1n2L30/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/0o2S0W1n2L30/download/favicon.ico"}],"data":[{"name":"id","value":21907688},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:57Z"}]},{"href":"https://api.getcloudapp.com/drops/21907686","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNXA"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907686},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:56Z"}]},{"href":"https://api.getcloudapp.com/drops/21907685","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2k1L0G2U2z0I"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907685},{"name":"name","value":"New
87
+ Bookmark"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:55Z"}]},{"href":"https://api.getcloudapp.com/drops/21907683","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/0e0E2w0w0T0U"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907683},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:54Z"}]},{"href":"https://api.getcloudapp.com/drops/21907682","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2x3S331L1a3o"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907682},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:52Z"}]},{"href":"https://api.getcloudapp.com/drops/21907679","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1G282W04401a"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907679},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:47Z"}]},{"href":"https://api.getcloudapp.com/drops/21907678","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1u232n412l14"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1u232n412l14"},{"rel":"embed","href":"http://cl.ly/image/1u232n412l14/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1u232n412l14/download/favicon.ico"}],"data":[{"name":"id","value":21907678},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:45Z"}]}]}}'
88
+ http_version:
89
+ recorded_at: Tue, 11 Sep 2012 15:47:09 GMT
90
+ - request:
91
+ method: post
92
+ uri: https://api.getcloudapp.com/drops
93
+ body:
94
+ encoding: UTF-8
95
+ string: ! '{"name":null,"private":true,"trash":false,"bookmark_url":"http://getcloudapp.com","file_size":null}'
96
+ headers:
97
+ Authorization:
98
+ - Token token="abc123"
99
+ Content-Type:
100
+ - application/json
101
+ Accept:
102
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
103
+ text/plain
104
+ User-Agent:
105
+ - Ruby
106
+ response:
107
+ status:
108
+ code: 201
109
+ message: Created
110
+ headers:
111
+ Cache-Control:
112
+ - max-age=0, private, must-revalidate
113
+ Content-Type:
114
+ - application/vnd.collection+json; charset=utf-8
115
+ Etag:
116
+ - ! '"7cdba50099ff5c00f3f62477f8478466"'
117
+ Server:
118
+ - thin 1.4.1 codename Chromeo
119
+ Set-Cookie:
120
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTE4OWFhMjJlYTg4Yzg1M2I2ODBkMzgxMmM0ZjRiZmY4BjsAVA%3D%3D--b224422c7923800c9e7e72f8f98a378d075d615b;
121
+ path=/; HttpOnly
122
+ X-Runtime:
123
+ - '0.071041'
124
+ X-Ua-Compatible:
125
+ - IE=Edge,chrome=1
126
+ Transfer-Encoding:
127
+ - chunked
128
+ Connection:
129
+ - keep-alive
130
+ body:
131
+ encoding: US-ASCII
132
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907698","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3g3o3J1K0A2X"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907698},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:11Z"}]}]}}'
133
+ http_version:
134
+ recorded_at: Tue, 11 Sep 2012 15:47:09 GMT
135
+ - request:
136
+ method: get
137
+ uri: https://api.getcloudapp.com/drops/21907698
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ''
141
+ headers:
142
+ Authorization:
143
+ - Token token="abc123"
144
+ Accept:
145
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
146
+ text/plain
147
+ Accept-Encoding:
148
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
149
+ User-Agent:
150
+ - Ruby
151
+ response:
152
+ status:
153
+ code: 200
154
+ message: OK
155
+ headers:
156
+ Cache-Control:
157
+ - max-age=0, private, must-revalidate
158
+ Content-Type:
159
+ - application/vnd.collection+json; charset=utf-8
160
+ Etag:
161
+ - ! '"7cdba50099ff5c00f3f62477f8478466"'
162
+ Server:
163
+ - thin 1.4.1 codename Chromeo
164
+ X-Runtime:
165
+ - '0.013154'
166
+ X-Ua-Compatible:
167
+ - IE=Edge,chrome=1
168
+ Transfer-Encoding:
169
+ - chunked
170
+ Connection:
171
+ - keep-alive
172
+ body:
173
+ encoding: US-ASCII
174
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907698","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3g3o3J1K0A2X"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907698},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:11Z"}]}]}}'
175
+ http_version:
176
+ recorded_at: Tue, 11 Sep 2012 15:47:10 GMT
177
+ - request:
178
+ method: put
179
+ uri: https://api.getcloudapp.com/drops/21907698
180
+ body:
181
+ encoding: UTF-8
182
+ string: ! '{"name":"http://getcloudapp.com","private":false,"trash":false,"bookmark_url":null,"file_size":null}'
183
+ headers:
184
+ Authorization:
185
+ - Token token="abc123"
186
+ Content-Type:
187
+ - application/json
188
+ Accept:
189
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
190
+ text/plain
191
+ User-Agent:
192
+ - Ruby
193
+ response:
194
+ status:
195
+ code: 200
196
+ message: OK
197
+ headers:
198
+ Cache-Control:
199
+ - max-age=0, private, must-revalidate
200
+ Content-Type:
201
+ - application/vnd.collection+json; charset=utf-8
202
+ Etag:
203
+ - ! '"497a54cd06a0526490cac6e120b097b9"'
204
+ Server:
205
+ - thin 1.4.1 codename Chromeo
206
+ Set-Cookie:
207
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTg2M2Q4ODEzZGE1NzRjOWU3YzNhZmQwMTUwNDhlNzI1BjsAVA%3D%3D--871c2e4ed10fba0d67f59af6eea58feacd49eb2b;
208
+ path=/; HttpOnly
209
+ X-Runtime:
210
+ - '0.061808'
211
+ X-Ua-Compatible:
212
+ - IE=Edge,chrome=1
213
+ Content-Length:
214
+ - '998'
215
+ Connection:
216
+ - keep-alive
217
+ body:
218
+ encoding: US-ASCII
219
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907698","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JOI3"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907698},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:11Z"}]}]}}'
220
+ http_version:
221
+ recorded_at: Tue, 11 Sep 2012 15:47:10 GMT
222
+ recorded_with: VCR 2.0.1
@@ -0,0 +1,764 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.getcloudapp.com/
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Authorization:
11
+ - Token token="abc123"
12
+ Accept:
13
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
14
+ text/plain
15
+ Accept-Encoding:
16
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
17
+ User-Agent:
18
+ - Ruby
19
+ response:
20
+ status:
21
+ code: 200
22
+ message: OK
23
+ headers:
24
+ Cache-Control:
25
+ - max-age=0, private, must-revalidate
26
+ Content-Type:
27
+ - application/vnd.collection+json; charset=utf-8
28
+ Etag:
29
+ - ! '"44e8e003e0f1b5e38f7ca916ff4497d7"'
30
+ Server:
31
+ - thin 1.4.1 codename Chromeo
32
+ X-Runtime:
33
+ - '0.006412'
34
+ X-Ua-Compatible:
35
+ - IE=Edge,chrome=1
36
+ Transfer-Encoding:
37
+ - chunked
38
+ Connection:
39
+ - keep-alive
40
+ body:
41
+ encoding: US-ASCII
42
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/","links":[{"rel":"drops","href":"https://api.getcloudapp.com/drops"}]}}'
43
+ http_version:
44
+ recorded_at: Tue, 11 Sep 2012 15:47:17 GMT
45
+ - request:
46
+ method: get
47
+ uri: https://api.getcloudapp.com/drops
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ''
51
+ headers:
52
+ Authorization:
53
+ - Token token="abc123"
54
+ Accept:
55
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
56
+ text/plain
57
+ Accept-Encoding:
58
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
59
+ User-Agent:
60
+ - Ruby
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Cache-Control:
67
+ - max-age=0, private, must-revalidate
68
+ Content-Type:
69
+ - application/vnd.collection+json; charset=utf-8
70
+ Etag:
71
+ - ! '"a3844b4aea26b26b4088829a18001e7c"'
72
+ Server:
73
+ - thin 1.4.1 codename Chromeo
74
+ X-Runtime:
75
+ - '0.044825'
76
+ X-Ua-Compatible:
77
+ - IE=Edge,chrome=1
78
+ Transfer-Encoding:
79
+ - chunked
80
+ Connection:
81
+ - keep-alive
82
+ body:
83
+ encoding: US-ASCII
84
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907702","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1N291V302m2S"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907702},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:15Z"}]},{"href":"https://api.getcloudapp.com/drops/21907698","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JOI3"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907698},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:11Z"}]},{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3U1Q170u0g2b"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]},{"href":"https://api.getcloudapp.com/drops/21907695","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/3Q313d440a3B"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/3Q313d440a3B"},{"rel":"embed","href":"http://cl.ly/image/3Q313d440a3B/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/3Q313d440a3B/download/favicon.ico"}],"data":[{"name":"id","value":21907695},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:06Z"}]},{"href":"https://api.getcloudapp.com/drops/21907694","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/02073a0O3m0F"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907694},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:04Z"}]},{"href":"https://api.getcloudapp.com/drops/21907693","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNym"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907693},{"name":"name","value":"New
85
+ Drop Name"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:02Z"}]},{"href":"https://api.getcloudapp.com/drops/21907691","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNxB"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/JNxB"},{"rel":"embed","href":"http://cl.ly/JNxB/favicon.ico"},{"rel":"download","href":"http://cl.ly/JNxB/download/favicon.ico"}],"data":[{"name":"id","value":21907691},{"name":"name","value":"favicon.ico"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:01Z"}]},{"href":"https://api.getcloudapp.com/drops/21907690","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1o3e271l1G0n"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1o3e271l1G0n"},{"rel":"embed","href":"http://cl.ly/image/1o3e271l1G0n/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1o3e271l1G0n/download/favicon.ico"}],"data":[{"name":"id","value":21907690},{"name":"name","value":"New
86
+ File"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:59Z"}]},{"href":"https://api.getcloudapp.com/drops/21907688","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/0o2S0W1n2L30"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/0o2S0W1n2L30"},{"rel":"embed","href":"http://cl.ly/image/0o2S0W1n2L30/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/0o2S0W1n2L30/download/favicon.ico"}],"data":[{"name":"id","value":21907688},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:57Z"}]},{"href":"https://api.getcloudapp.com/drops/21907686","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNXA"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907686},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:56Z"}]},{"href":"https://api.getcloudapp.com/drops/21907685","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2k1L0G2U2z0I"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907685},{"name":"name","value":"New
87
+ Bookmark"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:55Z"}]},{"href":"https://api.getcloudapp.com/drops/21907683","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/0e0E2w0w0T0U"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907683},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:54Z"}]},{"href":"https://api.getcloudapp.com/drops/21907682","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2x3S331L1a3o"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907682},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:52Z"}]},{"href":"https://api.getcloudapp.com/drops/21907679","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1G282W04401a"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907679},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:47Z"}]},{"href":"https://api.getcloudapp.com/drops/21907678","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1u232n412l14"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1u232n412l14"},{"rel":"embed","href":"http://cl.ly/image/1u232n412l14/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1u232n412l14/download/favicon.ico"}],"data":[{"name":"id","value":21907678},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:45Z"}]}]}}'
88
+ http_version:
89
+ recorded_at: Tue, 11 Sep 2012 15:47:17 GMT
90
+ - request:
91
+ method: get
92
+ uri: https://api.getcloudapp.com/drops?filter=all&limit=20
93
+ body:
94
+ encoding: US-ASCII
95
+ string: ''
96
+ headers:
97
+ Authorization:
98
+ - Token token="abc123"
99
+ Accept:
100
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
101
+ text/plain
102
+ Accept-Encoding:
103
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
104
+ User-Agent:
105
+ - Ruby
106
+ response:
107
+ status:
108
+ code: 200
109
+ message: OK
110
+ headers:
111
+ Cache-Control:
112
+ - max-age=0, private, must-revalidate
113
+ Content-Type:
114
+ - application/vnd.collection+json; charset=utf-8
115
+ Etag:
116
+ - ! '"756e824ffea5b69fdd2f292174a362ff"'
117
+ Server:
118
+ - thin 1.4.1 codename Chromeo
119
+ X-Runtime:
120
+ - '0.048945'
121
+ X-Ua-Compatible:
122
+ - IE=Edge,chrome=1
123
+ Transfer-Encoding:
124
+ - chunked
125
+ Connection:
126
+ - keep-alive
127
+ body:
128
+ encoding: US-ASCII
129
+ string: ! '{"collection":{"version":"1.0","href":"https://api.getcloudapp.com/drops","links":[{"rel":"drops-stream","href":"https://api.getcloudapp.com/drops/stream"}],"queries":[{"href":"https://api.getcloudapp.com/drops","rel":"drops-list","data":[{"name":"filter","value":"active"},{"name":"limit","value":20}]}],"template":{"data":[{"name":"name","value":null},{"name":"private","value":true},{"name":"trash","value":false},{"name":"bookmark_url","value":null},{"name":"file_size","value":null}]},"items":[{"href":"https://api.getcloudapp.com/drops/21907702","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1N291V302m2S"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907702},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:15Z"}]},{"href":"https://api.getcloudapp.com/drops/21907699","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/0y3v3S1l390q"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907699},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":true},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:13Z"}]},{"href":"https://api.getcloudapp.com/drops/21907698","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JOI3"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907698},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:11Z"}]},{"href":"https://api.getcloudapp.com/drops/21907697","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3U1Q170u0g2b"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907697},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:09Z"}]},{"href":"https://api.getcloudapp.com/drops/21907695","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/3Q313d440a3B"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/3Q313d440a3B"},{"rel":"embed","href":"http://cl.ly/image/3Q313d440a3B/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/3Q313d440a3B/download/favicon.ico"}],"data":[{"name":"id","value":21907695},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:06Z"}]},{"href":"https://api.getcloudapp.com/drops/21907694","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/02073a0O3m0F"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907694},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:04Z"}]},{"href":"https://api.getcloudapp.com/drops/21907693","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNym"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907693},{"name":"name","value":"New
130
+ Drop Name"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:02Z"}]},{"href":"https://api.getcloudapp.com/drops/21907691","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNxB"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/JNxB"},{"rel":"embed","href":"http://cl.ly/JNxB/favicon.ico"},{"rel":"download","href":"http://cl.ly/JNxB/download/favicon.ico"}],"data":[{"name":"id","value":21907691},{"name":"name","value":"favicon.ico"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:47:01Z"}]},{"href":"https://api.getcloudapp.com/drops/21907690","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1o3e271l1G0n"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1o3e271l1G0n"},{"rel":"embed","href":"http://cl.ly/image/1o3e271l1G0n/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1o3e271l1G0n/download/favicon.ico"}],"data":[{"name":"id","value":21907690},{"name":"name","value":"New
131
+ File"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:59Z"}]},{"href":"https://api.getcloudapp.com/drops/21907688","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/0o2S0W1n2L30"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/0o2S0W1n2L30"},{"rel":"embed","href":"http://cl.ly/image/0o2S0W1n2L30/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/0o2S0W1n2L30/download/favicon.ico"}],"data":[{"name":"id","value":21907688},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:57Z"}]},{"href":"https://api.getcloudapp.com/drops/21907686","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/JNXA"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907686},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":false},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:56Z"}]},{"href":"https://api.getcloudapp.com/drops/21907685","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2k1L0G2U2z0I"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907685},{"name":"name","value":"New
132
+ Bookmark"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:55Z"}]},{"href":"https://api.getcloudapp.com/drops/21907683","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/0e0E2w0w0T0U"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907683},{"name":"name","value":"http://getcloudapp.com"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:54Z"}]},{"href":"https://api.getcloudapp.com/drops/21907682","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/2x3S331L1a3o"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907682},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:52Z"}]},{"href":"https://api.getcloudapp.com/drops/21907681","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/3B0p1l3t0y2D"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907681},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":true},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:48Z"}]},{"href":"https://api.getcloudapp.com/drops/21907679","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/1G282W04401a"},{"rel":"icon","href":"https://d9yac136u048z.cloudfront.net/images/thumbnails/bookmark.png"}],"data":[{"name":"id","value":21907679},{"name":"name","value":"http://cl.ly"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:47Z"}]},{"href":"https://api.getcloudapp.com/drops/21907678","links":[{"rel":"collection","href":"https://api.getcloudapp.com/drops"},{"rel":"canonical","href":"http://cl.ly/image/1u232n412l14"},{"rel":"icon","href":"https://thumbs.getcloudapp.com/1u232n412l14"},{"rel":"embed","href":"http://cl.ly/image/1u232n412l14/favicon.ico"},{"rel":"download","href":"http://cl.ly/image/1u232n412l14/download/favicon.ico"}],"data":[{"name":"id","value":21907678},{"name":"name","value":"favicon.ico"},{"name":"private","value":true},{"name":"trash","value":false},{"name":"views","value":0},{"name":"created","value":"2012-09-11T15:46:45Z"}]}]}}'
133
+ http_version:
134
+ recorded_at: Tue, 11 Sep 2012 15:47:17 GMT
135
+ - request:
136
+ method: delete
137
+ uri: https://api.getcloudapp.com/drops/21907702
138
+ body:
139
+ encoding: US-ASCII
140
+ string: ''
141
+ headers:
142
+ Authorization:
143
+ - Token token="abc123"
144
+ Accept:
145
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
146
+ text/plain
147
+ User-Agent:
148
+ - Ruby
149
+ response:
150
+ status:
151
+ code: 204
152
+ message: No Content
153
+ headers:
154
+ Cache-Control:
155
+ - no-cache
156
+ Server:
157
+ - thin 1.4.1 codename Chromeo
158
+ Set-Cookie:
159
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTVmMmU4OTJjYWMyY2ExMTFiNGU2YWQ0NDMwY2ViY2M1BjsAVA%3D%3D--f2bff3f9a552115614342280b3cce969a6a8e6c0;
160
+ path=/; HttpOnly
161
+ X-Runtime:
162
+ - '0.049551'
163
+ X-Ua-Compatible:
164
+ - IE=Edge,chrome=1
165
+ Connection:
166
+ - keep-alive
167
+ body:
168
+ encoding: US-ASCII
169
+ string: ''
170
+ http_version:
171
+ recorded_at: Tue, 11 Sep 2012 15:47:18 GMT
172
+ - request:
173
+ method: delete
174
+ uri: https://api.getcloudapp.com/drops/21907699
175
+ body:
176
+ encoding: US-ASCII
177
+ string: ''
178
+ headers:
179
+ Authorization:
180
+ - Token token="abc123"
181
+ Accept:
182
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
183
+ text/plain
184
+ User-Agent:
185
+ - Ruby
186
+ response:
187
+ status:
188
+ code: 204
189
+ message: No Content
190
+ headers:
191
+ Cache-Control:
192
+ - no-cache
193
+ Server:
194
+ - thin 1.4.1 codename Chromeo
195
+ Set-Cookie:
196
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWMzOTRmODBhZDY1NGEwOTgxODkwYTU5N2Y5NTY0MjRjBjsAVA%3D%3D--e9bf24bb143eb88ba364221755184dad5671f5b4;
197
+ path=/; HttpOnly
198
+ X-Runtime:
199
+ - '0.131559'
200
+ X-Ua-Compatible:
201
+ - IE=Edge,chrome=1
202
+ Connection:
203
+ - keep-alive
204
+ body:
205
+ encoding: US-ASCII
206
+ string: ''
207
+ http_version:
208
+ recorded_at: Tue, 11 Sep 2012 15:47:18 GMT
209
+ - request:
210
+ method: delete
211
+ uri: https://api.getcloudapp.com/drops/21907698
212
+ body:
213
+ encoding: US-ASCII
214
+ string: ''
215
+ headers:
216
+ Authorization:
217
+ - Token token="abc123"
218
+ Accept:
219
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
220
+ text/plain
221
+ User-Agent:
222
+ - Ruby
223
+ response:
224
+ status:
225
+ code: 204
226
+ message: No Content
227
+ headers:
228
+ Cache-Control:
229
+ - no-cache
230
+ Server:
231
+ - thin 1.4.1 codename Chromeo
232
+ Set-Cookie:
233
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWY5NWY4ZTIxYmYwNTNhYmEwODY3NmIxOWJiYWJlNjA3BjsAVA%3D%3D--146cd1091098c7fa25d4915ed745d6e24df33d21;
234
+ path=/; HttpOnly
235
+ X-Runtime:
236
+ - '0.053285'
237
+ X-Ua-Compatible:
238
+ - IE=Edge,chrome=1
239
+ Connection:
240
+ - keep-alive
241
+ body:
242
+ encoding: US-ASCII
243
+ string: ''
244
+ http_version:
245
+ recorded_at: Tue, 11 Sep 2012 15:47:18 GMT
246
+ - request:
247
+ method: delete
248
+ uri: https://api.getcloudapp.com/drops/21907697
249
+ body:
250
+ encoding: US-ASCII
251
+ string: ''
252
+ headers:
253
+ Authorization:
254
+ - Token token="abc123"
255
+ Accept:
256
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
257
+ text/plain
258
+ User-Agent:
259
+ - Ruby
260
+ response:
261
+ status:
262
+ code: 204
263
+ message: No Content
264
+ headers:
265
+ Cache-Control:
266
+ - no-cache
267
+ Server:
268
+ - thin 1.4.1 codename Chromeo
269
+ Set-Cookie:
270
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTY4NmU0YTQxMmM5ODUwNTcxYzE3MWUyMzcyZDYxMjM5BjsAVA%3D%3D--10c1193bd7488e24f3407e3dacad4e7790d0ee6c;
271
+ path=/; HttpOnly
272
+ X-Runtime:
273
+ - '0.065063'
274
+ X-Ua-Compatible:
275
+ - IE=Edge,chrome=1
276
+ Connection:
277
+ - keep-alive
278
+ body:
279
+ encoding: US-ASCII
280
+ string: ''
281
+ http_version:
282
+ recorded_at: Tue, 11 Sep 2012 15:47:19 GMT
283
+ - request:
284
+ method: delete
285
+ uri: https://api.getcloudapp.com/drops/21907695
286
+ body:
287
+ encoding: US-ASCII
288
+ string: ''
289
+ headers:
290
+ Authorization:
291
+ - Token token="abc123"
292
+ Accept:
293
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
294
+ text/plain
295
+ User-Agent:
296
+ - Ruby
297
+ response:
298
+ status:
299
+ code: 204
300
+ message: No Content
301
+ headers:
302
+ Cache-Control:
303
+ - no-cache
304
+ Server:
305
+ - thin 1.4.1 codename Chromeo
306
+ Set-Cookie:
307
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTIxMTEzM2FiOTM3ZmUzYTA5YjA2OWFkYTA0MjQ0MzQ4BjsAVA%3D%3D--d7ff3bb4717ebf41bb486424f0a27c8856515b29;
308
+ path=/; HttpOnly
309
+ X-Runtime:
310
+ - '0.075977'
311
+ X-Ua-Compatible:
312
+ - IE=Edge,chrome=1
313
+ Connection:
314
+ - keep-alive
315
+ body:
316
+ encoding: US-ASCII
317
+ string: ''
318
+ http_version:
319
+ recorded_at: Tue, 11 Sep 2012 15:47:19 GMT
320
+ - request:
321
+ method: delete
322
+ uri: https://api.getcloudapp.com/drops/21907694
323
+ body:
324
+ encoding: US-ASCII
325
+ string: ''
326
+ headers:
327
+ Authorization:
328
+ - Token token="abc123"
329
+ Accept:
330
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
331
+ text/plain
332
+ User-Agent:
333
+ - Ruby
334
+ response:
335
+ status:
336
+ code: 204
337
+ message: No Content
338
+ headers:
339
+ Cache-Control:
340
+ - no-cache
341
+ Server:
342
+ - thin 1.4.1 codename Chromeo
343
+ Set-Cookie:
344
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTYyY2IyNzM1YWMxNGY1ZWRkMWNiYzQ1MzBhZTQ2ZjhiBjsAVA%3D%3D--2db4a19817da4fd6bdd44b82ab2d0e9d19a673d5;
345
+ path=/; HttpOnly
346
+ X-Runtime:
347
+ - '0.062564'
348
+ X-Ua-Compatible:
349
+ - IE=Edge,chrome=1
350
+ Connection:
351
+ - keep-alive
352
+ body:
353
+ encoding: US-ASCII
354
+ string: ''
355
+ http_version:
356
+ recorded_at: Tue, 11 Sep 2012 15:47:19 GMT
357
+ - request:
358
+ method: delete
359
+ uri: https://api.getcloudapp.com/drops/21907693
360
+ body:
361
+ encoding: US-ASCII
362
+ string: ''
363
+ headers:
364
+ Authorization:
365
+ - Token token="abc123"
366
+ Accept:
367
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
368
+ text/plain
369
+ User-Agent:
370
+ - Ruby
371
+ response:
372
+ status:
373
+ code: 204
374
+ message: No Content
375
+ headers:
376
+ Cache-Control:
377
+ - no-cache
378
+ Server:
379
+ - thin 1.4.1 codename Chromeo
380
+ Set-Cookie:
381
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWFhY2Q5NWQ5YTgyN2FmYTI5NjZmMzMxZjRmNGZjNGI5BjsAVA%3D%3D--c49c12e98a6b421c683f07157b95a9b61d1dc2b2;
382
+ path=/; HttpOnly
383
+ X-Runtime:
384
+ - '0.066449'
385
+ X-Ua-Compatible:
386
+ - IE=Edge,chrome=1
387
+ Connection:
388
+ - keep-alive
389
+ body:
390
+ encoding: US-ASCII
391
+ string: ''
392
+ http_version:
393
+ recorded_at: Tue, 11 Sep 2012 15:47:20 GMT
394
+ - request:
395
+ method: delete
396
+ uri: https://api.getcloudapp.com/drops/21907691
397
+ body:
398
+ encoding: US-ASCII
399
+ string: ''
400
+ headers:
401
+ Authorization:
402
+ - Token token="abc123"
403
+ Accept:
404
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
405
+ text/plain
406
+ User-Agent:
407
+ - Ruby
408
+ response:
409
+ status:
410
+ code: 204
411
+ message: No Content
412
+ headers:
413
+ Cache-Control:
414
+ - no-cache
415
+ Server:
416
+ - thin 1.4.1 codename Chromeo
417
+ Set-Cookie:
418
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTI5M2Q2ZjE3M2U4OWEzZTkwNDI2ODM3YWQ1ZmVkMDg3BjsAVA%3D%3D--6af15401a49b5a36e66fd5b02aad2eaf34fefac8;
419
+ path=/; HttpOnly
420
+ X-Runtime:
421
+ - '0.077478'
422
+ X-Ua-Compatible:
423
+ - IE=Edge,chrome=1
424
+ Connection:
425
+ - keep-alive
426
+ body:
427
+ encoding: US-ASCII
428
+ string: ''
429
+ http_version:
430
+ recorded_at: Tue, 11 Sep 2012 15:47:20 GMT
431
+ - request:
432
+ method: delete
433
+ uri: https://api.getcloudapp.com/drops/21907690
434
+ body:
435
+ encoding: US-ASCII
436
+ string: ''
437
+ headers:
438
+ Authorization:
439
+ - Token token="abc123"
440
+ Accept:
441
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
442
+ text/plain
443
+ User-Agent:
444
+ - Ruby
445
+ response:
446
+ status:
447
+ code: 204
448
+ message: No Content
449
+ headers:
450
+ Cache-Control:
451
+ - no-cache
452
+ Server:
453
+ - thin 1.4.1 codename Chromeo
454
+ Set-Cookie:
455
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTM5YjVjM2ZkNTk4NjkzZDA1MjJmZTNmMDVkYmYzYTJhBjsAVA%3D%3D--697134cb55a7f58b2e426d10475bdec90de93309;
456
+ path=/; HttpOnly
457
+ X-Runtime:
458
+ - '0.060007'
459
+ X-Ua-Compatible:
460
+ - IE=Edge,chrome=1
461
+ Connection:
462
+ - keep-alive
463
+ body:
464
+ encoding: US-ASCII
465
+ string: ''
466
+ http_version:
467
+ recorded_at: Tue, 11 Sep 2012 15:47:20 GMT
468
+ - request:
469
+ method: delete
470
+ uri: https://api.getcloudapp.com/drops/21907688
471
+ body:
472
+ encoding: US-ASCII
473
+ string: ''
474
+ headers:
475
+ Authorization:
476
+ - Token token="abc123"
477
+ Accept:
478
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
479
+ text/plain
480
+ User-Agent:
481
+ - Ruby
482
+ response:
483
+ status:
484
+ code: 204
485
+ message: No Content
486
+ headers:
487
+ Cache-Control:
488
+ - no-cache
489
+ Server:
490
+ - thin 1.4.1 codename Chromeo
491
+ Set-Cookie:
492
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTdjZDBjZWZlOWJmOWJlYjZlZmZiZTQ1ZTFkNzg0ZGE4BjsAVA%3D%3D--09a945221826f075b21ea0087ba1f69c7bb25c7b;
493
+ path=/; HttpOnly
494
+ X-Runtime:
495
+ - '0.100181'
496
+ X-Ua-Compatible:
497
+ - IE=Edge,chrome=1
498
+ Connection:
499
+ - keep-alive
500
+ body:
501
+ encoding: US-ASCII
502
+ string: ''
503
+ http_version:
504
+ recorded_at: Tue, 11 Sep 2012 15:47:21 GMT
505
+ - request:
506
+ method: delete
507
+ uri: https://api.getcloudapp.com/drops/21907686
508
+ body:
509
+ encoding: US-ASCII
510
+ string: ''
511
+ headers:
512
+ Authorization:
513
+ - Token token="abc123"
514
+ Accept:
515
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
516
+ text/plain
517
+ User-Agent:
518
+ - Ruby
519
+ response:
520
+ status:
521
+ code: 204
522
+ message: No Content
523
+ headers:
524
+ Cache-Control:
525
+ - no-cache
526
+ Server:
527
+ - thin 1.4.1 codename Chromeo
528
+ Set-Cookie:
529
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWYyZjdiM2JmZmQ3MDMzODM1MDcyMjljNzBmNjg1OGVmBjsAVA%3D%3D--fc9cb550be98bce85c33bbdf7d3b2e47c73a3e29;
530
+ path=/; HttpOnly
531
+ X-Runtime:
532
+ - '0.067684'
533
+ X-Ua-Compatible:
534
+ - IE=Edge,chrome=1
535
+ Connection:
536
+ - keep-alive
537
+ body:
538
+ encoding: US-ASCII
539
+ string: ''
540
+ http_version:
541
+ recorded_at: Tue, 11 Sep 2012 15:47:21 GMT
542
+ - request:
543
+ method: delete
544
+ uri: https://api.getcloudapp.com/drops/21907685
545
+ body:
546
+ encoding: US-ASCII
547
+ string: ''
548
+ headers:
549
+ Authorization:
550
+ - Token token="abc123"
551
+ Accept:
552
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
553
+ text/plain
554
+ User-Agent:
555
+ - Ruby
556
+ response:
557
+ status:
558
+ code: 204
559
+ message: No Content
560
+ headers:
561
+ Cache-Control:
562
+ - no-cache
563
+ Server:
564
+ - thin 1.4.1 codename Chromeo
565
+ Set-Cookie:
566
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWZkNGZkMzZjODk3ZTY1NzhhNmRlMjg2MWJiMjhiODdhBjsAVA%3D%3D--64e7d27f4aa7de69c2280f54e22d8efbcc2e771d;
567
+ path=/; HttpOnly
568
+ X-Runtime:
569
+ - '0.157036'
570
+ X-Ua-Compatible:
571
+ - IE=Edge,chrome=1
572
+ Connection:
573
+ - keep-alive
574
+ body:
575
+ encoding: US-ASCII
576
+ string: ''
577
+ http_version:
578
+ recorded_at: Tue, 11 Sep 2012 15:47:23 GMT
579
+ - request:
580
+ method: delete
581
+ uri: https://api.getcloudapp.com/drops/21907683
582
+ body:
583
+ encoding: US-ASCII
584
+ string: ''
585
+ headers:
586
+ Authorization:
587
+ - Token token="abc123"
588
+ Accept:
589
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
590
+ text/plain
591
+ User-Agent:
592
+ - Ruby
593
+ response:
594
+ status:
595
+ code: 204
596
+ message: No Content
597
+ headers:
598
+ Cache-Control:
599
+ - no-cache
600
+ Server:
601
+ - thin 1.4.1 codename Chromeo
602
+ Set-Cookie:
603
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTVkZjEyN2RhNTBhMzQ4OGQ5NWRmMWU0ODFiNWRhNjQ2BjsAVA%3D%3D--5e0668edbca03f1ed0e07ae8896170a4d98bef84;
604
+ path=/; HttpOnly
605
+ X-Runtime:
606
+ - '0.075911'
607
+ X-Ua-Compatible:
608
+ - IE=Edge,chrome=1
609
+ Connection:
610
+ - keep-alive
611
+ body:
612
+ encoding: US-ASCII
613
+ string: ''
614
+ http_version:
615
+ recorded_at: Tue, 11 Sep 2012 15:47:24 GMT
616
+ - request:
617
+ method: delete
618
+ uri: https://api.getcloudapp.com/drops/21907682
619
+ body:
620
+ encoding: US-ASCII
621
+ string: ''
622
+ headers:
623
+ Authorization:
624
+ - Token token="abc123"
625
+ Accept:
626
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
627
+ text/plain
628
+ User-Agent:
629
+ - Ruby
630
+ response:
631
+ status:
632
+ code: 204
633
+ message: No Content
634
+ headers:
635
+ Cache-Control:
636
+ - no-cache
637
+ Server:
638
+ - thin 1.4.1 codename Chromeo
639
+ Set-Cookie:
640
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTc5MTFjZGM1OWY4NTk0YjgwMjc2MjZmNGNkY2FlMmZlBjsAVA%3D%3D--fe937d843ce0094d1186dd92bcd561d1b12f659c;
641
+ path=/; HttpOnly
642
+ X-Runtime:
643
+ - '0.071880'
644
+ X-Ua-Compatible:
645
+ - IE=Edge,chrome=1
646
+ Connection:
647
+ - keep-alive
648
+ body:
649
+ encoding: US-ASCII
650
+ string: ''
651
+ http_version:
652
+ recorded_at: Tue, 11 Sep 2012 15:47:25 GMT
653
+ - request:
654
+ method: delete
655
+ uri: https://api.getcloudapp.com/drops/21907681
656
+ body:
657
+ encoding: US-ASCII
658
+ string: ''
659
+ headers:
660
+ Authorization:
661
+ - Token token="abc123"
662
+ Accept:
663
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
664
+ text/plain
665
+ User-Agent:
666
+ - Ruby
667
+ response:
668
+ status:
669
+ code: 204
670
+ message: No Content
671
+ headers:
672
+ Cache-Control:
673
+ - no-cache
674
+ Server:
675
+ - thin 1.4.1 codename Chromeo
676
+ Set-Cookie:
677
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWY2ZTA4ZjBjZGY4ODk2ZmFkMDZhYThlYmU3MDE5NjQ3BjsAVA%3D%3D--45cc241cac413960666ce00a63f57526bfb1c2c0;
678
+ path=/; HttpOnly
679
+ X-Runtime:
680
+ - '0.070266'
681
+ X-Ua-Compatible:
682
+ - IE=Edge,chrome=1
683
+ Connection:
684
+ - keep-alive
685
+ body:
686
+ encoding: US-ASCII
687
+ string: ''
688
+ http_version:
689
+ recorded_at: Tue, 11 Sep 2012 15:47:25 GMT
690
+ - request:
691
+ method: delete
692
+ uri: https://api.getcloudapp.com/drops/21907679
693
+ body:
694
+ encoding: US-ASCII
695
+ string: ''
696
+ headers:
697
+ Authorization:
698
+ - Token token="abc123"
699
+ Accept:
700
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
701
+ text/plain
702
+ User-Agent:
703
+ - Ruby
704
+ response:
705
+ status:
706
+ code: 204
707
+ message: No Content
708
+ headers:
709
+ Cache-Control:
710
+ - no-cache
711
+ Server:
712
+ - thin 1.4.1 codename Chromeo
713
+ Set-Cookie:
714
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJTM4OTJlYjAyNjgxZTA3YWFhMjYwZTA1ZjdmYmYzMDI2BjsAVA%3D%3D--ae00912518da45119be55d616e3b264458d78692;
715
+ path=/; HttpOnly
716
+ X-Runtime:
717
+ - '0.056373'
718
+ X-Ua-Compatible:
719
+ - IE=Edge,chrome=1
720
+ Connection:
721
+ - keep-alive
722
+ body:
723
+ encoding: US-ASCII
724
+ string: ''
725
+ http_version:
726
+ recorded_at: Tue, 11 Sep 2012 15:47:25 GMT
727
+ - request:
728
+ method: delete
729
+ uri: https://api.getcloudapp.com/drops/21907678
730
+ body:
731
+ encoding: US-ASCII
732
+ string: ''
733
+ headers:
734
+ Authorization:
735
+ - Token token="abc123"
736
+ Accept:
737
+ - application/json, text/x-yaml, application/xml, application/xhtml+xml, text/html,
738
+ text/plain
739
+ User-Agent:
740
+ - Ruby
741
+ response:
742
+ status:
743
+ code: 204
744
+ message: No Content
745
+ headers:
746
+ Cache-Control:
747
+ - no-cache
748
+ Server:
749
+ - thin 1.4.1 codename Chromeo
750
+ Set-Cookie:
751
+ - _engine_session=BAh7BkkiD3Nlc3Npb25faWQGOgZFRkkiJWEzMjRlZDVmZTBlOTUyNTMzMTc3MjE3NDI0MDhkNjI4BjsAVA%3D%3D--be02a1fb4473468c23de0a939a0376ce8b37497a;
752
+ path=/; HttpOnly
753
+ X-Runtime:
754
+ - '0.092330'
755
+ X-Ua-Compatible:
756
+ - IE=Edge,chrome=1
757
+ Connection:
758
+ - keep-alive
759
+ body:
760
+ encoding: US-ASCII
761
+ string: ''
762
+ http_version:
763
+ recorded_at: Tue, 11 Sep 2012 15:47:26 GMT
764
+ recorded_with: VCR 2.0.1