cartodb-rb-client 0.3.1 → 0.4.0

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 (63) hide show
  1. data/Gemfile +2 -2
  2. data/lib/cartodb-rb-client/cartodb/client/connection/cartodb.rb +1 -1
  3. data/lib/cartodb-rb-client/cartodb/model/base.rb +1 -1
  4. data/lib/cartodb-rb-client/cartodb/model/getters.rb +6 -9
  5. data/lib/cartodb-rb-client/cartodb/model/schema.rb +13 -2
  6. data/lib/cartodb-rb-client/cartodb/model/setters.rb +5 -9
  7. data/lib/cartodb-rb-client/version.rb +1 -1
  8. data/spec/client_spec.rb +3 -3
  9. data/spec/fixtures/cassettes/CartoDB_client/should_add_and_remove_colums_in_a_previously_created_table.yml +376 -0
  10. data/spec/fixtures/cassettes/CartoDB_client/should_allow_reserved_words_in_columns_names.yml +121 -0
  11. data/spec/fixtures/cassettes/CartoDB_client/should_change_a_previously_created_column.yml +174 -0
  12. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_and_get_its_table_definition.yml +123 -0
  13. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_forcing_the_schema_and_get_its_table_definition.yml +123 -0
  14. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_from_a_csv_file.yml +1971 -0
  15. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTILINESTRING_type_geometry.yml +123 -0
  16. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_MULTIPOLYGON_type_geometry.yml +123 -0
  17. data/spec/fixtures/cassettes/CartoDB_client/should_create_a_table_with_POINT_type_geometry.yml +123 -0
  18. data/spec/fixtures/cassettes/CartoDB_client/should_delete_a_table_s_row.yml +221 -0
  19. data/spec/fixtures/cassettes/CartoDB_client/should_drop_a_table.yml +278 -0
  20. data/spec/fixtures/cassettes/CartoDB_client/should_escape_properly_input_data_in_insert_queries.yml +121 -0
  21. data/spec/fixtures/cassettes/CartoDB_client/should_execute_a_select_query_and_return_results.yml +615 -0
  22. data/spec/fixtures/cassettes/CartoDB_client/should_get_a_table_by_its_name.yml +123 -0
  23. data/spec/fixtures/cassettes/CartoDB_client/should_import_any_kind_of_data_file.yml +6612 -0
  24. data/spec/fixtures/cassettes/CartoDB_client/should_insert_a_row_in_a_table.yml +121 -0
  25. data/spec/fixtures/cassettes/CartoDB_client/should_paginate_records.yml +2624 -0
  26. data/spec/fixtures/cassettes/CartoDB_client/should_rename_an_existing_table.yml +123 -0
  27. data/spec/fixtures/cassettes/CartoDB_client/should_return_errors_on_invalid_queries.yml +59 -0
  28. data/spec/fixtures/cassettes/CartoDB_client/should_return_nil_when_requesting_a_table_which_does_not_exists.yml +68 -0
  29. data/spec/fixtures/cassettes/CartoDB_client/should_return_user_s_table_list.yml +176 -0
  30. data/spec/fixtures/cassettes/CartoDB_client/should_update_a_row_in_a_table.yml +170 -0
  31. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_destroy_a_previously_created_record.yml +1398 -0
  32. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_initialize_attributes_of_the_model_without_persisting_them.yml +223 -0
  33. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_save_method.yml +1406 -0
  34. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_persist_into_cartodb_using_the_static_create_method.yml +1299 -0
  35. data/spec/fixtures/cassettes/CartoDB_model_data_methods/should_update_an_existing_record.yml +2028 -0
  36. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_add_more_columns_if_the_table_previously_exists.yml +990 -0
  37. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_contain_an_array_of_columns.yml +1443 -0
  38. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_a_table_with_custom_name_if_specified.yml +270 -0
  39. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_custom_data_types_columns.yml +421 -0
  40. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_model_with_polygon_type_geometry_columns.yml +272 -0
  41. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_create_the_table_in_cartodb_if_it_doesn_t_exists.yml +780 -0
  42. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_CartoDB_Client_instance_as_a_connection_object.yml +682 -0
  43. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_have_a_valid_table_name.yml +727 -0
  44. data/spec/fixtures/cassettes/CartoDB_model_metadata_methods/should_return_only_data_columns.yml +829 -0
  45. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_allow_to_select_the_specified_fiels.yml +17953 -0
  46. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_count_all_records.yml +15596 -0
  47. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_find_a_record_by_its_id.yml +15197 -0
  48. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_order_results.yml +16439 -0
  49. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_paginate_results.yml +24501 -0
  50. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_return_all_records_paginated.yml +16488 -0
  51. data/spec/fixtures/cassettes/CartoDB_model_scopes/should_search_records_by_certain_filters.yml +4950 -0
  52. data/spec/fixtures/cassettes/cartodb_spec_models.yml +2467 -0
  53. data/spec/fixtures/cassettes/clean_tables.yml +266 -0
  54. data/spec/model/data_spec.rb +6 -6
  55. data/spec/model/metadata_spec.rb +11 -3
  56. data/spec/model/scopes_spec.rb +2 -2
  57. data/spec/model_specs_helper.rb +2 -0
  58. data/spec/spec_helper.rb +18 -5
  59. data/spec/support/cartodb_factories.rb +3 -3
  60. data/spec/support/cartodb_helpers.rb +1 -1
  61. data/spec/support/cartodb_models.rb +26 -19
  62. metadata +97 -7
  63. data/spec/support/data/ngos.xlsx +0 -0
