bigbroda 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.pryrc +3 -0
- data/.rspec +2 -0
- data/.rvmrc +1 -0
- data/Gemfile +18 -0
- data/LICENSE.txt +22 -0
- data/README.md +408 -0
- data/Rakefile +12 -0
- data/google_bigquery.gemspec +30 -0
- data/lib/.DS_Store +0 -0
- data/lib/active_record/.DS_Store +0 -0
- data/lib/active_record/connection_adapters/bigquery_adapter.rb +949 -0
- data/lib/active_record/tasks/bigquery_database_tasks.rb +42 -0
- data/lib/generators/.DS_Store +0 -0
- data/lib/generators/google_bigquery/.DS_Store +0 -0
- data/lib/generators/google_bigquery/install/install_generator.rb +21 -0
- data/lib/generators/templates/README +11 -0
- data/lib/generators/templates/bigquery.rb.erb +7 -0
- data/lib/google_bigquery/auth.rb +27 -0
- data/lib/google_bigquery/client.rb +52 -0
- data/lib/google_bigquery/config.rb +17 -0
- data/lib/google_bigquery/dataset.rb +77 -0
- data/lib/google_bigquery/engine.rb +21 -0
- data/lib/google_bigquery/jobs.rb +173 -0
- data/lib/google_bigquery/project.rb +16 -0
- data/lib/google_bigquery/railtie.rb +39 -0
- data/lib/google_bigquery/table.rb +63 -0
- data/lib/google_bigquery/table_data.rb +23 -0
- data/lib/google_bigquery/version.rb +3 -0
- data/lib/google_bigquery.rb +27 -0
- data/spec/.DS_Store +0 -0
- data/spec/dummy/.DS_Store +0 -0
- data/spec/dummy/.gitignore +20 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +16 -0
- data/spec/dummy/app/assets/stylesheets/application.css.scss +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +4 -0
- data/spec/dummy/app/helpers/application_helper.rb +3 -0
- data/spec/dummy/app/mailers/.gitkeep +0 -0
- data/spec/dummy/app/models/log_data.rb +3 -0
- data/spec/dummy/app/models/post.rb +3 -0
- data/spec/dummy/app/models/user.rb +4 -0
- data/spec/dummy/app/views/layouts/application.html.haml +32 -0
- data/spec/dummy/config/application.rb +23 -0
- data/spec/dummy/config/boot.rb +11 -0
- data/spec/dummy/config/database.yml +32 -0
- data/spec/dummy/config/environment.rb +6 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
- data/spec/dummy/config/initializers/bigquery.rb +19 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +6 -0
- data/spec/dummy/config/initializers/secret_token.rb +8 -0
- data/spec/dummy/config/initializers/session_store.rb +9 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +15 -0
- data/spec/dummy/config/locales/devise.en.yml +58 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/locales/simple_form.en.yml +26 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/migrate/20140224051640_create_users.rb +11 -0
- data/spec/dummy/db/migrate/20140224063709_add_last_name_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20140225014314_create_log_data.rb +12 -0
- data/spec/dummy/db/migrate/20140227015551_create_posts.rb +9 -0
- data/spec/dummy/db/schema.rb +39 -0
- data/spec/dummy/db/schema_migrations.json +1 -0
- data/spec/dummy/lib/assets/.gitkeep +0 -0
- data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/test/fixtures/log_data.yml +9 -0
- data/spec/dummy/test/fixtures/posts.yml +11 -0
- data/spec/dummy/test/fixtures/users.yml +11 -0
- data/spec/dummy/test/models/log_data_test.rb +7 -0
- data/spec/dummy/test/models/post_test.rb +7 -0
- data/spec/dummy/test/models/user_test.rb +7 -0
- data/spec/fixtures/.DS_Store +0 -0
- data/spec/fixtures/configs/account_config.yml-example +6 -0
- data/spec/fixtures/keys/.DS_Store +0 -0
- data/spec/fixtures/keys/example-privatekey-p12 +0 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/.DS_Store +0 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/adapter/simple_quering.yml +324 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/after_each.yml +154 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/authorize_config.yml +367 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/create_each.yml +195 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/migrations/_down/adds_the_email_at_utc_hour_column.yml +575 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/migrations/_up/adds_the_created_at_updated_at_column.yml +644 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/migrations/add_column/adds_published_column.yml +779 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/migrations/associations/users_posts.yml +1464 -0
- data/spec/fixtures/vcr_cassettes/ActiveRecord_Adapter/migrations/remove_column/should_raise_error.yml +713 -0
- data/spec/fixtures/vcr_cassettes/Dataset/_list.yml +64 -0
- data/spec/fixtures/vcr_cassettes/Dataset/authorize_config.yml +367 -0
- data/spec/fixtures/vcr_cassettes/Dataset/operations/_get_delete.yml +237 -0
- data/spec/fixtures/vcr_cassettes/Dataset/operations/_patch_delete.yml +240 -0
- data/spec/fixtures/vcr_cassettes/Dataset/operations/_update_delete.yml +297 -0
- data/spec/fixtures/vcr_cassettes/Dataset/operations/create_delete.yml +173 -0
- data/spec/fixtures/vcr_cassettes/Project/_list.yml +64 -0
- data/spec/fixtures/vcr_cassettes/Project/authorize_config.yml +2166 -0
- data/spec/fixtures/vcr_cassettes/Table/authorize_config.yml +367 -0
- data/spec/fixtures/vcr_cassettes/Table/operations/creation_edition/_create_delete.yml +404 -0
- data/spec/fixtures/vcr_cassettes/Table/operations/creation_edition/_create_update_delete.yml +471 -0
- data/spec/fixtures/vcr_cassettes/Table/operations/list.yml +232 -0
- data/spec/fixtures/vcr_cassettes/TableData/authorize_config.yml +2166 -0
- data/spec/fixtures/vcr_cassettes/TableData/create_each.yml +135 -0
- data/spec/fixtures/vcr_cassettes/TableData/delete_each.yml +154 -0
- data/spec/fixtures/vcr_cassettes/TableData/insertAll2.yml +189 -0
- data/spec/fixtures/vcr_cassettes/auth.yml +2168 -0
- data/spec/fixtures/vcr_cassettes/authorize_config.yml +2166 -0
- data/spec/fixtures/vcr_cassettes/datasets.yml +119 -0
- data/spec/fixtures/vcr_cassettes/delete_each_dataset.yml +48 -0
- data/spec/functional/adapter/adapter_spec.rb +213 -0
- data/spec/functional/auth_spec.rb +24 -0
- data/spec/functional/client_spec.rb +9 -0
- data/spec/functional/config_spec.rb +24 -0
- data/spec/functional/dataset_spec.rb +77 -0
- data/spec/functional/project_spec.rb +24 -0
- data/spec/functional/table_data_spec.rb +61 -0
- data/spec/functional/table_spec.rb +105 -0
- data/spec/models/user_spec.rb +0 -0
- data/spec/spec_helper.rb +48 -0
- data/spec/support/models.rb +11 -0
- data/spec/support/schema.rb +43 -0
- metadata +370 -0
@@ -0,0 +1,404 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: '{"datasetReference":{"datasetId":"rspec_schema"}}'
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- |-
|
12
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
13
|
+
(gzip)
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
Accept-Encoding:
|
17
|
+
- gzip
|
18
|
+
Authorization:
|
19
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
20
|
+
Cache-Control:
|
21
|
+
- no-store
|
22
|
+
Accept:
|
23
|
+
- '*/*'
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Cache-Control:
|
30
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
31
|
+
Pragma:
|
32
|
+
- no-cache
|
33
|
+
Expires:
|
34
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
35
|
+
Date:
|
36
|
+
- Wed, 26 Feb 2014 02:15:38 GMT
|
37
|
+
Etag:
|
38
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/pmd7nkrk1m6OAkLz54FBVf-VlRA"'
|
39
|
+
Content-Type:
|
40
|
+
- application/json; charset=UTF-8
|
41
|
+
Content-Encoding:
|
42
|
+
- gzip
|
43
|
+
X-Content-Type-Options:
|
44
|
+
- nosniff
|
45
|
+
X-Frame-Options:
|
46
|
+
- SAMEORIGIN
|
47
|
+
X-Xss-Protection:
|
48
|
+
- 1; mode=block
|
49
|
+
Content-Length:
|
50
|
+
- '387'
|
51
|
+
Server:
|
52
|
+
- GSE
|
53
|
+
Alternate-Protocol:
|
54
|
+
- 443:quic
|
55
|
+
body:
|
56
|
+
encoding: ASCII-8BIT
|
57
|
+
string: !binary |-
|
58
|
+
H4sIAAAAAAAAAI2RSU/DMBCF7/kVkbnSmnRNeqIVBRUVKsJSKkDIOJNg4sTB
|
59
|
+
dlq1iP+ObRUkNsF13pvvzfLi+ShnZYIGPnpg2XMNcr2TEE0UaLRrRNAks+It
|
60
|
+
Woz5FDaLdHTeWgtRH99f9gIeHJ2p6wWuiqRf5jIPit5smE833c7h6CptXPF4
|
61
|
+
eIsch7kIkjEOjZxpaHSi/kCqCui9oo9QEOdSwNMpK3PrfdS6UgOMV6tVMxMi
|
62
|
+
40AqpppUFPh9Urxs4UqKJ6Ba4c9svF1C4W8hWyWGFCSUFEzYi+d/1Cdu0q9d
|
63
|
+
PtoGTX5YBHn+qyUTSkEpo9+YBss0HMFtAIrHw4Nx7EhmTcNmhB9JUVdW3KJj
|
64
|
+
IAlIZWgO94UwjycXfxHm0kz0K2E2P/0LMFuV/+uvFcjRelwQxq0Uhd0w7PSi
|
65
|
+
qBu09hNYAhcVyGZmXEtGwRxG1KW2z3Nsz7+z96ISiGaivGCFCwjaUbsd7kXt
|
66
|
+
sNeP3K84UfpEJCxlkPzs8l69N4OLCCXFAgAA
|
67
|
+
http_version:
|
68
|
+
recorded_at: Wed, 26 Feb 2014 02:15:38 GMT
|
69
|
+
- request:
|
70
|
+
method: post
|
71
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
72
|
+
body:
|
73
|
+
encoding: UTF-8
|
74
|
+
string: '{"tableReference":{"projectId":"985884699512","datasetId":"rspec_schema","tableId":"users"},"schema":[{"fields":[{"name":"name","type":"string","mode":"REQUIRED"},{"name":"age","type":"integer"},{"name":"weight","type":"float"},{"name":"is_magic","type":"boolean"}]}]}'
|
75
|
+
headers:
|
76
|
+
User-Agent:
|
77
|
+
- |-
|
78
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
79
|
+
(gzip)
|
80
|
+
Content-Type:
|
81
|
+
- application/json
|
82
|
+
Accept-Encoding:
|
83
|
+
- gzip
|
84
|
+
Authorization:
|
85
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
86
|
+
Cache-Control:
|
87
|
+
- no-store
|
88
|
+
Accept:
|
89
|
+
- '*/*'
|
90
|
+
response:
|
91
|
+
status:
|
92
|
+
code: 200
|
93
|
+
message: OK
|
94
|
+
headers:
|
95
|
+
Cache-Control:
|
96
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
97
|
+
Pragma:
|
98
|
+
- no-cache
|
99
|
+
Expires:
|
100
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
101
|
+
Date:
|
102
|
+
- Wed, 26 Feb 2014 02:15:41 GMT
|
103
|
+
Etag:
|
104
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/2bn6k1N-wvcLyg7LxZ8WxHOzZIw"'
|
105
|
+
Content-Type:
|
106
|
+
- application/json; charset=UTF-8
|
107
|
+
Content-Encoding:
|
108
|
+
- gzip
|
109
|
+
X-Content-Type-Options:
|
110
|
+
- nosniff
|
111
|
+
X-Frame-Options:
|
112
|
+
- SAMEORIGIN
|
113
|
+
X-Xss-Protection:
|
114
|
+
- 1; mode=block
|
115
|
+
Content-Length:
|
116
|
+
- '393'
|
117
|
+
Server:
|
118
|
+
- GSE
|
119
|
+
Alternate-Protocol:
|
120
|
+
- 443:quic
|
121
|
+
body:
|
122
|
+
encoding: ASCII-8BIT
|
123
|
+
string: !binary |-
|
124
|
+
H4sIAAAAAAAAAHWRUU/CMBSF3/crlvoKVMAA4w3jxJkJYUAUxZCyXUZlW+da
|
125
|
+
nED473YtREV8WdPv3nPO7d3OMNGKJgFqm2hOw/c1ZJsLQeYRoJIsgSBhUZqi
|
126
|
+
iR25sJ0sroe1DWPr+9m4UY2q3QF/muDaPGmsqr1y/uG7m7Dpfj63Hj/v+ttn
|
127
|
+
J58i5UNVAAlpBOUVFVC+sprtjKfgz7i/hJhU1hwyrno5RAuXJqtCsRQi5W2M
|
128
|
+
8zyvhIyFEZCU8orPYnycFn/UcJqxN/AFx78TcEAE4SD5zyisnsfxd6ICHiwg
|
129
|
+
g8QHmbszTBMdTJ0zoxcqEx3cdcPPBF1Wrrqoowxzr96new4pCwpRwOXtRd4U
|
130
|
+
kjAhcTGGPkuaiU2q2HDkOb3ukcYsUNSzB2PHs29QgfelM14k/GPl9EZ21/b+
|
131
|
+
1+RAw6U4ld26/c7ofxHls1iuyz+VXff7rt3paaH8vB724WdABGXJiGp9tW7V
|
132
|
+
661L6+rSalnq/0SEiwcWULmr4HyXsTe+AEizEoLKAgAA
|
133
|
+
http_version:
|
134
|
+
recorded_at: Wed, 26 Feb 2014 02:15:41 GMT
|
135
|
+
- request:
|
136
|
+
method: get
|
137
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
138
|
+
body:
|
139
|
+
encoding: UTF-8
|
140
|
+
string: ''
|
141
|
+
headers:
|
142
|
+
User-Agent:
|
143
|
+
- |-
|
144
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
145
|
+
(gzip)
|
146
|
+
Accept-Encoding:
|
147
|
+
- gzip
|
148
|
+
Content-Type:
|
149
|
+
- ''
|
150
|
+
Authorization:
|
151
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
152
|
+
Cache-Control:
|
153
|
+
- no-store
|
154
|
+
Accept:
|
155
|
+
- '*/*'
|
156
|
+
response:
|
157
|
+
status:
|
158
|
+
code: 200
|
159
|
+
message: OK
|
160
|
+
headers:
|
161
|
+
Expires:
|
162
|
+
- Wed, 26 Feb 2014 02:15:42 GMT
|
163
|
+
Date:
|
164
|
+
- Wed, 26 Feb 2014 02:15:42 GMT
|
165
|
+
Cache-Control:
|
166
|
+
- private, max-age=0, must-revalidate, no-transform
|
167
|
+
Etag:
|
168
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/WT6DERp6Bnvsc9iXtlvF_bqE4q0"'
|
169
|
+
Content-Type:
|
170
|
+
- application/json; charset=UTF-8
|
171
|
+
Content-Encoding:
|
172
|
+
- gzip
|
173
|
+
X-Content-Type-Options:
|
174
|
+
- nosniff
|
175
|
+
X-Frame-Options:
|
176
|
+
- SAMEORIGIN
|
177
|
+
X-Xss-Protection:
|
178
|
+
- 1; mode=block
|
179
|
+
Content-Length:
|
180
|
+
- '252'
|
181
|
+
Server:
|
182
|
+
- GSE
|
183
|
+
Alternate-Protocol:
|
184
|
+
- 443:quic
|
185
|
+
body:
|
186
|
+
encoding: ASCII-8BIT
|
187
|
+
string: !binary |-
|
188
|
+
H4sIAAAAAAAAAHWPPU/DMBRFd/8Ky6wUCKqC2o2IgIqyUIpoRFHkuK/B1M2H
|
189
|
+
n1MpVPnv2E6QGGDw4nPvPXonQtlells2pyyXRdOC7s4MzxUkEg07txgMLxze
|
190
|
+
sDRWCXylu+j5uquq9jF7CQMVPDzhOr18XYV38bIOo/KIYibXRh3vs7yJp83V
|
191
|
+
hvkdv4p26Y1QerLvP7NLWyg94oVUMNlLA5Pp7GausQaRofiAA79oETSOad9c
|
192
|
+
wg40lAJs0xsoq3X1CcIs/hgbmpRtueEIY+S34Cfgtwc8KN13P3q72tnY6jZK
|
193
|
+
Ygd6Qt/9uZXhamHg4E4OSE++Adlygc5rAQAA
|
194
|
+
http_version:
|
195
|
+
recorded_at: Wed, 26 Feb 2014 02:15:42 GMT
|
196
|
+
- request:
|
197
|
+
method: delete
|
198
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables/users
|
199
|
+
body:
|
200
|
+
encoding: UTF-8
|
201
|
+
string: ''
|
202
|
+
headers:
|
203
|
+
User-Agent:
|
204
|
+
- |-
|
205
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
206
|
+
(gzip)
|
207
|
+
Accept-Encoding:
|
208
|
+
- gzip
|
209
|
+
Content-Type:
|
210
|
+
- ''
|
211
|
+
Authorization:
|
212
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
213
|
+
Cache-Control:
|
214
|
+
- no-store
|
215
|
+
Accept:
|
216
|
+
- '*/*'
|
217
|
+
response:
|
218
|
+
status:
|
219
|
+
code: 204
|
220
|
+
message: No Content
|
221
|
+
headers:
|
222
|
+
Cache-Control:
|
223
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
224
|
+
Pragma:
|
225
|
+
- no-cache
|
226
|
+
Expires:
|
227
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
228
|
+
Date:
|
229
|
+
- Wed, 26 Feb 2014 02:15:43 GMT
|
230
|
+
Etag:
|
231
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/vyGp6PvFo4RvsFtPoIWeCReyIC8"'
|
232
|
+
Server:
|
233
|
+
- GSE
|
234
|
+
Alternate-Protocol:
|
235
|
+
- 443:quic
|
236
|
+
body:
|
237
|
+
encoding: UTF-8
|
238
|
+
string: ''
|
239
|
+
http_version:
|
240
|
+
recorded_at: Wed, 26 Feb 2014 02:15:43 GMT
|
241
|
+
- request:
|
242
|
+
method: get
|
243
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
244
|
+
body:
|
245
|
+
encoding: UTF-8
|
246
|
+
string: ''
|
247
|
+
headers:
|
248
|
+
User-Agent:
|
249
|
+
- |-
|
250
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
251
|
+
(gzip)
|
252
|
+
Accept-Encoding:
|
253
|
+
- gzip
|
254
|
+
Content-Type:
|
255
|
+
- ''
|
256
|
+
Authorization:
|
257
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
258
|
+
Cache-Control:
|
259
|
+
- no-store
|
260
|
+
Accept:
|
261
|
+
- '*/*'
|
262
|
+
response:
|
263
|
+
status:
|
264
|
+
code: 200
|
265
|
+
message: OK
|
266
|
+
headers:
|
267
|
+
Expires:
|
268
|
+
- Wed, 26 Feb 2014 02:15:44 GMT
|
269
|
+
Date:
|
270
|
+
- Wed, 26 Feb 2014 02:15:44 GMT
|
271
|
+
Cache-Control:
|
272
|
+
- private, max-age=0, must-revalidate, no-transform
|
273
|
+
Etag:
|
274
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/bl17EzoOcn5KZiiu83RaD39q0E8"'
|
275
|
+
Content-Type:
|
276
|
+
- application/json; charset=UTF-8
|
277
|
+
Content-Encoding:
|
278
|
+
- gzip
|
279
|
+
X-Content-Type-Options:
|
280
|
+
- nosniff
|
281
|
+
X-Frame-Options:
|
282
|
+
- SAMEORIGIN
|
283
|
+
X-Xss-Protection:
|
284
|
+
- 1; mode=block
|
285
|
+
Content-Length:
|
286
|
+
- '137'
|
287
|
+
Server:
|
288
|
+
- GSE
|
289
|
+
Alternate-Protocol:
|
290
|
+
- 443:quic
|
291
|
+
body:
|
292
|
+
encoding: ASCII-8BIT
|
293
|
+
string: !binary |-
|
294
|
+
H4sIAAAAAAAAAKvmUlDKzsxLUbJSUErKTC8sTS2qVC5JTMpJ9cksLlHSAUqn
|
295
|
+
liSmg6RjlCJdc3xSqyLTnIKNKvPzS73iQ80McwzdA4sjIvWTcgzNXavy/ZPz
|
296
|
+
TL2jMjNLLYyDEl2MLQsNXC1ilMDmlOSXJOZ4lqTmFgNNM+Cq5QIATHC61nwA
|
297
|
+
AAA=
|
298
|
+
http_version:
|
299
|
+
recorded_at: Wed, 26 Feb 2014 02:15:44 GMT
|
300
|
+
- request:
|
301
|
+
method: get
|
302
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
303
|
+
body:
|
304
|
+
encoding: UTF-8
|
305
|
+
string: ''
|
306
|
+
headers:
|
307
|
+
User-Agent:
|
308
|
+
- |-
|
309
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
310
|
+
(gzip)
|
311
|
+
Accept-Encoding:
|
312
|
+
- gzip
|
313
|
+
Content-Type:
|
314
|
+
- ''
|
315
|
+
Authorization:
|
316
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
317
|
+
Cache-Control:
|
318
|
+
- no-store
|
319
|
+
Accept:
|
320
|
+
- '*/*'
|
321
|
+
response:
|
322
|
+
status:
|
323
|
+
code: 200
|
324
|
+
message: OK
|
325
|
+
headers:
|
326
|
+
Expires:
|
327
|
+
- Wed, 26 Feb 2014 02:15:45 GMT
|
328
|
+
Date:
|
329
|
+
- Wed, 26 Feb 2014 02:15:45 GMT
|
330
|
+
Cache-Control:
|
331
|
+
- private, max-age=0, must-revalidate, no-transform
|
332
|
+
Etag:
|
333
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/bl17EzoOcn5KZiiu83RaD39q0E8"'
|
334
|
+
Content-Type:
|
335
|
+
- application/json; charset=UTF-8
|
336
|
+
Content-Encoding:
|
337
|
+
- gzip
|
338
|
+
X-Content-Type-Options:
|
339
|
+
- nosniff
|
340
|
+
X-Frame-Options:
|
341
|
+
- SAMEORIGIN
|
342
|
+
X-Xss-Protection:
|
343
|
+
- 1; mode=block
|
344
|
+
Content-Length:
|
345
|
+
- '137'
|
346
|
+
Server:
|
347
|
+
- GSE
|
348
|
+
Alternate-Protocol:
|
349
|
+
- 443:quic
|
350
|
+
body:
|
351
|
+
encoding: ASCII-8BIT
|
352
|
+
string: !binary |-
|
353
|
+
H4sIAAAAAAAAAKvmUlDKzsxLUbJSUErKTC8sTS2qVC5JTMpJ9cksLlHSAUqn
|
354
|
+
liSmg6RjlCJdc3xSqyLTnIKNKvPzS73iQ80McwzdA4sjIvWTcgzNXavy/ZPz
|
355
|
+
TL2jMjNLLYyDEl2MLQsNXC1ilMDmlOSXJOZ4lqTmFgNNM+Cq5QIATHC61nwA
|
356
|
+
AAA=
|
357
|
+
http_version:
|
358
|
+
recorded_at: Wed, 26 Feb 2014 02:15:45 GMT
|
359
|
+
- request:
|
360
|
+
method: delete
|
361
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema
|
362
|
+
body:
|
363
|
+
encoding: UTF-8
|
364
|
+
string: ''
|
365
|
+
headers:
|
366
|
+
User-Agent:
|
367
|
+
- |-
|
368
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
369
|
+
(gzip)
|
370
|
+
Accept-Encoding:
|
371
|
+
- gzip
|
372
|
+
Content-Type:
|
373
|
+
- ''
|
374
|
+
Authorization:
|
375
|
+
- Bearer ya29.1.AADtN_UpK3Xce4lDHKhDoSiJQK6mz_eU8YWsZZnTXZYH1m5tysec8aiuQrfTbSuN
|
376
|
+
Cache-Control:
|
377
|
+
- no-store
|
378
|
+
Accept:
|
379
|
+
- '*/*'
|
380
|
+
response:
|
381
|
+
status:
|
382
|
+
code: 204
|
383
|
+
message: No Content
|
384
|
+
headers:
|
385
|
+
Cache-Control:
|
386
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
387
|
+
Pragma:
|
388
|
+
- no-cache
|
389
|
+
Expires:
|
390
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
391
|
+
Date:
|
392
|
+
- Wed, 26 Feb 2014 02:15:46 GMT
|
393
|
+
Etag:
|
394
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/vyGp6PvFo4RvsFtPoIWeCReyIC8"'
|
395
|
+
Server:
|
396
|
+
- GSE
|
397
|
+
Alternate-Protocol:
|
398
|
+
- 443:quic
|
399
|
+
body:
|
400
|
+
encoding: UTF-8
|
401
|
+
string: ''
|
402
|
+
http_version:
|
403
|
+
recorded_at: Wed, 26 Feb 2014 02:15:46 GMT
|
404
|
+
recorded_with: VCR 2.8.0
|