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,324 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables/users
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- |-
|
12
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
13
|
+
(gzip)
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip
|
16
|
+
Content-Type:
|
17
|
+
- ''
|
18
|
+
Authorization:
|
19
|
+
- Bearer ya29.1.AADtN_VLCBpX2YrwTF63vR_Q0_II4sz4627RdYT3yI9tJ610SG5upb9w3nuDCgRd
|
20
|
+
Cache-Control:
|
21
|
+
- no-store
|
22
|
+
Accept:
|
23
|
+
- '*/*'
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Expires:
|
30
|
+
- Thu, 27 Feb 2014 01:24:11 GMT
|
31
|
+
Date:
|
32
|
+
- Thu, 27 Feb 2014 01:24:11 GMT
|
33
|
+
Cache-Control:
|
34
|
+
- private, max-age=0, must-revalidate, no-transform
|
35
|
+
Etag:
|
36
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/IdV53Xe679mymjkVOyg5P3oquiY"'
|
37
|
+
Content-Type:
|
38
|
+
- application/json; charset=UTF-8
|
39
|
+
Content-Encoding:
|
40
|
+
- gzip
|
41
|
+
X-Content-Type-Options:
|
42
|
+
- nosniff
|
43
|
+
X-Frame-Options:
|
44
|
+
- SAMEORIGIN
|
45
|
+
X-Xss-Protection:
|
46
|
+
- 1; mode=block
|
47
|
+
Content-Length:
|
48
|
+
- '410'
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 443:quic
|
53
|
+
body:
|
54
|
+
encoding: ASCII-8BIT
|
55
|
+
string: !binary |-
|
56
|
+
H4sIAAAAAAAAAHWRUU+DMBSF3/kVpL7OVQbOsLct4oLBTRGNi5qlwh2rA4q0
|
57
|
+
c0Gz/25pMercXiA9937n3N5+GiZa0SJBAxO90PRtDVV9JMhLBqgjSyBI2pSe
|
58
|
+
0MzLAviYLUa3vZqx9eX8rm9l1viGP8ywn9yf2g/QP3PzOn9d3U/r9PTaZm9r
|
59
|
+
OntCyoeqAJLSDI5XVMCx454NKl5CPOfxEnLSXXOouOrlkC0CWqwaYilEyQcY
|
60
|
+
bzabbspYmgEpKe/GLMff0+L3Hi4r9gqx4PhvAk6IIByk/jsKq+tx/JOohBAW
|
61
|
+
UEERg8z9NEwTtab+ntEbykStu274naDLylUXdZRhbtX9dE+bsqCQJVyeHuVJ
|
62
|
+
SVIsSN6M0aytoxVRl0q5jUJ/MkaNuO3sIdR/P9OqOUuUGno3d37onR/2Iuk/
|
63
|
+
K38SeWMvPMxsgKZLsYtdBNNhdBiifJ7LBce72Gg6DbzhRIPy89xuMK6ACMqK
|
64
|
+
iGresl3b6TuW6zqOehuUES6uWELldpOdrp510rMt/e5tTjQcBR4ytsYXrVRx
|
65
|
+
UQ4DAAA=
|
66
|
+
http_version:
|
67
|
+
recorded_at: Thu, 27 Feb 2014 01:24:11 GMT
|
68
|
+
- request:
|
69
|
+
method: get
|
70
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
71
|
+
body:
|
72
|
+
encoding: UTF-8
|
73
|
+
string: ''
|
74
|
+
headers:
|
75
|
+
User-Agent:
|
76
|
+
- |-
|
77
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
78
|
+
(gzip)
|
79
|
+
Accept-Encoding:
|
80
|
+
- gzip
|
81
|
+
Content-Type:
|
82
|
+
- ''
|
83
|
+
Authorization:
|
84
|
+
- Bearer ya29.1.AADtN_VLCBpX2YrwTF63vR_Q0_II4sz4627RdYT3yI9tJ610SG5upb9w3nuDCgRd
|
85
|
+
Cache-Control:
|
86
|
+
- no-store
|
87
|
+
Accept:
|
88
|
+
- '*/*'
|
89
|
+
response:
|
90
|
+
status:
|
91
|
+
code: 200
|
92
|
+
message: OK
|
93
|
+
headers:
|
94
|
+
Expires:
|
95
|
+
- Thu, 27 Feb 2014 01:24:12 GMT
|
96
|
+
Date:
|
97
|
+
- Thu, 27 Feb 2014 01:24:12 GMT
|
98
|
+
Cache-Control:
|
99
|
+
- private, max-age=0, must-revalidate, no-transform
|
100
|
+
Etag:
|
101
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/2aWL2SDYHrjJV1-JNeZ3ICDweQ4"'
|
102
|
+
Content-Type:
|
103
|
+
- application/json; charset=UTF-8
|
104
|
+
Content-Encoding:
|
105
|
+
- gzip
|
106
|
+
X-Content-Type-Options:
|
107
|
+
- nosniff
|
108
|
+
X-Frame-Options:
|
109
|
+
- SAMEORIGIN
|
110
|
+
X-Xss-Protection:
|
111
|
+
- 1; mode=block
|
112
|
+
Content-Length:
|
113
|
+
- '253'
|
114
|
+
Server:
|
115
|
+
- GSE
|
116
|
+
Alternate-Protocol:
|
117
|
+
- 443:quic
|
118
|
+
body:
|
119
|
+
encoding: ASCII-8BIT
|
120
|
+
string: !binary |-
|
121
|
+
H4sIAAAAAAAAAHWPUU/CMBSF3/srmsurk2wSjbyBEN2ymCCiTCGkjMssFDbb
|
122
|
+
LmaQ/XfbbiY+6ENf+p1zvtwzobDnxw30Kax59lmirDqarQXGXGm4MBg1yyxe
|
123
|
+
QDIWMZ6S7XAaVHleRqvZtS/8+4maJ92AvcbBdJQ8yF304nvRI75dhXejL5z0
|
124
|
+
FuB23KoyS++E0rN5/5lt2kDuEMu4QG/PNXq925u+VAWmK5V+4IFdlgqlatOu
|
125
|
+
+YRblHhM0TSdgUIh8x2mOvxjrGlS2DDNFLaR34KfgNtucKO033XrrQprg+fB
|
126
|
+
MB5bUBO6dOfmmolQ48Ge7JOafAOGhO2jawEAAA==
|
127
|
+
http_version:
|
128
|
+
recorded_at: Thu, 27 Feb 2014 01:24:12 GMT
|
129
|
+
- request:
|
130
|
+
method: post
|
131
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/queries
|
132
|
+
body:
|
133
|
+
encoding: UTF-8
|
134
|
+
string: '{"query":"SELECT COUNT(*) FROM rspec_schema.users"}'
|
135
|
+
headers:
|
136
|
+
User-Agent:
|
137
|
+
- |-
|
138
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
139
|
+
(gzip)
|
140
|
+
Content-Type:
|
141
|
+
- application/json
|
142
|
+
Accept-Encoding:
|
143
|
+
- gzip
|
144
|
+
Authorization:
|
145
|
+
- Bearer ya29.1.AADtN_VLCBpX2YrwTF63vR_Q0_II4sz4627RdYT3yI9tJ610SG5upb9w3nuDCgRd
|
146
|
+
Cache-Control:
|
147
|
+
- no-store
|
148
|
+
Accept:
|
149
|
+
- '*/*'
|
150
|
+
response:
|
151
|
+
status:
|
152
|
+
code: 200
|
153
|
+
message: OK
|
154
|
+
headers:
|
155
|
+
Cache-Control:
|
156
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
157
|
+
Pragma:
|
158
|
+
- no-cache
|
159
|
+
Expires:
|
160
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
161
|
+
Date:
|
162
|
+
- Thu, 27 Feb 2014 01:24:14 GMT
|
163
|
+
Etag:
|
164
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/zsTTy_7vV-o8VtW2ZndZ6WUz6fw"'
|
165
|
+
Content-Type:
|
166
|
+
- application/json; charset=UTF-8
|
167
|
+
Content-Encoding:
|
168
|
+
- gzip
|
169
|
+
X-Content-Type-Options:
|
170
|
+
- nosniff
|
171
|
+
X-Frame-Options:
|
172
|
+
- SAMEORIGIN
|
173
|
+
X-Xss-Protection:
|
174
|
+
- 1; mode=block
|
175
|
+
Content-Length:
|
176
|
+
- '280'
|
177
|
+
Server:
|
178
|
+
- GSE
|
179
|
+
Alternate-Protocol:
|
180
|
+
- 443:quic
|
181
|
+
body:
|
182
|
+
encoding: ASCII-8BIT
|
183
|
+
string: !binary |-
|
184
|
+
H4sIAAAAAAAAAD2QXU+DMBSG7/kVTXcryRwmftyJIRsJmYp6YcxCChy2skKx
|
185
|
+
LRqy8N/tKeDNyXmfnq+3F4/QM29L+kBozo/fPahh5WIKupOtBnplS3RxgobZ
|
186
|
+
ootHCK04iFJb9WWVQxa2rAGcUq0zbEFkhs6heP8ebaN0wY0sHd5/JMljmEQU
|
187
|
+
8WjDwSMjbqtlnkIFCtoClp2dkjUUJnaXsiMX4J+5Af/m/tbNxabp0SbZp8jC
|
188
|
+
IDy9slo/yyCLN9Dv3nK/2QZ3dF5ipGEilb/og147l2pS6MqZotXicTZJ6M9U
|
189
|
+
7RSejDdjcvgfGQ4G9IuSBWgN7qA1nU09yaYTYNCTUT0gLZj92R03FlVMaPBG
|
190
|
+
7w9SycPhkwEAAA==
|
191
|
+
http_version:
|
192
|
+
recorded_at: Thu, 27 Feb 2014 01:24:15 GMT
|
193
|
+
- request:
|
194
|
+
method: post
|
195
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/queries
|
196
|
+
body:
|
197
|
+
encoding: UTF-8
|
198
|
+
string: '{"query":"SELECT rspec_schema.users.* FROM rspec_schema.users ORDER
|
199
|
+
BY rspec_schema.users.id ASC LIMIT 1"}'
|
200
|
+
headers:
|
201
|
+
User-Agent:
|
202
|
+
- |-
|
203
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
204
|
+
(gzip)
|
205
|
+
Content-Type:
|
206
|
+
- application/json
|
207
|
+
Accept-Encoding:
|
208
|
+
- gzip
|
209
|
+
Authorization:
|
210
|
+
- Bearer ya29.1.AADtN_VLCBpX2YrwTF63vR_Q0_II4sz4627RdYT3yI9tJ610SG5upb9w3nuDCgRd
|
211
|
+
Cache-Control:
|
212
|
+
- no-store
|
213
|
+
Accept:
|
214
|
+
- '*/*'
|
215
|
+
response:
|
216
|
+
status:
|
217
|
+
code: 200
|
218
|
+
message: OK
|
219
|
+
headers:
|
220
|
+
Cache-Control:
|
221
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
222
|
+
Pragma:
|
223
|
+
- no-cache
|
224
|
+
Expires:
|
225
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
226
|
+
Date:
|
227
|
+
- Thu, 27 Feb 2014 01:24:17 GMT
|
228
|
+
Etag:
|
229
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/8HbtZYtXV1fVZ6rVVSYuNAnI9RA"'
|
230
|
+
Content-Type:
|
231
|
+
- application/json; charset=UTF-8
|
232
|
+
Content-Encoding:
|
233
|
+
- gzip
|
234
|
+
X-Content-Type-Options:
|
235
|
+
- nosniff
|
236
|
+
X-Frame-Options:
|
237
|
+
- SAMEORIGIN
|
238
|
+
X-Xss-Protection:
|
239
|
+
- 1; mode=block
|
240
|
+
Content-Length:
|
241
|
+
- '374'
|
242
|
+
Server:
|
243
|
+
- GSE
|
244
|
+
Alternate-Protocol:
|
245
|
+
- 443:quic
|
246
|
+
body:
|
247
|
+
encoding: ASCII-8BIT
|
248
|
+
string: !binary |-
|
249
|
+
H4sIAAAAAAAAAK2TUW+CMBDH3/kUpHuVpKLR6BtuzJkRWFD3sMWYCgdWgTJa
|
250
|
+
Zozxu6+tumRuMzPZy9H7X+/X3L9lZ5hoTYsY9U20oOlbDdX2RscQeMkKDqgh
|
251
|
+
t/BoCTmRm3aGaaKEQhZzmb3KTEtSLEgOikJj1aEUsS21Mp6EI394UnMWa9Wf
|
252
|
+
ep4z8Fyk5H3jB5L+/hOLpN9QI3/iDt3wetYGaLoU57h7L3Am18Mon+ckpdE5
|
253
|
+
bhAEnuv4l4EyzAzNRSu2CCGBCooITvdUVmwFkRjFBwdoBtaaCrDava7mqqZD
|
254
|
+
US7m1HVa9uqOPOPaxZ066I67L8tF/uiSNjoeIpggWcg26u5RU7+M6pCpl6An
|
255
|
+
Q8npXRwnNdG7VIo6y3R6MOFLDU05VKaNm20L25bdMW27b7f6zZ5p4RbG6Le+
|
256
|
+
S8y/1VSUBqrF7HO+wVYAf6pYBJyDdgejo8O3LC8zEMpgUdWg1IjIX+OBCikl
|
257
|
+
JONg7I0PJIEaO1QDAAA=
|
258
|
+
http_version:
|
259
|
+
recorded_at: Thu, 27 Feb 2014 01:24:17 GMT
|
260
|
+
- request:
|
261
|
+
method: post
|
262
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/queries
|
263
|
+
body:
|
264
|
+
encoding: UTF-8
|
265
|
+
string: '{"query":"SELECT COUNT(*) FROM rspec_schema.users"}'
|
266
|
+
headers:
|
267
|
+
User-Agent:
|
268
|
+
- |-
|
269
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
270
|
+
(gzip)
|
271
|
+
Content-Type:
|
272
|
+
- application/json
|
273
|
+
Accept-Encoding:
|
274
|
+
- gzip
|
275
|
+
Authorization:
|
276
|
+
- Bearer ya29.1.AADtN_VLCBpX2YrwTF63vR_Q0_II4sz4627RdYT3yI9tJ610SG5upb9w3nuDCgRd
|
277
|
+
Cache-Control:
|
278
|
+
- no-store
|
279
|
+
Accept:
|
280
|
+
- '*/*'
|
281
|
+
response:
|
282
|
+
status:
|
283
|
+
code: 200
|
284
|
+
message: OK
|
285
|
+
headers:
|
286
|
+
Cache-Control:
|
287
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
288
|
+
Pragma:
|
289
|
+
- no-cache
|
290
|
+
Expires:
|
291
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
292
|
+
Date:
|
293
|
+
- Thu, 27 Feb 2014 01:24:19 GMT
|
294
|
+
Etag:
|
295
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/xugEyLOdUb1BuT2Qn31iw_8x-Og"'
|
296
|
+
Content-Type:
|
297
|
+
- application/json; charset=UTF-8
|
298
|
+
Content-Encoding:
|
299
|
+
- gzip
|
300
|
+
X-Content-Type-Options:
|
301
|
+
- nosniff
|
302
|
+
X-Frame-Options:
|
303
|
+
- SAMEORIGIN
|
304
|
+
X-Xss-Protection:
|
305
|
+
- 1; mode=block
|
306
|
+
Content-Length:
|
307
|
+
- '280'
|
308
|
+
Server:
|
309
|
+
- GSE
|
310
|
+
Alternate-Protocol:
|
311
|
+
- 443:quic
|
312
|
+
body:
|
313
|
+
encoding: ASCII-8BIT
|
314
|
+
string: !binary |-
|
315
|
+
H4sIAAAAAAAAAD2Qy2rDMBBF9/4KoW4bcGihj11TTBJwQlHTdhFCUOSxo/gh
|
316
|
+
V5JjTPC/VyPb3Qxzj+Z1dQsIzWWV0FdCTzL7bUB3dz4yMLWqDNB7V2LEGUru
|
317
|
+
im4BITSVUCTGqb1THjlY8RJwShoesQWR7WqP1ttdtIzYhEuVeLz9iuO3RRxR
|
318
|
+
xL0Lh4D0uO2iTgxS0FAJmHbWWl1A2LW/lGeygFkuLcweX578XGwaHl1yXLZx
|
319
|
+
Y+abMNu13ywXD/a5+oQrC+OfDR2XWGV5wVSLPujcu9SDQlfeFE0nj6NJQq9D
|
320
|
+
tVd4Mt6MyeF/5KKzYD60EmAM+INCOpp6V2VdgEVPVjeAVHD3sytpHUp5YSDo
|
321
|
+
gz/+HhtWkwEAAA==
|
322
|
+
http_version:
|
323
|
+
recorded_at: Thu, 27 Feb 2014 01:24:19 GMT
|
324
|
+
recorded_with: VCR 2.8.0
|
@@ -0,0 +1,154 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables
|
6
|
+
body:
|
7
|
+
encoding: UTF-8
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- |-
|
12
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
13
|
+
(gzip)
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip
|
16
|
+
Content-Type:
|
17
|
+
- ''
|
18
|
+
Authorization:
|
19
|
+
- Bearer ya29.1.AADtN_ViTfbu6PMN7-1C2OZcwHpkJvFq0jJS2V-P450HoNLxusEZObgpTxG-_mfg
|
20
|
+
Cache-Control:
|
21
|
+
- no-store
|
22
|
+
Accept:
|
23
|
+
- '*/*'
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Expires:
|
30
|
+
- Thu, 27 Feb 2014 01:30:34 GMT
|
31
|
+
Date:
|
32
|
+
- Thu, 27 Feb 2014 01:30:34 GMT
|
33
|
+
Cache-Control:
|
34
|
+
- private, max-age=0, must-revalidate, no-transform
|
35
|
+
Etag:
|
36
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/2aWL2SDYHrjJV1-JNeZ3ICDweQ4"'
|
37
|
+
Content-Type:
|
38
|
+
- application/json; charset=UTF-8
|
39
|
+
Content-Encoding:
|
40
|
+
- gzip
|
41
|
+
X-Content-Type-Options:
|
42
|
+
- nosniff
|
43
|
+
X-Frame-Options:
|
44
|
+
- SAMEORIGIN
|
45
|
+
X-Xss-Protection:
|
46
|
+
- 1; mode=block
|
47
|
+
Content-Length:
|
48
|
+
- '253'
|
49
|
+
Server:
|
50
|
+
- GSE
|
51
|
+
Alternate-Protocol:
|
52
|
+
- 443:quic
|
53
|
+
body:
|
54
|
+
encoding: ASCII-8BIT
|
55
|
+
string: !binary |-
|
56
|
+
H4sIAAAAAAAAAHWPUU/CMBSF3/srmsurk2wSjbyBEN2ymCCiTCGkjMssFDbb
|
57
|
+
LmaQ/XfbbiY+6ENf+p1zvtwzobDnxw30Kax59lmirDqarQXGXGm4MBg1yyxe
|
58
|
+
QDIWMZ6S7XAaVHleRqvZtS/8+4maJ92AvcbBdJQ8yF304nvRI75dhXejL5z0
|
59
|
+
FuB23KoyS++E0rN5/5lt2kDuEMu4QG/PNXq925u+VAWmK5V+4IFdlgqlatOu
|
60
|
+
+YRblHhM0TSdgUIh8x2mOvxjrGlS2DDNFLaR34KfgNtucKO033XrrQprg+fB
|
61
|
+
MB5bUBO6dOfmmolQ48Ge7JOafAOGhO2jawEAAA==
|
62
|
+
http_version:
|
63
|
+
recorded_at: Thu, 27 Feb 2014 01:30:34 GMT
|
64
|
+
- request:
|
65
|
+
method: delete
|
66
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema/tables/users
|
67
|
+
body:
|
68
|
+
encoding: UTF-8
|
69
|
+
string: ''
|
70
|
+
headers:
|
71
|
+
User-Agent:
|
72
|
+
- |-
|
73
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
74
|
+
(gzip)
|
75
|
+
Accept-Encoding:
|
76
|
+
- gzip
|
77
|
+
Content-Type:
|
78
|
+
- ''
|
79
|
+
Authorization:
|
80
|
+
- Bearer ya29.1.AADtN_ViTfbu6PMN7-1C2OZcwHpkJvFq0jJS2V-P450HoNLxusEZObgpTxG-_mfg
|
81
|
+
Cache-Control:
|
82
|
+
- no-store
|
83
|
+
Accept:
|
84
|
+
- '*/*'
|
85
|
+
response:
|
86
|
+
status:
|
87
|
+
code: 204
|
88
|
+
message: No Content
|
89
|
+
headers:
|
90
|
+
Cache-Control:
|
91
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
92
|
+
Pragma:
|
93
|
+
- no-cache
|
94
|
+
Expires:
|
95
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
96
|
+
Date:
|
97
|
+
- Thu, 27 Feb 2014 01:30:35 GMT
|
98
|
+
Etag:
|
99
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/vyGp6PvFo4RvsFtPoIWeCReyIC8"'
|
100
|
+
Server:
|
101
|
+
- GSE
|
102
|
+
Alternate-Protocol:
|
103
|
+
- 443:quic
|
104
|
+
body:
|
105
|
+
encoding: UTF-8
|
106
|
+
string: ''
|
107
|
+
http_version:
|
108
|
+
recorded_at: Thu, 27 Feb 2014 01:30:35 GMT
|
109
|
+
- request:
|
110
|
+
method: delete
|
111
|
+
uri: https://www.googleapis.com/bigquery/v2/projects/985884699512/datasets/rspec_schema
|
112
|
+
body:
|
113
|
+
encoding: UTF-8
|
114
|
+
string: ''
|
115
|
+
headers:
|
116
|
+
User-Agent:
|
117
|
+
- |-
|
118
|
+
google-api-ruby-client/0.7.1 Mac OS X/10.9
|
119
|
+
(gzip)
|
120
|
+
Accept-Encoding:
|
121
|
+
- gzip
|
122
|
+
Content-Type:
|
123
|
+
- ''
|
124
|
+
Authorization:
|
125
|
+
- Bearer ya29.1.AADtN_ViTfbu6PMN7-1C2OZcwHpkJvFq0jJS2V-P450HoNLxusEZObgpTxG-_mfg
|
126
|
+
Cache-Control:
|
127
|
+
- no-store
|
128
|
+
Accept:
|
129
|
+
- '*/*'
|
130
|
+
response:
|
131
|
+
status:
|
132
|
+
code: 204
|
133
|
+
message: No Content
|
134
|
+
headers:
|
135
|
+
Cache-Control:
|
136
|
+
- no-cache, no-store, max-age=0, must-revalidate
|
137
|
+
Pragma:
|
138
|
+
- no-cache
|
139
|
+
Expires:
|
140
|
+
- Fri, 01 Jan 1990 00:00:00 GMT
|
141
|
+
Date:
|
142
|
+
- Thu, 27 Feb 2014 01:30:36 GMT
|
143
|
+
Etag:
|
144
|
+
- '"YElLezYfBS2yoouJ_U61l1GQsXY/vyGp6PvFo4RvsFtPoIWeCReyIC8"'
|
145
|
+
Server:
|
146
|
+
- GSE
|
147
|
+
Alternate-Protocol:
|
148
|
+
- 443:quic
|
149
|
+
body:
|
150
|
+
encoding: UTF-8
|
151
|
+
string: ''
|
152
|
+
http_version:
|
153
|
+
recorded_at: Thu, 27 Feb 2014 01:30:36 GMT
|
154
|
+
recorded_with: VCR 2.8.0
|