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,1299 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables?
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - &70259176453560 !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="h13ZvTwy6xlytnDYD3ROIzU0WYr1dSuabCWMGfx9XQ",
30
+ oauth_signature="XyfzbWmLOw6%2B4Gpx7Fn7KUfSvfU%3D", oauth_signature_method="HMAC-SHA1",
31
+ oauth_timestamp="1337784748", 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
+ - Wed, 23 May 2012 14:52:28 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
+ Etag:
53
+ - ! '"cb8fbe19039d409b51b629feb67ef3cc"'
54
+ Cache-Control:
55
+ - max-age=0, private, must-revalidate
56
+ X-Ua-Compatible:
57
+ - IE=Edge,chrome=1
58
+ Set-Cookie:
59
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYzUxNGE4Y2I2MTVjNGJkZWRlZTliOGZkMzgzN2NiYzRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--8b9c4dca087cd8fea7fa037218588805ebd51914;
60
+ domain=.cartodb.com; path=/; HttpOnly
61
+ X-Runtime:
62
+ - '0.012916'
63
+ Content-Encoding:
64
+ - gzip
65
+ body:
66
+ encoding: ASCII-8BIT
67
+ string: ! '{"total_entries":1,"tables":[{"id":4648,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]],"updated_at":"2012-05-23T16:52:24+02:00","rows_counted":0}]}'
68
+ http_version: '1.1'
69
+ recorded_at: Wed, 23 May 2012 14:52:28 GMT
70
+ - request:
71
+ method: delete
72
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
73
+ body:
74
+ encoding: US-ASCII
75
+ string: ''
76
+ headers:
77
+ Accept:
78
+ - *70259176453560
79
+ Authorization:
80
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="IgZDJgVyZivM6dx6vfRxckYI4EvbpnRvFtqkbxSs",
81
+ oauth_signature="d7TQBCnzNqs7MTGBWpjdq14SiQs%3D", oauth_signature_method="HMAC-SHA1",
82
+ oauth_timestamp="1337784748", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
83
+ oauth_version="1.0"
84
+ response:
85
+ status:
86
+ code: 200
87
+ message: OK
88
+ headers:
89
+ Server:
90
+ - nginx
91
+ Date:
92
+ - Wed, 23 May 2012 14:52:29 GMT
93
+ Content-Type:
94
+ - application/json; charset=utf-8
95
+ Transfer-Encoding:
96
+ - chunked
97
+ Connection:
98
+ - keep-alive
99
+ Vary:
100
+ - Accept-Encoding
101
+ Status:
102
+ - 200 OK
103
+ Cache-Control:
104
+ - no-cache
105
+ X-Ua-Compatible:
106
+ - IE=Edge,chrome=1
107
+ Set-Cookie:
108
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYjkxNDAzMTNlMTkxYzA4YmM2NmVlMmE5OGE4YTU0ZjFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--a5f886bbb3c954aeb7cf301d0ee7593050464494;
109
+ domain=.cartodb.com; path=/; HttpOnly
110
+ X-Runtime:
111
+ - '0.446740'
112
+ Content-Encoding:
113
+ - gzip
114
+ body:
115
+ encoding: ASCII-8BIT
116
+ string: ! ' '
117
+ http_version: '1.1'
118
+ recorded_at: Wed, 23 May 2012 14:52:29 GMT
119
+ - request:
120
+ method: get
121
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
122
+ body:
123
+ encoding: US-ASCII
124
+ string: ''
125
+ headers:
126
+ Accept:
127
+ - *70259176453560
128
+ Authorization:
129
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="YC1mga3SbOYymiJkwvHfb7syE88l0RPOYQzW08oF5c",
130
+ oauth_signature="7aqdKZfiFSQS1lsEr575GJyg9Os%3D", oauth_signature_method="HMAC-SHA1",
131
+ oauth_timestamp="1337784749", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
132
+ oauth_version="1.0"
133
+ response:
134
+ status:
135
+ code: 404
136
+ message: Not Found
137
+ headers:
138
+ Server:
139
+ - nginx
140
+ Date:
141
+ - Wed, 23 May 2012 14:52:29 GMT
142
+ Content-Type:
143
+ - application/json; charset=utf-8
144
+ Transfer-Encoding:
145
+ - chunked
146
+ Connection:
147
+ - keep-alive
148
+ Vary:
149
+ - Accept-Encoding
150
+ Status:
151
+ - 404 Not Found
152
+ Cache-Control:
153
+ - no-cache
154
+ X-Ua-Compatible:
155
+ - IE=Edge,chrome=1
156
+ Set-Cookie:
157
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMjBkNmU3ZWNmZTkxM2YxZGEzYzQ2OTRiNmJjZjBjYzRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--a86399640a10562748e2fb3f8a89b92b6aa60abc;
158
+ domain=.cartodb.com; path=/; HttpOnly
159
+ X-Runtime:
160
+ - '0.009385'
161
+ Content-Encoding:
162
+ - gzip
163
+ body:
164
+ encoding: ASCII-8BIT
165
+ string: ! ' '
166
+ http_version: '1.1'
167
+ recorded_at: Wed, 23 May 2012 14:52:29 GMT
168
+ - request:
169
+ method: get
170
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
171
+ body:
172
+ encoding: US-ASCII
173
+ string: ''
174
+ headers:
175
+ Accept:
176
+ - *70259176453560
177
+ Authorization:
178
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="SKbjxWqHyaL8PAK8P3SlOK8oQi9zWtn1dH2tPnzuA",
179
+ oauth_signature="he3QXcdckHvPXgpioxA1t0XILOE%3D", oauth_signature_method="HMAC-SHA1",
180
+ oauth_timestamp="1337784749", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
181
+ oauth_version="1.0"
182
+ response:
183
+ status:
184
+ code: 404
185
+ message: Not Found
186
+ headers:
187
+ Server:
188
+ - nginx
189
+ Date:
190
+ - Wed, 23 May 2012 14:52:29 GMT
191
+ Content-Type:
192
+ - application/json; charset=utf-8
193
+ Transfer-Encoding:
194
+ - chunked
195
+ Connection:
196
+ - keep-alive
197
+ Vary:
198
+ - Accept-Encoding
199
+ Status:
200
+ - 404 Not Found
201
+ Cache-Control:
202
+ - no-cache
203
+ X-Ua-Compatible:
204
+ - IE=Edge,chrome=1
205
+ Set-Cookie:
206
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZGY2OWY1YTQ5MzVlNTRhNDgyNDk2ZTcxNTA3ZWRhMGZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--98eb25e438cd60e6d3db77e2573b014411a76189;
207
+ domain=.cartodb.com; path=/; HttpOnly
208
+ X-Runtime:
209
+ - '0.009312'
210
+ Content-Encoding:
211
+ - gzip
212
+ body:
213
+ encoding: ASCII-8BIT
214
+ string: ! ' '
215
+ http_version: '1.1'
216
+ recorded_at: Wed, 23 May 2012 14:52:29 GMT
217
+ - request:
218
+ method: post
219
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables
220
+ body:
221
+ encoding: US-ASCII
222
+ string: ''
223
+ headers:
224
+ Accept:
225
+ - *70259176453560
226
+ Authorization:
227
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="xVnCZSYFSjohRg5YtaRcbFQV9yjS7qLs8mWlaNyEkg",
228
+ oauth_signature="EiYjHZy%2BB1Ldrd4itoVHF1iwju0%3D", oauth_signature_method="HMAC-SHA1",
229
+ oauth_timestamp="1337784749", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
230
+ oauth_version="1.0"
231
+ response:
232
+ status:
233
+ code: 200
234
+ message: OK
235
+ headers:
236
+ Server:
237
+ - nginx
238
+ Date:
239
+ - Wed, 23 May 2012 14:52:32 GMT
240
+ Content-Type:
241
+ - application/json; charset=utf-8
242
+ Transfer-Encoding:
243
+ - chunked
244
+ Connection:
245
+ - keep-alive
246
+ Vary:
247
+ - Accept-Encoding
248
+ Status:
249
+ - 200 OK
250
+ Location:
251
+ - /tables/4649
252
+ Etag:
253
+ - ! '"dee9cda8e3f6a53d39810bc0e9e2984a"'
254
+ Cache-Control:
255
+ - max-age=0, private, must-revalidate
256
+ X-Ua-Compatible:
257
+ - IE=Edge,chrome=1
258
+ Set-Cookie:
259
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZWY2MGE1OGY3NTllYmY0YmUwNDZhODM5NGQ2OGQ1ZGZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--55652aaf7cb87e537da19068958c876476f161df;
260
+ domain=.cartodb.com; path=/; HttpOnly
261
+ X-Runtime:
262
+ - '2.093582'
263
+ Content-Encoding:
264
+ - gzip
265
+ body:
266
+ encoding: ASCII-8BIT
267
+ string: ! '{"id":4649,"name":"moto_gp_circuit","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["description","string"],["name","string"],["created_at","date"],["updated_at","date"]]}'
268
+ http_version: '1.1'
269
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
270
+ - request:
271
+ method: post
272
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
273
+ body:
274
+ encoding: US-ASCII
275
+ string: ''
276
+ headers:
277
+ Accept:
278
+ - *70259176453560
279
+ Authorization:
280
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="TM2DOyfDY25243hAITzDT6bvH1EneYl0WB0F9Byxs",
281
+ oauth_signature="AneCDGwfU80hZFR4V0JZ4BJAoxY%3D", oauth_signature_method="HMAC-SHA1",
282
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
283
+ oauth_version="1.0"
284
+ response:
285
+ status:
286
+ code: 200
287
+ message: OK
288
+ headers:
289
+ Server:
290
+ - nginx
291
+ Date:
292
+ - Wed, 23 May 2012 14:52:32 GMT
293
+ Content-Type:
294
+ - application/json; charset=utf-8
295
+ Transfer-Encoding:
296
+ - chunked
297
+ Connection:
298
+ - keep-alive
299
+ Vary:
300
+ - Accept-Encoding
301
+ Status:
302
+ - 200 OK
303
+ Etag:
304
+ - ! '"1d8ec3575e09ff60ecad35605669b22c"'
305
+ Cache-Control:
306
+ - max-age=0, private, must-revalidate
307
+ X-Ua-Compatible:
308
+ - IE=Edge,chrome=1
309
+ Set-Cookie:
310
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTg5MGI4NTY4NDQwYzkxNTJlNWY0M2NmOWM2MTY3MWNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--2941a5ed09f2164b8203e38319d3242548222993;
311
+ domain=.cartodb.com; path=/; HttpOnly
312
+ X-Runtime:
313
+ - '0.045801'
314
+ Content-Encoding:
315
+ - gzip
316
+ body:
317
+ encoding: ASCII-8BIT
318
+ string: ! '{"name":"length","type":"text","cartodb_type":"string"}'
319
+ http_version: '1.1'
320
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
321
+ - request:
322
+ method: post
323
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
324
+ body:
325
+ encoding: US-ASCII
326
+ string: ''
327
+ headers:
328
+ Accept:
329
+ - *70259176453560
330
+ Authorization:
331
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="nu5h2jXgr69CZhR31bLQNXIZ8bQ2roQCAXpI8jwIrlU",
332
+ oauth_signature="QDxKtISdN1OwOrp4FERcW%2FJsJH0%3D", oauth_signature_method="HMAC-SHA1",
333
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
334
+ oauth_version="1.0"
335
+ response:
336
+ status:
337
+ code: 200
338
+ message: OK
339
+ headers:
340
+ Server:
341
+ - nginx
342
+ Date:
343
+ - Wed, 23 May 2012 14:52:32 GMT
344
+ Content-Type:
345
+ - application/json; charset=utf-8
346
+ Transfer-Encoding:
347
+ - chunked
348
+ Connection:
349
+ - keep-alive
350
+ Vary:
351
+ - Accept-Encoding
352
+ Status:
353
+ - 200 OK
354
+ Etag:
355
+ - ! '"e82b080654b5df6f5d5f582aae439d58"'
356
+ Cache-Control:
357
+ - max-age=0, private, must-revalidate
358
+ X-Ua-Compatible:
359
+ - IE=Edge,chrome=1
360
+ Set-Cookie:
361
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMzE4ODExNTUzNWM3MWYwMjM0MzgyNGY0MzAzN2MxMjVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--57efab5e4fc7d06b224ae100cb78a6328374ba67;
362
+ domain=.cartodb.com; path=/; HttpOnly
363
+ X-Runtime:
364
+ - '0.050595'
365
+ Content-Encoding:
366
+ - gzip
367
+ body:
368
+ encoding: ASCII-8BIT
369
+ string: ! '{"name":"width","type":"text","cartodb_type":"string"}'
370
+ http_version: '1.1'
371
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
372
+ - request:
373
+ method: post
374
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
375
+ body:
376
+ encoding: US-ASCII
377
+ string: ''
378
+ headers:
379
+ Accept:
380
+ - *70259176453560
381
+ Authorization:
382
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="qIdq7sawo8QySq26oR4cCp8d69n3EjFnW9WOzP6TyFM",
383
+ oauth_signature="lpaBgaLOuKYEau1TY%2F01zprPNx8%3D", oauth_signature_method="HMAC-SHA1",
384
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
385
+ oauth_version="1.0"
386
+ response:
387
+ status:
388
+ code: 200
389
+ message: OK
390
+ headers:
391
+ Server:
392
+ - nginx
393
+ Date:
394
+ - Wed, 23 May 2012 14:52:32 GMT
395
+ Content-Type:
396
+ - application/json; charset=utf-8
397
+ Transfer-Encoding:
398
+ - chunked
399
+ Connection:
400
+ - keep-alive
401
+ Vary:
402
+ - Accept-Encoding
403
+ Status:
404
+ - 200 OK
405
+ Etag:
406
+ - ! '"72d9dc37fa77b74502b76efdaff059d5"'
407
+ Cache-Control:
408
+ - max-age=0, private, must-revalidate
409
+ X-Ua-Compatible:
410
+ - IE=Edge,chrome=1
411
+ Set-Cookie:
412
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMTIwYTEwNDMzNmUxNDAyODljOWJjNTdiODRmMTc0YzhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--1280c07a8ba0c53510a79a4c1a878edf6ca8dcbe;
413
+ domain=.cartodb.com; path=/; HttpOnly
414
+ X-Runtime:
415
+ - '0.061713'
416
+ Content-Encoding:
417
+ - gzip
418
+ body:
419
+ encoding: ASCII-8BIT
420
+ string: ! '{"name":"longest_straight","type":"text","cartodb_type":"string"}'
421
+ http_version: '1.1'
422
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
423
+ - request:
424
+ method: post
425
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
426
+ body:
427
+ encoding: US-ASCII
428
+ string: ''
429
+ headers:
430
+ Accept:
431
+ - *70259176453560
432
+ Authorization:
433
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="rFR6tDXw4mlEApGNDt4bwqgqlYlxY6U9giyJoAPvK6E",
434
+ oauth_signature="evCjz0rmHqfjNqn%2Bnj%2BUm0hkR9o%3D", oauth_signature_method="HMAC-SHA1",
435
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
436
+ oauth_version="1.0"
437
+ response:
438
+ status:
439
+ code: 200
440
+ message: OK
441
+ headers:
442
+ Server:
443
+ - nginx
444
+ Date:
445
+ - Wed, 23 May 2012 14:52:32 GMT
446
+ Content-Type:
447
+ - application/json; charset=utf-8
448
+ Transfer-Encoding:
449
+ - chunked
450
+ Connection:
451
+ - keep-alive
452
+ Vary:
453
+ - Accept-Encoding
454
+ Status:
455
+ - 200 OK
456
+ Etag:
457
+ - ! '"b602480fcc0e512dc48fc82a407d693c"'
458
+ Cache-Control:
459
+ - max-age=0, private, must-revalidate
460
+ X-Ua-Compatible:
461
+ - IE=Edge,chrome=1
462
+ Set-Cookie:
463
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZTM0NDFiODIzZjczMDRhZWQyZTkyZGE1NzgwZTc3OTBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--d7fe55a0b16aeaa82b609ea393eb29a419c399d3;
464
+ domain=.cartodb.com; path=/; HttpOnly
465
+ X-Runtime:
466
+ - '0.067963'
467
+ Content-Encoding:
468
+ - gzip
469
+ body:
470
+ encoding: ASCII-8BIT
471
+ string: ! '{"name":"left_corners","type":"numeric","cartodb_type":"number"}'
472
+ http_version: '1.1'
473
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
474
+ - request:
475
+ method: post
476
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
477
+ body:
478
+ encoding: US-ASCII
479
+ string: ''
480
+ headers:
481
+ Accept:
482
+ - *70259176453560
483
+ Authorization:
484
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="zsqTCfPxa4Tke2tLsUvpsy7kt4rBtu8QpJoQjFl9Wdc",
485
+ oauth_signature="dCyBe1ANgfVZYusjdqiXegsPDGs%3D", oauth_signature_method="HMAC-SHA1",
486
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
487
+ oauth_version="1.0"
488
+ response:
489
+ status:
490
+ code: 200
491
+ message: OK
492
+ headers:
493
+ Server:
494
+ - nginx
495
+ Date:
496
+ - Wed, 23 May 2012 14:52:32 GMT
497
+ Content-Type:
498
+ - application/json; charset=utf-8
499
+ Transfer-Encoding:
500
+ - chunked
501
+ Connection:
502
+ - keep-alive
503
+ Vary:
504
+ - Accept-Encoding
505
+ Status:
506
+ - 200 OK
507
+ Etag:
508
+ - ! '"2830789a168cdfba40b91cbc98711d74"'
509
+ Cache-Control:
510
+ - max-age=0, private, must-revalidate
511
+ X-Ua-Compatible:
512
+ - IE=Edge,chrome=1
513
+ Set-Cookie:
514
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlODBiMDJhNTQwOWM4MWRlN2FiYzUwMzhkODBlODY0MWRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--6befc7d8408aaf15a58bdca27e7f4f89bd3bd6ec;
515
+ domain=.cartodb.com; path=/; HttpOnly
516
+ X-Runtime:
517
+ - '0.135436'
518
+ Content-Encoding:
519
+ - gzip
520
+ body:
521
+ encoding: ASCII-8BIT
522
+ string: ! '{"name":"right_corners","type":"numeric","cartodb_type":"number"}'
523
+ http_version: '1.1'
524
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
525
+ - request:
526
+ method: post
527
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
528
+ body:
529
+ encoding: US-ASCII
530
+ string: ''
531
+ headers:
532
+ Accept:
533
+ - *70259176453560
534
+ Authorization:
535
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="hIPUWHu17VX7LE7dpOxOF75FlrDZYnrCnMr2i2O9ZU",
536
+ oauth_signature="aBJptbX02isAULfx5i1%2BY9nJlTI%3D", oauth_signature_method="HMAC-SHA1",
537
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
538
+ oauth_version="1.0"
539
+ response:
540
+ status:
541
+ code: 200
542
+ message: OK
543
+ headers:
544
+ Server:
545
+ - nginx
546
+ Date:
547
+ - Wed, 23 May 2012 14:52:32 GMT
548
+ Content-Type:
549
+ - application/json; charset=utf-8
550
+ Transfer-Encoding:
551
+ - chunked
552
+ Connection:
553
+ - keep-alive
554
+ Vary:
555
+ - Accept-Encoding
556
+ Status:
557
+ - 200 OK
558
+ Etag:
559
+ - ! '"b4f11f170f581e46523ca91965371c28"'
560
+ Cache-Control:
561
+ - max-age=0, private, must-revalidate
562
+ X-Ua-Compatible:
563
+ - IE=Edge,chrome=1
564
+ Set-Cookie:
565
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZDg4MjcxYjA3ZWIyOTY3MTdkZmUxMmQ5YTkxYmNjOTBJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--3a98edcc88dda13235fa4823fda8042bfbed8532;
566
+ domain=.cartodb.com; path=/; HttpOnly
567
+ X-Runtime:
568
+ - '0.039063'
569
+ Content-Encoding:
570
+ - gzip
571
+ body:
572
+ encoding: ASCII-8BIT
573
+ string: ! '{"name":"constructed","type":"timestamp","cartodb_type":"date"}'
574
+ http_version: '1.1'
575
+ recorded_at: Wed, 23 May 2012 14:52:32 GMT
576
+ - request:
577
+ method: post
578
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/columns
579
+ body:
580
+ encoding: US-ASCII
581
+ string: ''
582
+ headers:
583
+ Accept:
584
+ - *70259176453560
585
+ Authorization:
586
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="XvforxEJY5ctu060qIt4lUEF4arEBtWJPujlj8TvD4",
587
+ oauth_signature="AddZwL6w6q1Zu5cGogjzEei2W5Q%3D", oauth_signature_method="HMAC-SHA1",
588
+ oauth_timestamp="1337784752", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
589
+ oauth_version="1.0"
590
+ response:
591
+ status:
592
+ code: 200
593
+ message: OK
594
+ headers:
595
+ Server:
596
+ - nginx
597
+ Date:
598
+ - Wed, 23 May 2012 14:52:33 GMT
599
+ Content-Type:
600
+ - application/json; charset=utf-8
601
+ Transfer-Encoding:
602
+ - chunked
603
+ Connection:
604
+ - keep-alive
605
+ Vary:
606
+ - Accept-Encoding
607
+ Status:
608
+ - 200 OK
609
+ Etag:
610
+ - ! '"5b673b3f4b869a800810f0a965941052"'
611
+ Cache-Control:
612
+ - max-age=0, private, must-revalidate
613
+ X-Ua-Compatible:
614
+ - IE=Edge,chrome=1
615
+ Set-Cookie:
616
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZWNjMzYxNjQ2NGJiNjFkZjg1YzliYzNjOWI4Y2M1MjlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--ebcbf6b1ebcb54841862cf178b15e122a3938ead;
617
+ domain=.cartodb.com; path=/; HttpOnly
618
+ X-Runtime:
619
+ - '0.041027'
620
+ Content-Encoding:
621
+ - gzip
622
+ body:
623
+ encoding: ASCII-8BIT
624
+ string: ! '{"name":"modified","type":"timestamp","cartodb_type":"date"}'
625
+ http_version: '1.1'
626
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
627
+ - request:
628
+ method: get
629
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
630
+ body:
631
+ encoding: US-ASCII
632
+ string: ''
633
+ headers:
634
+ Accept:
635
+ - *70259176453560
636
+ Authorization:
637
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="Yg2B2VnTxnb3mGABoYg55zFf8FIZCVo9dsDrLWAuM",
638
+ oauth_signature="xi579hrH8%2FHssHw1XF0RAtqQFIE%3D", oauth_signature_method="HMAC-SHA1",
639
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
640
+ oauth_version="1.0"
641
+ response:
642
+ status:
643
+ code: 200
644
+ message: OK
645
+ headers:
646
+ Server:
647
+ - nginx
648
+ Date:
649
+ - Wed, 23 May 2012 14:52:33 GMT
650
+ Content-Type:
651
+ - application/json; charset=utf-8
652
+ Transfer-Encoding:
653
+ - chunked
654
+ Connection:
655
+ - keep-alive
656
+ Vary:
657
+ - Accept-Encoding
658
+ Status:
659
+ - 200 OK
660
+ Etag:
661
+ - ! '"e1f0204a867832373345abdf6d17975f"'
662
+ Cache-Control:
663
+ - max-age=0, private, must-revalidate
664
+ X-Ua-Compatible:
665
+ - IE=Edge,chrome=1
666
+ Set-Cookie:
667
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYTExYzY2ZWQ2OWY2ZjE5MmZmNzI5MzVkY2YwMTdhMDhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--9cafc2cb27c9cd608be53e6884221cac4e8d6734;
668
+ domain=.cartodb.com; path=/; HttpOnly
669
+ X-Runtime:
670
+ - '0.017115'
671
+ Content-Encoding:
672
+ - gzip
673
+ body:
674
+ encoding: ASCII-8BIT
675
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
676
+ http_version: '1.1'
677
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
678
+ - request:
679
+ method: get
680
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
681
+ body:
682
+ encoding: US-ASCII
683
+ string: ''
684
+ headers:
685
+ Accept:
686
+ - *70259176453560
687
+ Authorization:
688
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="ISWdcZC4zzY8R7sS4zBowZjJnTWgyOYwzZJer78",
689
+ oauth_signature="%2F4NrorEXlKFyrO2DeI0ue3%2F0MNw%3D", oauth_signature_method="HMAC-SHA1",
690
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
691
+ oauth_version="1.0"
692
+ response:
693
+ status:
694
+ code: 200
695
+ message: OK
696
+ headers:
697
+ Server:
698
+ - nginx
699
+ Date:
700
+ - Wed, 23 May 2012 14:52:33 GMT
701
+ Content-Type:
702
+ - application/json; charset=utf-8
703
+ Transfer-Encoding:
704
+ - chunked
705
+ Connection:
706
+ - keep-alive
707
+ Vary:
708
+ - Accept-Encoding
709
+ Status:
710
+ - 200 OK
711
+ Etag:
712
+ - ! '"e1f0204a867832373345abdf6d17975f"'
713
+ Cache-Control:
714
+ - max-age=0, private, must-revalidate
715
+ X-Ua-Compatible:
716
+ - IE=Edge,chrome=1
717
+ Set-Cookie:
718
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZWM4NzE1NjZkMDQxOGRjNjE1ZDU2MjA0NmRmNWJjZWRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--dee0358feaa4359c00b59bbb619e3decd49c9f99;
719
+ domain=.cartodb.com; path=/; HttpOnly
720
+ X-Runtime:
721
+ - '0.016890'
722
+ Content-Encoding:
723
+ - gzip
724
+ body:
725
+ encoding: ASCII-8BIT
726
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
727
+ http_version: '1.1'
728
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
729
+ - request:
730
+ method: get
731
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
732
+ body:
733
+ encoding: US-ASCII
734
+ string: ''
735
+ headers:
736
+ Accept:
737
+ - *70259176453560
738
+ Authorization:
739
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="USAIlZGG4HldfQlrcdyL5wpD9mF2kiOb2mQyr8bDE",
740
+ oauth_signature="jJ6NnWThHWLklr0GFmyrRiV5qdM%3D", oauth_signature_method="HMAC-SHA1",
741
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
742
+ oauth_version="1.0"
743
+ response:
744
+ status:
745
+ code: 200
746
+ message: OK
747
+ headers:
748
+ Server:
749
+ - nginx
750
+ Date:
751
+ - Wed, 23 May 2012 14:52:33 GMT
752
+ Content-Type:
753
+ - application/json; charset=utf-8
754
+ Transfer-Encoding:
755
+ - chunked
756
+ Connection:
757
+ - keep-alive
758
+ Vary:
759
+ - Accept-Encoding
760
+ Status:
761
+ - 200 OK
762
+ Etag:
763
+ - ! '"e1f0204a867832373345abdf6d17975f"'
764
+ Cache-Control:
765
+ - max-age=0, private, must-revalidate
766
+ X-Ua-Compatible:
767
+ - IE=Edge,chrome=1
768
+ Set-Cookie:
769
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZDE4MjMzZDkyNzM4NmUzMDQ5MGFiNjQ2OWUyMzM2ZDhJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--185d8de8167a3b77780aade7c34f07f75773cbe8;
770
+ domain=.cartodb.com; path=/; HttpOnly
771
+ X-Runtime:
772
+ - '0.016654'
773
+ Content-Encoding:
774
+ - gzip
775
+ body:
776
+ encoding: ASCII-8BIT
777
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
778
+ http_version: '1.1'
779
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
780
+ - request:
781
+ method: get
782
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
783
+ body:
784
+ encoding: US-ASCII
785
+ string: ''
786
+ headers:
787
+ Accept:
788
+ - *70259176453560
789
+ Authorization:
790
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="bibZiwaSVkM9BQPhFmE1ds5euxOQhysB7KCusSMSaWc",
791
+ oauth_signature="drgOjBETWZJaBZ1L%2FhycAXAj4wc%3D", oauth_signature_method="HMAC-SHA1",
792
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
793
+ oauth_version="1.0"
794
+ response:
795
+ status:
796
+ code: 200
797
+ message: OK
798
+ headers:
799
+ Server:
800
+ - nginx
801
+ Date:
802
+ - Wed, 23 May 2012 14:52:33 GMT
803
+ Content-Type:
804
+ - application/json; charset=utf-8
805
+ Transfer-Encoding:
806
+ - chunked
807
+ Connection:
808
+ - keep-alive
809
+ Vary:
810
+ - Accept-Encoding
811
+ Status:
812
+ - 200 OK
813
+ Etag:
814
+ - ! '"e1f0204a867832373345abdf6d17975f"'
815
+ Cache-Control:
816
+ - max-age=0, private, must-revalidate
817
+ X-Ua-Compatible:
818
+ - IE=Edge,chrome=1
819
+ Set-Cookie:
820
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZWE3Njc4MWQ2MGEyYTQ0Nzc4NDJlY2VmODhhZTljYjRJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--67a1243768b76aa442eb96984d305422721d42bf;
821
+ domain=.cartodb.com; path=/; HttpOnly
822
+ X-Runtime:
823
+ - '0.017019'
824
+ Content-Encoding:
825
+ - gzip
826
+ body:
827
+ encoding: ASCII-8BIT
828
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
829
+ http_version: '1.1'
830
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
831
+ - request:
832
+ method: get
833
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
834
+ body:
835
+ encoding: US-ASCII
836
+ string: ''
837
+ headers:
838
+ Accept:
839
+ - *70259176453560
840
+ Authorization:
841
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="KzhN9ZX1iGOAefkzvI010NSeTIxfMrrbv9jTfcqcTcU",
842
+ oauth_signature="fgzKMQomPrBwlCpyt2AGODh5Dgc%3D", oauth_signature_method="HMAC-SHA1",
843
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
844
+ oauth_version="1.0"
845
+ response:
846
+ status:
847
+ code: 200
848
+ message: OK
849
+ headers:
850
+ Server:
851
+ - nginx
852
+ Date:
853
+ - Wed, 23 May 2012 14:52:33 GMT
854
+ Content-Type:
855
+ - application/json; charset=utf-8
856
+ Transfer-Encoding:
857
+ - chunked
858
+ Connection:
859
+ - keep-alive
860
+ Vary:
861
+ - Accept-Encoding
862
+ Status:
863
+ - 200 OK
864
+ Etag:
865
+ - ! '"e1f0204a867832373345abdf6d17975f"'
866
+ Cache-Control:
867
+ - max-age=0, private, must-revalidate
868
+ X-Ua-Compatible:
869
+ - IE=Edge,chrome=1
870
+ Set-Cookie:
871
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZGRhN2EyY2E4ZDQ5OGY3ZDZkMjA1N2MyYTc0YjNiOTNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--ecb901a395630aff4da8842fbc1bdb569bc31a63;
872
+ domain=.cartodb.com; path=/; HttpOnly
873
+ X-Runtime:
874
+ - '0.017823'
875
+ Content-Encoding:
876
+ - gzip
877
+ body:
878
+ encoding: ASCII-8BIT
879
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
880
+ http_version: '1.1'
881
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
882
+ - request:
883
+ method: get
884
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
885
+ body:
886
+ encoding: US-ASCII
887
+ string: ''
888
+ headers:
889
+ Accept:
890
+ - *70259176453560
891
+ Authorization:
892
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="N9xZflbw5sQys8LsX0AHXeplfuSKWiENirJgDYYd5k",
893
+ oauth_signature="ikCeFlDONwzCZMKSIOnrW7ysO5w%3D", oauth_signature_method="HMAC-SHA1",
894
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
895
+ oauth_version="1.0"
896
+ response:
897
+ status:
898
+ code: 200
899
+ message: OK
900
+ headers:
901
+ Server:
902
+ - nginx
903
+ Date:
904
+ - Wed, 23 May 2012 14:52:33 GMT
905
+ Content-Type:
906
+ - application/json; charset=utf-8
907
+ Transfer-Encoding:
908
+ - chunked
909
+ Connection:
910
+ - keep-alive
911
+ Vary:
912
+ - Accept-Encoding
913
+ Status:
914
+ - 200 OK
915
+ Etag:
916
+ - ! '"e1f0204a867832373345abdf6d17975f"'
917
+ Cache-Control:
918
+ - max-age=0, private, must-revalidate
919
+ X-Ua-Compatible:
920
+ - IE=Edge,chrome=1
921
+ Set-Cookie:
922
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNGViNzMzMTkwMGIyMTFjOTEzYThjZWIwM2NjYTE2YzNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--4639947620d60a19ea2117327df0acb8e32733ed;
923
+ domain=.cartodb.com; path=/; HttpOnly
924
+ X-Runtime:
925
+ - '0.017071'
926
+ Content-Encoding:
927
+ - gzip
928
+ body:
929
+ encoding: ASCII-8BIT
930
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
931
+ http_version: '1.1'
932
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
933
+ - request:
934
+ method: get
935
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
936
+ body:
937
+ encoding: US-ASCII
938
+ string: ''
939
+ headers:
940
+ Accept:
941
+ - *70259176453560
942
+ Authorization:
943
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="DfKWIh3RrSpyFHJEElmG5Yo5KGrlT2DUHCIOVm3yY",
944
+ oauth_signature="EleEx25Mejcie2oWI8VpFPE19OM%3D", oauth_signature_method="HMAC-SHA1",
945
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
946
+ oauth_version="1.0"
947
+ response:
948
+ status:
949
+ code: 200
950
+ message: OK
951
+ headers:
952
+ Server:
953
+ - nginx
954
+ Date:
955
+ - Wed, 23 May 2012 14:52:33 GMT
956
+ Content-Type:
957
+ - application/json; charset=utf-8
958
+ Transfer-Encoding:
959
+ - chunked
960
+ Connection:
961
+ - keep-alive
962
+ Vary:
963
+ - Accept-Encoding
964
+ Status:
965
+ - 200 OK
966
+ Etag:
967
+ - ! '"e1f0204a867832373345abdf6d17975f"'
968
+ Cache-Control:
969
+ - max-age=0, private, must-revalidate
970
+ X-Ua-Compatible:
971
+ - IE=Edge,chrome=1
972
+ Set-Cookie:
973
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNmZlYzQ0OTZiNGMwODNkMGVhMjNlMWJmMzhmMzMyYzNJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--a2a43026616621ae2faf719dd3733133548274f7;
974
+ domain=.cartodb.com; path=/; HttpOnly
975
+ X-Runtime:
976
+ - '0.016565'
977
+ Content-Encoding:
978
+ - gzip
979
+ body:
980
+ encoding: ASCII-8BIT
981
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
982
+ http_version: '1.1'
983
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
984
+ - request:
985
+ method: get
986
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
987
+ body:
988
+ encoding: US-ASCII
989
+ string: ''
990
+ headers:
991
+ Accept:
992
+ - *70259176453560
993
+ Authorization:
994
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="ZkbMmj3cmYdLUNoNECKvNVjisUcnVgO7CNDXgnjaZk",
995
+ oauth_signature="8EIVdz%2B%2BXmyilK4awp9kOOKHlHI%3D", oauth_signature_method="HMAC-SHA1",
996
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
997
+ oauth_version="1.0"
998
+ response:
999
+ status:
1000
+ code: 200
1001
+ message: OK
1002
+ headers:
1003
+ Server:
1004
+ - nginx
1005
+ Date:
1006
+ - Wed, 23 May 2012 14:52:33 GMT
1007
+ Content-Type:
1008
+ - application/json; charset=utf-8
1009
+ Transfer-Encoding:
1010
+ - chunked
1011
+ Connection:
1012
+ - keep-alive
1013
+ Vary:
1014
+ - Accept-Encoding
1015
+ Status:
1016
+ - 200 OK
1017
+ Etag:
1018
+ - ! '"e1f0204a867832373345abdf6d17975f"'
1019
+ Cache-Control:
1020
+ - max-age=0, private, must-revalidate
1021
+ X-Ua-Compatible:
1022
+ - IE=Edge,chrome=1
1023
+ Set-Cookie:
1024
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMjc1NTExOTIzMTQ3NjQwNjkwYzdmNTZjZTIxMDRiZTlJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--7488c93ed4e417e274d71b0a259700d85e8144a2;
1025
+ domain=.cartodb.com; path=/; HttpOnly
1026
+ X-Runtime:
1027
+ - '0.017277'
1028
+ Content-Encoding:
1029
+ - gzip
1030
+ body:
1031
+ encoding: ASCII-8BIT
1032
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
1033
+ http_version: '1.1'
1034
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
1035
+ - request:
1036
+ method: get
1037
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
1038
+ body:
1039
+ encoding: US-ASCII
1040
+ string: ''
1041
+ headers:
1042
+ Accept:
1043
+ - *70259176453560
1044
+ Authorization:
1045
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="qw0ycy7bbTZyjpvzjo1L3xbMUkFfoGvVVVAI4uT3bbE",
1046
+ oauth_signature="aamXNvUCrbdn09zNb0qoSEDWK4I%3D", oauth_signature_method="HMAC-SHA1",
1047
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1048
+ oauth_version="1.0"
1049
+ response:
1050
+ status:
1051
+ code: 200
1052
+ message: OK
1053
+ headers:
1054
+ Server:
1055
+ - nginx
1056
+ Date:
1057
+ - Wed, 23 May 2012 14:52:33 GMT
1058
+ Content-Type:
1059
+ - application/json; charset=utf-8
1060
+ Transfer-Encoding:
1061
+ - chunked
1062
+ Connection:
1063
+ - keep-alive
1064
+ Vary:
1065
+ - Accept-Encoding
1066
+ Status:
1067
+ - 200 OK
1068
+ Etag:
1069
+ - ! '"e1f0204a867832373345abdf6d17975f"'
1070
+ Cache-Control:
1071
+ - max-age=0, private, must-revalidate
1072
+ X-Ua-Compatible:
1073
+ - IE=Edge,chrome=1
1074
+ Set-Cookie:
1075
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlMGI2M2NlMmViNjRmMGRiMzgyZjAxNmQ1YjQyNmQ3ZTVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--eaa08aa5c1e0063cf54450dc8c6253bb6f4333db;
1076
+ domain=.cartodb.com; path=/; HttpOnly
1077
+ X-Runtime:
1078
+ - '0.016188'
1079
+ Content-Encoding:
1080
+ - gzip
1081
+ body:
1082
+ encoding: ASCII-8BIT
1083
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
1084
+ http_version: '1.1'
1085
+ recorded_at: Wed, 23 May 2012 14:52:33 GMT
1086
+ - request:
1087
+ method: get
1088
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
1089
+ body:
1090
+ encoding: US-ASCII
1091
+ string: ''
1092
+ headers:
1093
+ Accept:
1094
+ - *70259176453560
1095
+ Authorization:
1096
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="pfCHZdc9OJsZTBCAMQdhT8wuuoq9Io2ghVfV8uG0",
1097
+ oauth_signature="ZsFMXkMjgeoK6in8cz2kY9d%2Bb4I%3D", oauth_signature_method="HMAC-SHA1",
1098
+ oauth_timestamp="1337784753", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1099
+ oauth_version="1.0"
1100
+ response:
1101
+ status:
1102
+ code: 200
1103
+ message: OK
1104
+ headers:
1105
+ Server:
1106
+ - nginx
1107
+ Date:
1108
+ - Wed, 23 May 2012 14:52:34 GMT
1109
+ Content-Type:
1110
+ - application/json; charset=utf-8
1111
+ Transfer-Encoding:
1112
+ - chunked
1113
+ Connection:
1114
+ - keep-alive
1115
+ Vary:
1116
+ - Accept-Encoding
1117
+ Status:
1118
+ - 200 OK
1119
+ Etag:
1120
+ - ! '"e1f0204a867832373345abdf6d17975f"'
1121
+ Cache-Control:
1122
+ - max-age=0, private, must-revalidate
1123
+ X-Ua-Compatible:
1124
+ - IE=Edge,chrome=1
1125
+ Set-Cookie:
1126
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlNWIxZjExMGM5MGZkN2U1YjJkMGQyN2M3MWQzYjFkY2ZJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--46620ec16a0bc0150acbf552cd7262991b41d3b9;
1127
+ domain=.cartodb.com; path=/; HttpOnly
1128
+ X-Runtime:
1129
+ - '0.017646'
1130
+ Content-Encoding:
1131
+ - gzip
1132
+ body:
1133
+ encoding: ASCII-8BIT
1134
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
1135
+ http_version: '1.1'
1136
+ recorded_at: Wed, 23 May 2012 14:52:34 GMT
1137
+ - request:
1138
+ method: get
1139
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit?
1140
+ body:
1141
+ encoding: US-ASCII
1142
+ string: ''
1143
+ headers:
1144
+ Accept:
1145
+ - *70259176453560
1146
+ Authorization:
1147
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="nL2QaV7k89COfp9xtKRDk912SDBwVCFhZczarEMuirY",
1148
+ oauth_signature="fYQmVShy51hcTqIKFScFTCjreRk%3D", oauth_signature_method="HMAC-SHA1",
1149
+ oauth_timestamp="1337784754", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1150
+ oauth_version="1.0"
1151
+ response:
1152
+ status:
1153
+ code: 200
1154
+ message: OK
1155
+ headers:
1156
+ Server:
1157
+ - nginx
1158
+ Date:
1159
+ - Wed, 23 May 2012 14:52:34 GMT
1160
+ Content-Type:
1161
+ - application/json; charset=utf-8
1162
+ Transfer-Encoding:
1163
+ - chunked
1164
+ Connection:
1165
+ - keep-alive
1166
+ Vary:
1167
+ - Accept-Encoding
1168
+ Status:
1169
+ - 200 OK
1170
+ Etag:
1171
+ - ! '"e1f0204a867832373345abdf6d17975f"'
1172
+ Cache-Control:
1173
+ - max-age=0, private, must-revalidate
1174
+ X-Ua-Compatible:
1175
+ - IE=Edge,chrome=1
1176
+ Set-Cookie:
1177
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlZmU0Mjg3MzQxYzQ0MTM0Mzk5ZGRmZDlhMTZmYjk3ODFJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--b83a6a21362259385e713092f529cade75f54fd1;
1178
+ domain=.cartodb.com; path=/; HttpOnly
1179
+ X-Runtime:
1180
+ - '0.017040'
1181
+ Content-Encoding:
1182
+ - gzip
1183
+ body:
1184
+ encoding: ASCII-8BIT
1185
+ string: ! '{"id":4649,"name":"moto_gp_circuit","privacy":"PUBLIC","tags":"","schema":[["cartodb_id","number"],["the_geom","geometry","geometry","point"],["constructed","date"],["description","string"],["left_corners","number"],["length","string"],["longest_straight","string"],["modified","date"],["name","string"],["right_corners","number"],["width","string"],["created_at","date"],["updated_at","date"]]}'
1186
+ http_version: '1.1'
1187
+ recorded_at: Wed, 23 May 2012 14:52:34 GMT
1188
+ - request:
1189
+ method: post
1190
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/sql
1191
+ body:
1192
+ encoding: US-ASCII
1193
+ string: ''
1194
+ headers:
1195
+ Accept:
1196
+ - *70259176453560
1197
+ Authorization:
1198
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="5rv0jNAixB4WQGkVgm7mFBl6D8DbypjcTx2Hgx4xnvE",
1199
+ oauth_signature="G6cv95OSpEhuq6GESR7xLcMTryU%3D", oauth_signature_method="HMAC-SHA1",
1200
+ oauth_timestamp="1337784754", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1201
+ oauth_version="1.0"
1202
+ response:
1203
+ status:
1204
+ code: 200
1205
+ message: OK
1206
+ headers:
1207
+ Server:
1208
+ - nginx
1209
+ Date:
1210
+ - Wed, 23 May 2012 14:52:34 GMT
1211
+ Content-Type:
1212
+ - application/json; charset=utf-8
1213
+ Connection:
1214
+ - keep-alive
1215
+ X-Powered-By:
1216
+ - Express
1217
+ Content-Disposition:
1218
+ - inline; filename=cartodb-query.json; modification-date="Wed, 23 May 2012 14:52:34
1219
+ GMT";
1220
+ Access-Control-Allow-Origin:
1221
+ - ! '*'
1222
+ Access-Control-Allow-Headers:
1223
+ - X-Requested-With
1224
+ Last-Modified:
1225
+ - Wed, 23 May 2012 14:52:34 GMT
1226
+ Cache-Control:
1227
+ - no-cache,max-age=3600,must-revalidate, public
1228
+ X-Cache-Channel:
1229
+ - cartodb_user_384_db:moto_gp_circuit
1230
+ Content-Length:
1231
+ - '830'
1232
+ body:
1233
+ encoding: ASCII-8BIT
1234
+ string: ! '{"time":0.128,"total_rows":1,"rows":[{"id":1,"cartodb_id":1,"name":"Losail
1235
+ Circuit","description":"The fabulous Losail International Circuit lies on
1236
+ the outskirts of Doha, the capital city of Qatar. Built in little over a year,
1237
+ the track cost $58 million USD and required round-the-clock dedication from
1238
+ almost 1,000 workers in order to get it ready for the inaugural event - the
1239
+ Marlboro Grand Prix of Qatar on the 2nd October 2004.","created_at":"2012-05-23T16:52:34.219Z","updated_at":"2012-05-23T16:52:34.219Z","the_geom":"0101000020E6100000C1C9367007BA494005FA449E247D3940","the_geom_webmercator":"0101000020110F0000408B6E3C84D95541DF11F60B32664641","length":"5380m","width":"12m","longest_straight":"1068m","left_corners":6,"right_corners":10,"constructed":"2004-01-01T00:00:00.000Z","modified":"2004-01-01T00:00:00.000Z"}]}'
1240
+ http_version: '1.1'
1241
+ recorded_at: Wed, 23 May 2012 14:52:34 GMT
1242
+ - request:
1243
+ method: get
1244
+ uri: https://cartodb-rb-client.cartodb.com/api/v1/tables/moto_gp_circuit/records/1?
1245
+ body:
1246
+ encoding: US-ASCII
1247
+ string: ''
1248
+ headers:
1249
+ Accept:
1250
+ - *70259176453560
1251
+ Authorization:
1252
+ - OAuth oauth_consumer_key="0gRpcgKQK8bpcvSzM5ED4NqaSbNQ8ivS4q0pVdJF", oauth_nonce="7LlHXESSre0c7U7VUsaDjbHp9u8StATUvwYqRHoMOA",
1253
+ oauth_signature="T%2BBJy5x8UDmzar5yCVV8EQObEKs%3D", oauth_signature_method="HMAC-SHA1",
1254
+ oauth_timestamp="1337784754", oauth_token="7PalByYmKY8Dzh76fnt05e0YPXRJino0dyqHZYCw",
1255
+ oauth_version="1.0"
1256
+ response:
1257
+ status:
1258
+ code: 200
1259
+ message: OK
1260
+ headers:
1261
+ Server:
1262
+ - nginx
1263
+ Date:
1264
+ - Wed, 23 May 2012 14:52:34 GMT
1265
+ Content-Type:
1266
+ - application/json; charset=utf-8
1267
+ Transfer-Encoding:
1268
+ - chunked
1269
+ Connection:
1270
+ - keep-alive
1271
+ Vary:
1272
+ - Accept-Encoding
1273
+ Status:
1274
+ - 200 OK
1275
+ Etag:
1276
+ - ! '"ee2d90d9b913d1eb70e1e55b7cb2a3c5"'
1277
+ Cache-Control:
1278
+ - max-age=0, private, must-revalidate
1279
+ X-Ua-Compatible:
1280
+ - IE=Edge,chrome=1
1281
+ Set-Cookie:
1282
+ - _cartodb_session=BAh7B0kiD3Nlc3Npb25faWQGOgZFRiIlYWEwZDJhNDcxYmZjY2Q3NjQ5NjBiZTkxM2NiYTRhOWVJIiZ3YXJkZW4udXNlci5jYXJ0b2RiLXJiLWNsaWVudC5rZXkGOwBUSSIWY2FydG9kYi1yYi1jbGllbnQGOwBU--a69f573950b4719ebbac056a7ed268997e6d39d2;
1283
+ domain=.cartodb.com; path=/; HttpOnly
1284
+ X-Runtime:
1285
+ - '0.016437'
1286
+ Content-Encoding:
1287
+ - gzip
1288
+ body:
1289
+ encoding: ASCII-8BIT
1290
+ string: ! '{"cartodb_id":1,"constructed":"2004-01-01T00:00:00+01:00","description":"The
1291
+ fabulous Losail International Circuit lies on the outskirts of Doha, the capital
1292
+ city of Qatar. Built in little over a year, the track cost $58 million USD
1293
+ and required round-the-clock dedication from almost 1,000 workers in order
1294
+ to get it ready for the inaugural event - the Marlboro Grand Prix of Qatar
1295
+ on the 2nd October 2004.","left_corners":"6.0","length":"5380m","longest_straight":"1068m","modified":"2004-01-01T00:00:00+01:00","name":"Losail
1296
+ Circuit","right_corners":"10.0","width":"12m","created_at":"2012-05-23T16:52:34+02:00","updated_at":"2012-05-23T16:52:34+02:00","the_geom":"{\"type\":\"Point\",\"coordinates\":[51.453352,25.48884]}"}'
1297
+ http_version: '1.1'
1298
+ recorded_at: Wed, 23 May 2012 14:52:34 GMT
1299
+ recorded_with: VCR 2.1.1