@@ -0,0 +1,990 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - &70258896262640 !ruby/object:MIME::Type
12
+ content_type: application/json
13
+ raw_media_type: application
14
+ raw_sub_type: json
15
+ simplified: application/json
16
+ media_type: application
17
+ sub_type: json
18
+ extensions:
19
+ - json
20
+ encoding: 8bit
21
+ system: !!null
22
+ registered: true
23
+ url:
24
+ - IANA
25
+ - RFC4627
26
+ obsolete: !!null
27
+ docs: !!null
28
+ Authorization:
29
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="azaghtNIsOBhNmSyjSthYt50x4xUrbSGo2xUIpReg4",
30
+ oauth_signature="jFb7tnpZAd61fMfWHfrLr%2BDoNqM%3D", oauth_signature_method="HMAC-SHA1",
31
+ oauth_timestamp="1337858249", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
32
+ oauth_version="1.0"
33
+ response:
34
+ status:
35
+ code: 200
36
+ message: OK
37
+ headers:
38
+ Server:
39
+ - nginx
40
+ Date:
41
+ - Thu, 24 May 2012 11:17:30 GMT
42
+ Content-Type:
43
+ - application/json; charset=utf-8
44
+ Transfer-Encoding:
45
+ - chunked
46
+ Connection:
47
+ - keep-alive
48
+ Vary:
49
+ - Accept-Encoding
50
+ Status:
51
+ - 200 OK
52
+ Location:
53
+ - /tables/4755
54
+ Etag:
55
+ - ! '"e4437953658da404f55c1280dece2467"'
56
+ Cache-Control:
57
+ - max-age=0, private, must-revalidate
58
+ X-Ua-Compatible:
59
+ - IE=Edge,chrome=1
60
+ Set-Cookie:
61
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMDQxMzU5OGJlYmRhMDkzMThkOWEzYTBkYjk5OWJmZjdJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--decdb7b6e31f4a9de0f7a40c4f3925873ac1d096;
62
+ domain=.cartodb.com; path=/; HttpOnly
63
+ X-Runtime:
64
+ - '0.740933'
65
+ Content-Encoding:
66
+ - gzip
67
+ body:
68
+ encoding: ASCII-8BIT
69
+ string: ! '{"id":4755,"name":"moto_gp_circuit","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
70
+ http_version: '1.1'
71
+ recorded_at: Thu, 24 May 2012 11:17:30 GMT
72
+ - request:
73
+ method: get
74
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
75
+ body:
76
+ encoding: US-ASCII
77
+ string: ''
78
+ headers:
79
+ Accept:
80
+ - *70258896262640
81
+ Authorization:
82
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="J0pSnVudbtMjHj0vzq8G6ww8tSF518xx1fDXB2MS4",
83
+ oauth_signature="4WyLdBQrD6LN0IOwlPJUFYFMBe4%3D", oauth_signature_method="HMAC-SHA1",
84
+ oauth_timestamp="1337858250", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
85
+ oauth_version="1.0"
86
+ response:
87
+ status:
88
+ code: 200
89
+ message: OK
90
+ headers:
91
+ Server:
92
+ - nginx
93
+ Date:
94
+ - Thu, 24 May 2012 11:17:31 GMT
95
+ Content-Type:
96
+ - application/json; charset=utf-8
97
+ Transfer-Encoding:
98
+ - chunked
99
+ Connection:
100
+ - keep-alive
101
+ Vary:
102
+ - Accept-Encoding
103
+ Status:
104
+ - 200 OK
105
+ Etag:
106
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
107
+ Cache-Control:
108
+ - max-age=0, private, must-revalidate
109
+ X-Ua-Compatible:
110
+ - IE=Edge,chrome=1
111
+ Set-Cookie:
112
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTMyYmNiMmIyYWIyMTI1ODJmODBiY2ViZjhjYWEyNWRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--d2ae5d68c72706cbeb58490d1fa8d1f84761abac;
113
+ domain=.cartodb.com; path=/; HttpOnly
114
+ X-Runtime:
115
+ - '0.016441'
116
+ Content-Encoding:
117
+ - gzip
118
+ body:
119
+ encoding: ASCII-8BIT
120
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
121
+ http_version: '1.1'
122
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
123
+ - request:
124
+ method: get
125
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
126
+ body:
127
+ encoding: US-ASCII
128
+ string: ''
129
+ headers:
130
+ Accept:
131
+ - *70258896262640
132
+ Authorization:
133
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="p6yBcAyjywZKikJvBqhmaT85MlvoxNd4CeB2GiA5ZX8",
134
+ oauth_signature="w1lY8rkyDD%2F%2BcVNKSFwmxbf5NSc%3D", oauth_signature_method="HMAC-SHA1",
135
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
136
+ oauth_version="1.0"
137
+ response:
138
+ status:
139
+ code: 200
140
+ message: OK
141
+ headers:
142
+ Server:
143
+ - nginx
144
+ Date:
145
+ - Thu, 24 May 2012 11:17:31 GMT
146
+ Content-Type:
147
+ - application/json; charset=utf-8
148
+ Transfer-Encoding:
149
+ - chunked
150
+ Connection:
151
+ - keep-alive
152
+ Vary:
153
+ - Accept-Encoding
154
+ Status:
155
+ - 200 OK
156
+ Etag:
157
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
158
+ Cache-Control:
159
+ - max-age=0, private, must-revalidate
160
+ X-Ua-Compatible:
161
+ - IE=Edge,chrome=1
162
+ Set-Cookie:
163
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNzU2NTU1MGZkOTdjNWEzYmRmYzZkYTMyNmNiMTZlMWZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--56bbd575369ae82364b8c70d2105d566f8e95067;
164
+ domain=.cartodb.com; path=/; HttpOnly
165
+ X-Runtime:
166
+ - '0.015716'
167
+ Content-Encoding:
168
+ - gzip
169
+ body:
170
+ encoding: ASCII-8BIT
171
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
172
+ http_version: '1.1'
173
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
174
+ - request:
175
+ method: get
176
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
177
+ body:
178
+ encoding: US-ASCII
179
+ string: ''
180
+ headers:
181
+ Accept:
182
+ - *70258896262640
183
+ Authorization:
184
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="DYPhPJFwf6ZyOEZ5MUmp1Es68UgnJKXLeT4UiBAJKuc",
185
+ oauth_signature="GX52J3Eg6Be9VzURMp0UicXHkwI%3D", oauth_signature_method="HMAC-SHA1",
186
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
187
+ oauth_version="1.0"
188
+ response:
189
+ status:
190
+ code: 200
191
+ message: OK
192
+ headers:
193
+ Server:
194
+ - nginx
195
+ Date:
196
+ - Thu, 24 May 2012 11:17:31 GMT
197
+ Content-Type:
198
+ - application/json; charset=utf-8
199
+ Transfer-Encoding:
200
+ - chunked
201
+ Connection:
202
+ - keep-alive
203
+ Vary:
204
+ - Accept-Encoding
205
+ Status:
206
+ - 200 OK
207
+ Etag:
208
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
209
+ Cache-Control:
210
+ - max-age=0, private, must-revalidate
211
+ X-Ua-Compatible:
212
+ - IE=Edge,chrome=1
213
+ Set-Cookie:
214
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNjVkNGY2Y2E5NDVlN2VmOGY5YWM3ZmU5YWQ2NzE4Y2JJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--8835727b6cc52c72dff97f2ac4679f873bb91d1b;
215
+ domain=.cartodb.com; path=/; HttpOnly
216
+ X-Runtime:
217
+ - '0.010049'
218
+ Content-Encoding:
219
+ - gzip
220
+ body:
221
+ encoding: ASCII-8BIT
222
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
223
+ http_version: '1.1'
224
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
225
+ - request:
226
+ method: get
227
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
228
+ body:
229
+ encoding: US-ASCII
230
+ string: ''
231
+ headers:
232
+ Accept:
233
+ - *70258896262640
234
+ Authorization:
235
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="6Sy12RxZHmj3vbohHhlJsXDnJihWkTAMViZPVLlA",
236
+ oauth_signature="T9ZqwipmenHeelKGS3NwV1eEeQU%3D", oauth_signature_method="HMAC-SHA1",
237
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
238
+ oauth_version="1.0"
239
+ response:
240
+ status:
241
+ code: 200
242
+ message: OK
243
+ headers:
244
+ Server:
245
+ - nginx
246
+ Date:
247
+ - Thu, 24 May 2012 11:17:31 GMT
248
+ Content-Type:
249
+ - application/json; charset=utf-8
250
+ Transfer-Encoding:
251
+ - chunked
252
+ Connection:
253
+ - keep-alive
254
+ Vary:
255
+ - Accept-Encoding
256
+ Status:
257
+ - 200 OK
258
+ Etag:
259
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
260
+ Cache-Control:
261
+ - max-age=0, private, must-revalidate
262
+ X-Ua-Compatible:
263
+ - IE=Edge,chrome=1
264
+ Set-Cookie:
265
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYmY2NDQ0MDc2MDc2NzVkYjVjZDY1NmEwNDMxZDIxNWZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--66bf47f0c5fe4a35dff739a0ff09882a0eec04f8;
266
+ domain=.cartodb.com; path=/; HttpOnly
267
+ X-Runtime:
268
+ - '0.016206'
269
+ Content-Encoding:
270
+ - gzip
271
+ body:
272
+ encoding: ASCII-8BIT
273
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
274
+ http_version: '1.1'
275
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
276
+ - request:
277
+ method: get
278
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
279
+ body:
280
+ encoding: US-ASCII
281
+ string: ''
282
+ headers:
283
+ Accept:
284
+ - *70258896262640
285
+ Authorization:
286
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="DVKK0xJPiBwYuRos0TVc5LuaMy56Y9lX9nzdy28ACs",
287
+ oauth_signature="c4m7gU0QOn4iwrxoIXfhD%2BLtPNM%3D", oauth_signature_method="HMAC-SHA1",
288
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
289
+ oauth_version="1.0"
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ Server:
296
+ - nginx
297
+ Date:
298
+ - Thu, 24 May 2012 11:17:31 GMT
299
+ Content-Type:
300
+ - application/json; charset=utf-8
301
+ Transfer-Encoding:
302
+ - chunked
303
+ Connection:
304
+ - keep-alive
305
+ Vary:
306
+ - Accept-Encoding
307
+ Status:
308
+ - 200 OK
309
+ Etag:
310
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
311
+ Cache-Control:
312
+ - max-age=0, private, must-revalidate
313
+ X-Ua-Compatible:
314
+ - IE=Edge,chrome=1
315
+ Set-Cookie:
316
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNmE4ZWJhMDg2OTg2ZDgxYWRkNzk5YTQ0ZmQxMGY0YmRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--8152ace56cd44060d03c118d9380dde52d60ce5d;
317
+ domain=.cartodb.com; path=/; HttpOnly
318
+ X-Runtime:
319
+ - '0.016092'
320
+ Content-Encoding:
321
+ - gzip
322
+ body:
323
+ encoding: ASCII-8BIT
324
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
325
+ http_version: '1.1'
326
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
327
+ - request:
328
+ method: get
329
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
330
+ body:
331
+ encoding: US-ASCII
332
+ string: ''
333
+ headers:
334
+ Accept:
335
+ - *70258896262640
336
+ Authorization:
337
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="LprrY0tS7xM7YgrTjCUm0e1RS0nzrdoX36CxcV3ucE",
338
+ oauth_signature="RwfHVRqyOzPXSDdXFHJ7yA2d%2B8A%3D", oauth_signature_method="HMAC-SHA1",
339
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
340
+ oauth_version="1.0"
341
+ response:
342
+ status:
343
+ code: 200
344
+ message: OK
345
+ headers:
346
+ Server:
347
+ - nginx
348
+ Date:
349
+ - Thu, 24 May 2012 11:17:31 GMT
350
+ Content-Type:
351
+ - application/json; charset=utf-8
352
+ Transfer-Encoding:
353
+ - chunked
354
+ Connection:
355
+ - keep-alive
356
+ Vary:
357
+ - Accept-Encoding
358
+ Status:
359
+ - 200 OK
360
+ Etag:
361
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
362
+ Cache-Control:
363
+ - max-age=0, private, must-revalidate
364
+ X-Ua-Compatible:
365
+ - IE=Edge,chrome=1
366
+ Set-Cookie:
367
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlY2U3NGVlZDk4ODE5NmViZTQ3NTY4ZjY1OWYzMzQ3YzBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--9a5548ddf8d5f8fd2736c5f053aa40c2cedd2ca2;
368
+ domain=.cartodb.com; path=/; HttpOnly
369
+ X-Runtime:
370
+ - '0.015317'
371
+ Content-Encoding:
372
+ - gzip
373
+ body:
374
+ encoding: ASCII-8BIT
375
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
376
+ http_version: '1.1'
377
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
378
+ - request:
379
+ method: get
380
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
381
+ body:
382
+ encoding: US-ASCII
383
+ string: ''
384
+ headers:
385
+ Accept:
386
+ - *70258896262640
387
+ Authorization:
388
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="AYCqNjxPwMMSSu7NV6NMU3NHWo6HO46P19F1riPZLHI",
389
+ oauth_signature="1imWF66QPOg0rtn3k6sDjl%2BaTCA%3D", oauth_signature_method="HMAC-SHA1",
390
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
391
+ oauth_version="1.0"
392
+ response:
393
+ status:
394
+ code: 200
395
+ message: OK
396
+ headers:
397
+ Server:
398
+ - nginx
399
+ Date:
400
+ - Thu, 24 May 2012 11:17:31 GMT
401
+ Content-Type:
402
+ - application/json; charset=utf-8
403
+ Transfer-Encoding:
404
+ - chunked
405
+ Connection:
406
+ - keep-alive
407
+ Vary:
408
+ - Accept-Encoding
409
+ Status:
410
+ - 200 OK
411
+ Etag:
412
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
413
+ Cache-Control:
414
+ - max-age=0, private, must-revalidate
415
+ X-Ua-Compatible:
416
+ - IE=Edge,chrome=1
417
+ Set-Cookie:
418
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTNmOGI2OTAyMTExNDRlMzI5N2U1ZWZiYzk5NTg0NDhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--fb791a4acb2fe54c78b0792892fdef033996ff87;
419
+ domain=.cartodb.com; path=/; HttpOnly
420
+ X-Runtime:
421
+ - '0.015921'
422
+ Content-Encoding:
423
+ - gzip
424
+ body:
425
+ encoding: ASCII-8BIT
426
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
427
+ http_version: '1.1'
428
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
429
+ - request:
430
+ method: get
431
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
432
+ body:
433
+ encoding: US-ASCII
434
+ string: ''
435
+ headers:
436
+ Accept:
437
+ - *70258896262640
438
+ Authorization:
439
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Hfqm9TlfJGpcThKiEbyqnb2DXirQLgbwjbHsTggGek",
440
+ oauth_signature="t0W3w37qdpTXTAEDkkqGJEEIhTY%3D", oauth_signature_method="HMAC-SHA1",
441
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
442
+ oauth_version="1.0"
443
+ response:
444
+ status:
445
+ code: 200
446
+ message: OK
447
+ headers:
448
+ Server:
449
+ - nginx
450
+ Date:
451
+ - Thu, 24 May 2012 11:17:31 GMT
452
+ Content-Type:
453
+ - application/json; charset=utf-8
454
+ Transfer-Encoding:
455
+ - chunked
456
+ Connection:
457
+ - keep-alive
458
+ Vary:
459
+ - Accept-Encoding
460
+ Status:
461
+ - 200 OK
462
+ Etag:
463
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
464
+ Cache-Control:
465
+ - max-age=0, private, must-revalidate
466
+ X-Ua-Compatible:
467
+ - IE=Edge,chrome=1
468
+ Set-Cookie:
469
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTkwYzVhNzUyNTY5MGU5YzQ0N2MzOWUyMDc3ZjJhMzZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--eafbf224ad6f1c0abf0d62d8fb313bbcfddb8152;
470
+ domain=.cartodb.com; path=/; HttpOnly
471
+ X-Runtime:
472
+ - '0.015504'
473
+ Content-Encoding:
474
+ - gzip
475
+ body:
476
+ encoding: ASCII-8BIT
477
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
478
+ http_version: '1.1'
479
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
480
+ - request:
481
+ method: get
482
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
483
+ body:
484
+ encoding: US-ASCII
485
+ string: ''
486
+ headers:
487
+ Accept:
488
+ - *70258896262640
489
+ Authorization:
490
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="IHLPzPn0kyNe8ygq5I04GBFydrumGuHeWQd4HdLQg",
491
+ oauth_signature="S%2FRf6%2FKyzypYLnyWSfWk3y9xoZA%3D", oauth_signature_method="HMAC-SHA1",
492
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
493
+ oauth_version="1.0"
494
+ response:
495
+ status:
496
+ code: 200
497
+ message: OK
498
+ headers:
499
+ Server:
500
+ - nginx
501
+ Date:
502
+ - Thu, 24 May 2012 11:17:31 GMT
503
+ Content-Type:
504
+ - application/json; charset=utf-8
505
+ Transfer-Encoding:
506
+ - chunked
507
+ Connection:
508
+ - keep-alive
509
+ Vary:
510
+ - Accept-Encoding
511
+ Status:
512
+ - 200 OK
513
+ Etag:
514
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
515
+ Cache-Control:
516
+ - max-age=0, private, must-revalidate
517
+ X-Ua-Compatible:
518
+ - IE=Edge,chrome=1
519
+ Set-Cookie:
520
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTY0NDc4MWEwZGEwNTg5YTczZGVlMDQ1NjgyMjJkZTZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--133362eabf6855658c657d6692f68cedc8f4042a;
521
+ domain=.cartodb.com; path=/; HttpOnly
522
+ X-Runtime:
523
+ - '0.015319'
524
+ Content-Encoding:
525
+ - gzip
526
+ body:
527
+ encoding: ASCII-8BIT
528
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
529
+ http_version: '1.1'
530
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
531
+ - request:
532
+ method: get
533
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
534
+ body:
535
+ encoding: US-ASCII
536
+ string: ''
537
+ headers:
538
+ Accept:
539
+ - *70258896262640
540
+ Authorization:
541
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="KWtxzzERv9rUIaVvka47iL3FbLUPMIPYyr0pepiq9E",
542
+ oauth_signature="hluLPz%2B2hztzEzqzSvrNS7c3%2Bos%3D", oauth_signature_method="HMAC-SHA1",
543
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
544
+ oauth_version="1.0"
545
+ response:
546
+ status:
547
+ code: 200
548
+ message: OK
549
+ headers:
550
+ Server:
551
+ - nginx
552
+ Date:
553
+ - Thu, 24 May 2012 11:17:31 GMT
554
+ Content-Type:
555
+ - application/json; charset=utf-8
556
+ Transfer-Encoding:
557
+ - chunked
558
+ Connection:
559
+ - keep-alive
560
+ Vary:
561
+ - Accept-Encoding
562
+ Status:
563
+ - 200 OK
564
+ Etag:
565
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
566
+ Cache-Control:
567
+ - max-age=0, private, must-revalidate
568
+ X-Ua-Compatible:
569
+ - IE=Edge,chrome=1
570
+ Set-Cookie:
571
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYzljNmYzNDhhMzIwNTU4ZTZkMWEwYTE1ODM3ZjJjYWZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--99ebf1e76a292a06190dfa0738c79d6d81c843ba;
572
+ domain=.cartodb.com; path=/; HttpOnly
573
+ X-Runtime:
574
+ - '0.015346'
575
+ Content-Encoding:
576
+ - gzip
577
+ body:
578
+ encoding: ASCII-8BIT
579
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
580
+ http_version: '1.1'
581
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
582
+ - request:
583
+ method: get
584
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
585
+ body:
586
+ encoding: US-ASCII
587
+ string: ''
588
+ headers:
589
+ Accept:
590
+ - *70258896262640
591
+ Authorization:
592
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="TRYtER6aYtnkJtSKIAG8yEBfTOvChP2jG0soTXRP8M8",
593
+ oauth_signature="KbGYeWjLJUzKT%2FqrLMktKJ%2Btqi4%3D", oauth_signature_method="HMAC-SHA1",
594
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
595
+ oauth_version="1.0"
596
+ response:
597
+ status:
598
+ code: 200
599
+ message: OK
600
+ headers:
601
+ Server:
602
+ - nginx
603
+ Date:
604
+ - Thu, 24 May 2012 11:17:31 GMT
605
+ Content-Type:
606
+ - application/json; charset=utf-8
607
+ Transfer-Encoding:
608
+ - chunked
609
+ Connection:
610
+ - keep-alive
611
+ Vary:
612
+ - Accept-Encoding
613
+ Status:
614
+ - 200 OK
615
+ Etag:
616
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
617
+ Cache-Control:
618
+ - max-age=0, private, must-revalidate
619
+ X-Ua-Compatible:
620
+ - IE=Edge,chrome=1
621
+ Set-Cookie:
622
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlOTRhMjYwZDkzNzk2MjI2YWM4MDg4MTg3NWFhM2M1Y2JJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--9e974e7f18ed1fda37f57238009d33a6fe6311e6;
623
+ domain=.cartodb.com; path=/; HttpOnly
624
+ X-Runtime:
625
+ - '0.015252'
626
+ Content-Encoding:
627
+ - gzip
628
+ body:
629
+ encoding: ASCII-8BIT
630
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
631
+ http_version: '1.1'
632
+ recorded_at: Thu, 24 May 2012 11:17:31 GMT
633
+ - request:
634
+ method: get
635
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
636
+ body:
637
+ encoding: US-ASCII
638
+ string: ''
639
+ headers:
640
+ Accept:
641
+ - *70258896262640
642
+ Authorization:
643
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="tciO3w7Ju990BXE1NZoZFjIeutkPjy4ERjRNU6G0lTM",
644
+ oauth_signature="R4xqzRS0NH5nAvR8kW0Je9Dryr4%3D", oauth_signature_method="HMAC-SHA1",
645
+ oauth_timestamp="1337858251", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
646
+ oauth_version="1.0"
647
+ response:
648
+ status:
649
+ code: 200
650
+ message: OK
651
+ headers:
652
+ Server:
653
+ - nginx
654
+ Date:
655
+ - Thu, 24 May 2012 11:17:31 GMT
656
+ Content-Type:
657
+ - application/json; charset=utf-8
658
+ Transfer-Encoding:
659
+ - chunked
660
+ Connection:
661
+ - keep-alive
662
+ Vary:
663
+ - Accept-Encoding
664
+ Status:
665
+ - 200 OK
666
+ Etag:
667
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
668
+ Cache-Control:
669
+ - max-age=0, private, must-revalidate
670
+ X-Ua-Compatible:
671
+ - IE=Edge,chrome=1
672
+ Set-Cookie:
673
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNmFlOGUyM2U3OTlmMjc2NTUyNzA1NWMyYmQ1YjFkYTdJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--fcccc07251fb707347ca79ba8315c873f62cebac;
674
+ domain=.cartodb.com; path=/; HttpOnly
675
+ X-Runtime:
676
+ - '0.016020'
677
+ Content-Encoding:
678
+ - gzip
679
+ body:
680
+ encoding: ASCII-8BIT
681
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
682
+ http_version: '1.1'
683
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
684
+ - request:
685
+ method: get
686
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
687
+ body:
688
+ encoding: US-ASCII
689
+ string: ''
690
+ headers:
691
+ Accept:
692
+ - *70258896262640
693
+ Authorization:
694
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="orzDBerXMArpJl2AKkcyGAEFqPMrYZGiLHbGxPyHmeM",
695
+ oauth_signature="NJOtfSwTVoAPfetOMg9q2ELPIas%3D", oauth_signature_method="HMAC-SHA1",
696
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
697
+ oauth_version="1.0"
698
+ response:
699
+ status:
700
+ code: 200
701
+ message: OK
702
+ headers:
703
+ Server:
704
+ - nginx
705
+ Date:
706
+ - Thu, 24 May 2012 11:17:32 GMT
707
+ Content-Type:
708
+ - application/json; charset=utf-8
709
+ Transfer-Encoding:
710
+ - chunked
711
+ Connection:
712
+ - keep-alive
713
+ Vary:
714
+ - Accept-Encoding
715
+ Status:
716
+ - 200 OK
717
+ Etag:
718
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
719
+ Cache-Control:
720
+ - max-age=0, private, must-revalidate
721
+ X-Ua-Compatible:
722
+ - IE=Edge,chrome=1
723
+ Set-Cookie:
724
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTBlZGM2NGQwOWU3NmQ3OWRhNWFiYTJjMTRmNzNjMjJJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--e5d2b03ee977869b0baac101322c8b8b869e232b;
725
+ domain=.cartodb.com; path=/; HttpOnly
726
+ X-Runtime:
727
+ - '0.015375'
728
+ Content-Encoding:
729
+ - gzip
730
+ body:
731
+ encoding: ASCII-8BIT
732
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
733
+ http_version: '1.1'
734
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
735
+ - request:
736
+ method: get
737
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
738
+ body:
739
+ encoding: US-ASCII
740
+ string: ''
741
+ headers:
742
+ Accept:
743
+ - *70258896262640
744
+ Authorization:
745
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="q8JwBozlgMvWbpr1be2jLLinkQJp1iRx9q258YZl5c",
746
+ oauth_signature="%2Fa21aKS6NXglJUp62a9WCAtBrOM%3D", oauth_signature_method="HMAC-SHA1",
747
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
748
+ oauth_version="1.0"
749
+ response:
750
+ status:
751
+ code: 200
752
+ message: OK
753
+ headers:
754
+ Server:
755
+ - nginx
756
+ Date:
757
+ - Thu, 24 May 2012 11:17:32 GMT
758
+ Content-Type:
759
+ - application/json; charset=utf-8
760
+ Transfer-Encoding:
761
+ - chunked
762
+ Connection:
763
+ - keep-alive
764
+ Vary:
765
+ - Accept-Encoding
766
+ Status:
767
+ - 200 OK
768
+ Etag:
769
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
770
+ Cache-Control:
771
+ - max-age=0, private, must-revalidate
772
+ X-Ua-Compatible:
773
+ - IE=Edge,chrome=1
774
+ Set-Cookie:
775
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNWRlNzY4M2QyZGI2NGJhNDQxMmIwNjYxMjFiMTQwYzRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--53a16a8e6b681f847f5692269312cc1d5c4ff42c;
776
+ domain=.cartodb.com; path=/; HttpOnly
777
+ X-Runtime:
778
+ - '0.015526'
779
+ Content-Encoding:
780
+ - gzip
781
+ body:
782
+ encoding: ASCII-8BIT
783
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
784
+ http_version: '1.1'
785
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
786
+ - request:
787
+ method: get
788
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
789
+ body:
790
+ encoding: US-ASCII
791
+ string: ''
792
+ headers:
793
+ Accept:
794
+ - *70258896262640
795
+ Authorization:
796
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="4X0yXc04ldzkQs885zPky17ttdcBYOLgUztsJUldmUU",
797
+ oauth_signature="wdT5gO2nJnO9HX7Lu7w7cLnRfU0%3D", oauth_signature_method="HMAC-SHA1",
798
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
799
+ oauth_version="1.0"
800
+ response:
801
+ status:
802
+ code: 200
803
+ message: OK
804
+ headers:
805
+ Server:
806
+ - nginx
807
+ Date:
808
+ - Thu, 24 May 2012 11:17:32 GMT
809
+ Content-Type:
810
+ - application/json; charset=utf-8
811
+ Transfer-Encoding:
812
+ - chunked
813
+ Connection:
814
+ - keep-alive
815
+ Vary:
816
+ - Accept-Encoding
817
+ Status:
818
+ - 200 OK
819
+ Etag:
820
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
821
+ Cache-Control:
822
+ - max-age=0, private, must-revalidate
823
+ X-Ua-Compatible:
824
+ - IE=Edge,chrome=1
825
+ Set-Cookie:
826
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNjZjOWNmZDAwYmJhZTJkYWYxN2IxYmUxMzgzOWY3YTdJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--f36d31e8c1f6f848e4de5270edfc56e0c7f8d9e1;
827
+ domain=.cartodb.com; path=/; HttpOnly
828
+ X-Runtime:
829
+ - '0.015233'
830
+ Content-Encoding:
831
+ - gzip
832
+ body:
833
+ encoding: ASCII-8BIT
834
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
835
+ http_version: '1.1'
836
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
837
+ - request:
838
+ method: get
839
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
840
+ body:
841
+ encoding: US-ASCII
842
+ string: ''
843
+ headers:
844
+ Accept:
845
+ - *70258896262640
846
+ Authorization:
847
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="t4FiiG6L5spk9QAxceZLLD2pZX65igCSSJabjKCGI",
848
+ oauth_signature="wAW3hV9pQgsG%2BEfGOfBVJfrWOtY%3D", oauth_signature_method="HMAC-SHA1",
849
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
850
+ oauth_version="1.0"
851
+ response:
852
+ status:
853
+ code: 200
854
+ message: OK
855
+ headers:
856
+ Server:
857
+ - nginx
858
+ Date:
859
+ - Thu, 24 May 2012 11:17:32 GMT
860
+ Content-Type:
861
+ - application/json; charset=utf-8
862
+ Transfer-Encoding:
863
+ - chunked
864
+ Connection:
865
+ - keep-alive
866
+ Vary:
867
+ - Accept-Encoding
868
+ Status:
869
+ - 200 OK
870
+ Etag:
871
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
872
+ Cache-Control:
873
+ - max-age=0, private, must-revalidate
874
+ X-Ua-Compatible:
875
+ - IE=Edge,chrome=1
876
+ Set-Cookie:
877
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYzMyMTQyMTYxZTY4ZGRlZDlkOTBkYWIyMDA3OGM2NzlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--3f1e9db836b030986eb47a8b1dc8deb2c9ebe9ce;
878
+ domain=.cartodb.com; path=/; HttpOnly
879
+ X-Runtime:
880
+ - '0.015357'
881
+ Content-Encoding:
882
+ - gzip
883
+ body:
884
+ encoding: ASCII-8BIT
885
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
886
+ http_version: '1.1'
887
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
888
+ - request:
889
+ method: get
890
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
891
+ body:
892
+ encoding: US-ASCII
893
+ string: ''
894
+ headers:
895
+ Accept:
896
+ - *70258896262640
897
+ Authorization:
898
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="pMnwqNKnEuZYm7f8mIET2PS2cui96DA0tkbs225AM",
899
+ oauth_signature="ET7PlWOsv8IWWeCfPB17yb4lU8Y%3D", oauth_signature_method="HMAC-SHA1",
900
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
901
+ oauth_version="1.0"
902
+ response:
903
+ status:
904
+ code: 200
905
+ message: OK
906
+ headers:
907
+ Server:
908
+ - nginx
909
+ Date:
910
+ - Thu, 24 May 2012 11:17:32 GMT
911
+ Content-Type:
912
+ - application/json; charset=utf-8
913
+ Transfer-Encoding:
914
+ - chunked
915
+ Connection:
916
+ - keep-alive
917
+ Vary:
918
+ - Accept-Encoding
919
+ Status:
920
+ - 200 OK
921
+ Etag:
922
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
923
+ Cache-Control:
924
+ - max-age=0, private, must-revalidate
925
+ X-Ua-Compatible:
926
+ - IE=Edge,chrome=1
927
+ Set-Cookie:
928
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlY2FiNTk5MmVjNDE2MzkzNTBmYWM0ZjAyMDk5MWYwMjdJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--6e668b85a706ca685ce27e0c2509e0a64abec6d7;
929
+ domain=.cartodb.com; path=/; HttpOnly
930
+ X-Runtime:
931
+ - '0.015179'
932
+ Content-Encoding:
933
+ - gzip
934
+ body:
935
+ encoding: ASCII-8BIT
936
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
937
+ http_version: '1.1'
938
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
939
+ - request:
940
+ method: get
941
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
942
+ body:
943
+ encoding: US-ASCII
944
+ string: ''
945
+ headers:
946
+ Accept:
947
+ - *70258896262640
948
+ Authorization:
949
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="MKWyexUq6cjPzqqLzBPLS66YVilDf3oAjvUBYgqQJEo",
950
+ oauth_signature="4Gkc%2FF6Khuiw1BqIwpKqpNEssPc%3D", oauth_signature_method="HMAC-SHA1",
951
+ oauth_timestamp="1337858252", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
952
+ oauth_version="1.0"
953
+ response:
954
+ status:
955
+ code: 200
956
+ message: OK
957
+ headers:
958
+ Server:
959
+ - nginx
960
+ Date:
961
+ - Thu, 24 May 2012 11:17:32 GMT
962
+ Content-Type:
963
+ - application/json; charset=utf-8
964
+ Transfer-Encoding:
965
+ - chunked
966
+ Connection:
967
+ - keep-alive
968
+ Vary:
969
+ - Accept-Encoding
970
+ Status:
971
+ - 200 OK
972
+ Etag:
973
+ - ! '"9d030301f73cf10aca0b0a32d1ed6530"'
974
+ Cache-Control:
975
+ - max-age=0, private, must-revalidate
976
+ X-Ua-Compatible:
977
+ - IE=Edge,chrome=1
978
+ Set-Cookie:
979
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlN2Y4ZmU5ODAzYTE0YTRmZmFiYWY2YTE2ZjUxYjAwNmNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--cb91d684f1f96588638786b1244fd4fc9a40594a;
980
+ domain=.cartodb.com; path=/; HttpOnly
981
+ X-Runtime:
982
+ - '0.015311'
983
+ Content-Encoding:
984
+ - gzip
985
+ body:
986
+ encoding: ASCII-8BIT
987
+ string: ! '{"id":4755,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
988
+ http_version: '1.1'
989
+ recorded_at: Thu, 24 May 2012 11:17:32 GMT
990
+ recorded_with: VCR 2.1.1