typingpool 0.8.10 → 0.8.11

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 (79) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/bin/tp-assign +9 -5
  4. data/bin/tp-config +6 -6
  5. data/bin/tp-finish +1 -1
  6. data/bin/tp-make +9 -3
  7. data/lib/typingpool/amazon/hit/full/fromsearchhits.rb +2 -1
  8. data/lib/typingpool/amazon/hit/full.rb +3 -2
  9. data/lib/typingpool/amazon/hit.rb +19 -1
  10. data/lib/typingpool/amazon.rb +1 -2
  11. data/lib/typingpool/app/cli.rb +3 -3
  12. data/lib/typingpool/app/friendlyexceptions.rb +1 -1
  13. data/lib/typingpool/app.rb +24 -6
  14. data/lib/typingpool/config/root.rb +1 -0
  15. data/lib/typingpool/config.rb +6 -5
  16. data/lib/typingpool/filer/audio.rb +2 -2
  17. data/lib/typingpool/filer/dir.rb +1 -1
  18. data/lib/typingpool/filer.rb +1 -1
  19. data/lib/typingpool/project/local.rb +3 -3
  20. data/lib/typingpool/project/remote.rb +4 -3
  21. data/lib/typingpool/project.rb +2 -1
  22. data/lib/typingpool/template.rb +2 -2
  23. data/lib/typingpool/test/fixtures/amazon-question-url.txt +1 -1
  24. data/lib/typingpool/test/fixtures/config-2 +1 -1
  25. data/lib/typingpool/test/fixtures/test_amazon_hit_full_time.txt +1 -1
  26. data/lib/typingpool/test/fixtures/tp_assign_1_assignment.csv +6 -6
  27. data/lib/typingpool/test/fixtures/tp_assign_1_id.txt +1 -1
  28. data/lib/typingpool/test/fixtures/tp_assign_1_time.txt +1 -1
  29. data/lib/typingpool/test/fixtures/tp_assign_3_assignment.csv +6 -6
  30. data/lib/typingpool/test/fixtures/tp_assign_3_id.txt +1 -1
  31. data/lib/typingpool/test/fixtures/tp_assign_3_time.txt +1 -1
  32. data/lib/typingpool/test/fixtures/tp_assign_4_assignment.csv +6 -6
  33. data/lib/typingpool/test/fixtures/tp_assign_4_id.txt +1 -1
  34. data/lib/typingpool/test/fixtures/tp_assign_4_time.txt +1 -1
  35. data/lib/typingpool/test/fixtures/tp_assign_6_assignment.csv +6 -6
  36. data/lib/typingpool/test/fixtures/tp_assign_6_id.txt +1 -1
  37. data/lib/typingpool/test/fixtures/tp_assign_6_time.txt +1 -1
  38. data/lib/typingpool/test/fixtures/tp_finish_3_assignment.csv +6 -6
  39. data/lib/typingpool/test/fixtures/tp_finish_3_id.txt +1 -1
  40. data/lib/typingpool/test/fixtures/tp_finish_3_time.txt +1 -1
  41. data/lib/typingpool/test/fixtures/vcr/test_amazon_hit_base.yml +35 -29
  42. data/lib/typingpool/test/fixtures/vcr/test_amazon_hit_create.yml +52 -44
  43. data/lib/typingpool/test/fixtures/vcr/test_amazon_hit_full.yml +36 -30
  44. data/lib/typingpool/test/fixtures/vcr/test_amazon_hit_full_fromsearchhits.yml +69 -57
  45. data/lib/typingpool/test/fixtures/vcr/test_amazon_hit_retrievers.yml +94 -76
  46. data/lib/typingpool/test/fixtures/vcr/test_handles_hits_with_broken_external_question.yml +51 -53
  47. data/lib/typingpool/test/fixtures/vcr/tp_assign_1.yml +628 -628
  48. data/lib/typingpool/test/fixtures/vcr/tp_assign_2.yml +265 -3044
  49. data/lib/typingpool/test/fixtures/vcr/tp_assign_3.yml +629 -629
  50. data/lib/typingpool/test/fixtures/vcr/tp_assign_4.yml +65 -62
  51. data/lib/typingpool/test/fixtures/vcr/tp_assign_5.yml +623 -623
  52. data/lib/typingpool/test/fixtures/vcr/tp_assign_6.yml +592 -588
  53. data/lib/typingpool/test/fixtures/vcr/tp_assign_7.yml +195 -195
  54. data/lib/typingpool/test/fixtures/vcr/tp_finish_1.yml +91 -91
  55. data/lib/typingpool/test/fixtures/vcr/tp_finish_2.yml +76 -3989
  56. data/lib/typingpool/test/fixtures/vcr/tp_finish_3.yml +713 -695
  57. data/lib/typingpool/test/fixtures/vcr/tp_finish_4.yml +527 -3276
  58. data/lib/typingpool/test/fixtures/vcr/tp_finish_5.yml +338 -5602
  59. data/lib/typingpool/test/fixtures/vcr/tp_finish_6.yml +91 -91
  60. data/lib/typingpool/test/fixtures/vcr/tp_finish_7.yml +86 -3999
  61. data/lib/typingpool/test/fixtures/vcr/tp_finish_8.yml +51 -0
  62. data/lib/typingpool/test/script.rb +4 -6
  63. data/lib/typingpool/test.rb +3 -2
  64. data/lib/typingpool/utility.rb +6 -5
  65. data/lib/typingpool/version.rb +1 -1
  66. data/test/test_integration_script_1_tp_config.rb +12 -12
  67. data/test/test_integration_script_2_tp_make.rb +24 -8
  68. data/test/test_integration_script_3_tp_assign.rb +34 -19
  69. data/test/test_integration_script_4_tp_review.rb +1 -1
  70. data/test/test_integration_script_6_tp_finish.rb +5 -5
  71. data/test/test_unit_amazon.rb +12 -4
  72. data/test/test_unit_config.rb +2 -2
  73. data/test/test_unit_filer.rb +14 -14
  74. data/test/test_unit_project.rb +3 -3
  75. data/test/test_unit_project_local.rb +4 -4
  76. data/test/test_unit_project_remote.rb +1 -1
  77. data/test/test_unit_test.rb +2 -2
  78. data/typingpool.gemspec +3 -2
  79. metadata +24 -8
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: head
5
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.00.aee9aa3ad790410387d2d4a64663adba.VAKHPB.mp3
5
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.00.d0442ad830245bd75c44d9e0e34ff411.HHYSRL.mp3
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  base64_string: ''
@@ -17,25 +17,25 @@ http_interactions:
17
17
  message: Not Found
18
18
  headers:
19
19
  X-Amz-Request-Id:
20
- - 2B70C53214E3B41B
20
+ - BA9538806C206C7A
21
21
  X-Amz-Id-2:
22
- - 6LdSM1Prs3tPpiurG9Z4Vi7pLKxxyZzE5oZ3MCElCS7e199XIl/u7cN6PKt7Lp2A
22
+ - C2Rkbsebf5vuM439VYJrEPspwExPxmTb427+V2OWXU+unrGkBS/K+TqGQE4W9qtC7BFdSkbC1Nc=
23
23
  Content-Type:
24
24
  - application/xml
25
25
  Transfer-Encoding:
26
26
  - chunked
27
27
  Date:
28
- - Mon, 02 Sep 2013 20:31:11 GMT
28
+ - Sat, 31 Dec 2016 02:25:42 GMT
29
29
  Server:
30
30
  - AmazonS3
31
31
  body:
32
32
  encoding: UTF-8
33
33
  base64_string: ''
34
34
  http_version:
35
- recorded_at: Mon, 02 Sep 2013 20:31:11 GMT
35
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
36
36
  - request:
37
37
  method: head
38
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.22.aee9aa3ad790410387d2d4a64663adba.VTYHLY.mp3
38
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.22.d0442ad830245bd75c44d9e0e34ff411.AKFPCD.mp3
39
39
  body:
40
40
  encoding: US-ASCII
41
41
  base64_string: ''
@@ -50,25 +50,25 @@ http_interactions:
50
50
  message: Not Found
51
51
  headers:
52
52
  X-Amz-Request-Id:
53
- - B34FD6EBE356441F
53
+ - 7DBAEC22C6E264C2
54
54
  X-Amz-Id-2:
55
- - aXQCVPPyxssKHvytmDfakEgDFOFSymeK0NyrIZOIrTjIz4pPNYJQ/dMwKqBKScJf
55
+ - oXqB1QDOVRYKUfzULu60Ez5SuekvDQwf2J8PcA967JkJaJxh7AbAkKTGM/4ZAjvGkCAMNzGfBcs=
56
56
  Content-Type:
57
57
  - application/xml
58
58
  Transfer-Encoding:
59
59
  - chunked
60
60
  Date:
61
- - Mon, 02 Sep 2013 20:31:12 GMT
61
+ - Sat, 31 Dec 2016 02:25:43 GMT
62
62
  Server:
63
63
  - AmazonS3
64
64
  body:
65
65
  encoding: UTF-8
66
66
  base64_string: ''
67
67
  http_version:
68
- recorded_at: Mon, 02 Sep 2013 20:31:12 GMT
68
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
69
69
  - request:
70
70
  method: head
71
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.44.aee9aa3ad790410387d2d4a64663adba.UILLDG.mp3
71
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.44.d0442ad830245bd75c44d9e0e34ff411.GYAPWR.mp3
72
72
  body:
73
73
  encoding: US-ASCII
74
74
  base64_string: ''
@@ -83,25 +83,25 @@ http_interactions:
83
83
  message: Not Found
84
84
  headers:
85
85
  X-Amz-Request-Id:
86
- - B3993CE6C3E30B73
86
+ - 40FDE946305A8BD4
87
87
  X-Amz-Id-2:
88
- - 990XIX9+FVqv8xbdsJ+pRjSUHfEQCTOTQLnG8qf0bOjfhN1hHS7kwxmiCWxZ7uKN
88
+ - P/ochBOlU1+7g9QdYg144vnJ78lyBzX0A7Jsxjr656obfA4e1RRKJ/9S8cvpwI8snCApkSRlKEM=
89
89
  Content-Type:
90
90
  - application/xml
91
91
  Transfer-Encoding:
92
92
  - chunked
93
93
  Date:
94
- - Mon, 02 Sep 2013 20:31:12 GMT
94
+ - Sat, 31 Dec 2016 02:25:43 GMT
95
95
  Server:
96
96
  - AmazonS3
97
97
  body:
98
98
  encoding: UTF-8
99
99
  base64_string: ''
100
100
  http_version:
101
- recorded_at: Mon, 02 Sep 2013 20:31:13 GMT
101
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
102
102
  - request:
103
103
  method: head
104
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.06.aee9aa3ad790410387d2d4a64663adba.SPQQAB.mp3
104
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.06.d0442ad830245bd75c44d9e0e34ff411.LVJDYN.mp3
105
105
  body:
106
106
  encoding: US-ASCII
107
107
  base64_string: ''
@@ -116,25 +116,25 @@ http_interactions:
116
116
  message: Not Found
117
117
  headers:
118
118
  X-Amz-Request-Id:
119
- - EF2694FF703DC380
119
+ - 16246EE3D748EBB9
120
120
  X-Amz-Id-2:
121
- - +9yaBUh4B9sgBF2txnoiCZgv+9FAG/a7Vtcq4Oii7yqk96ryE93xeuiB/vipBO/v
121
+ - nVqAPqRmo/Ts+UdR9qZYifFXfa5IUrtk2QvSPbLzafgJARqxral2rZwFA1+rZPaoOzOIbq0xSaQ=
122
122
  Content-Type:
123
123
  - application/xml
124
124
  Transfer-Encoding:
125
125
  - chunked
126
126
  Date:
127
- - Mon, 02 Sep 2013 20:31:12 GMT
127
+ - Sat, 31 Dec 2016 02:25:43 GMT
128
128
  Server:
129
129
  - AmazonS3
130
130
  body:
131
131
  encoding: UTF-8
132
132
  base64_string: ''
133
133
  http_version:
134
- recorded_at: Mon, 02 Sep 2013 20:31:13 GMT
134
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
135
135
  - request:
136
136
  method: head
137
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.28.aee9aa3ad790410387d2d4a64663adba.XSDRLS.mp3
137
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.28.d0442ad830245bd75c44d9e0e34ff411.FKUDDG.mp3
138
138
  body:
139
139
  encoding: US-ASCII
140
140
  base64_string: ''
@@ -149,25 +149,25 @@ http_interactions:
149
149
  message: Not Found
150
150
  headers:
151
151
  X-Amz-Request-Id:
152
- - 6B583D4F33F1EEFC
152
+ - 3495BA0912095CD6
153
153
  X-Amz-Id-2:
154
- - +Dg1PDdJVA8tMt9tWDdVwctpRAm0gQCtK7TVcvoopyK/3OEu2bqZ3ozBW+Sr4yit
154
+ - d8h7MD2fKyu0KWZa+i7q67niAoiv2bsxaALHHlDhKsi/JPL3OWWJtGfX4krUJ0e7xGOgeGw9r/A=
155
155
  Content-Type:
156
156
  - application/xml
157
157
  Transfer-Encoding:
158
158
  - chunked
159
159
  Date:
160
- - Mon, 02 Sep 2013 20:31:13 GMT
160
+ - Sat, 31 Dec 2016 02:25:43 GMT
161
161
  Server:
162
162
  - AmazonS3
163
163
  body:
164
164
  encoding: UTF-8
165
165
  base64_string: ''
166
166
  http_version:
167
- recorded_at: Mon, 02 Sep 2013 20:31:14 GMT
167
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
168
168
  - request:
169
169
  method: head
170
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.50.aee9aa3ad790410387d2d4a64663adba.KNBOQL.mp3
170
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.50.d0442ad830245bd75c44d9e0e34ff411.DPRQYJ.mp3
171
171
  body:
172
172
  encoding: US-ASCII
173
173
  base64_string: ''
@@ -182,25 +182,25 @@ http_interactions:
182
182
  message: Not Found
183
183
  headers:
184
184
  X-Amz-Request-Id:
185
- - 4D0A8F96AD229C97
185
+ - 798EB699F5B90CBF
186
186
  X-Amz-Id-2:
187
- - 09R9LU9v7AROUZTcL53fie18SDQP2kkaP+VpyqjxLIqVDfKSZ+JNTJDHK7ka0V6m
187
+ - 95ayHZqvOU+sKzHX3fDPlFB7QFVL+IE/vEtzKZLz/UlXPvR0tEnTvgxm3iJKyVi9f7L/ST1IVrU=
188
188
  Content-Type:
189
189
  - application/xml
190
190
  Transfer-Encoding:
191
191
  - chunked
192
192
  Date:
193
- - Mon, 02 Sep 2013 20:31:14 GMT
193
+ - Sat, 31 Dec 2016 02:25:43 GMT
194
194
  Server:
195
195
  - AmazonS3
196
196
  body:
197
197
  encoding: UTF-8
198
198
  base64_string: ''
199
199
  http_version:
200
- recorded_at: Mon, 02 Sep 2013 20:31:14 GMT
200
+ recorded_at: Sat, 31 Dec 2016 02:25:43 GMT
201
201
  - request:
202
202
  method: put
203
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.00.aee9aa3ad790410387d2d4a64663adba.VAKHPB.mp3
203
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.00.d0442ad830245bd75c44d9e0e34ff411.HHYSRL.mp3
204
204
  body:
205
205
  encoding: UTF-8
206
206
  base64_string: |
@@ -208,18 +208,18 @@ http_interactions:
208
208
  headers:
209
209
  Content-Type:
210
210
  - ''
211
- Accept-Encoding:
212
- - ''
213
211
  Content-Length:
214
212
  - '532962'
215
213
  X-Amz-Acl:
216
214
  - public-read
217
215
  User-Agent:
218
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
216
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
219
217
  Date:
220
- - Mon, 02 Sep 2013 20:31:14 GMT
218
+ - Sat, 31 Dec 2016 02:25:43 GMT
221
219
  Authorization:
222
- - AWS <AWS_KEY>:ayAsRu7rSfMWNFCbGVbAKXet4AI=
220
+ - AWS <AWS_KEY>:wc1ItDt28URMQVE/8KzznEHXjs0=
221
+ Accept-Encoding:
222
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
223
223
  Accept:
224
224
  - '*/*'
225
225
  response:
@@ -228,11 +228,11 @@ http_interactions:
228
228
  message: OK
229
229
  headers:
230
230
  X-Amz-Id-2:
231
- - qanPqFYHx05HMdNCysV4eVjlsi6cKIotfFrOUiVMtT35GKFBB/9CVrLNI3ZVK5L3
231
+ - 4usisGjZ9/tOh8UanHGruvoche7RJhfaSYuHIksf6TPEG8qZbbn1rLITeCkrlJepk0Wsg8H5fUE=
232
232
  X-Amz-Request-Id:
233
- - 3BFAC9A4A0D51CD6
233
+ - 1864CDF3735AEE4F
234
234
  Date:
235
- - Mon, 02 Sep 2013 20:31:16 GMT
235
+ - Sat, 31 Dec 2016 02:25:45 GMT
236
236
  Etag:
237
237
  - '"f57d6553050f64280f63ebdd860d94e9"'
238
238
  Content-Length:
@@ -243,10 +243,10 @@ http_interactions:
243
243
  encoding: UTF-8
244
244
  base64_string: ''
245
245
  http_version:
246
- recorded_at: Mon, 02 Sep 2013 20:31:16 GMT
246
+ recorded_at: Sat, 31 Dec 2016 02:25:44 GMT
247
247
  - request:
248
248
  method: put
249
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.22.aee9aa3ad790410387d2d4a64663adba.VTYHLY.mp3
249
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.22.d0442ad830245bd75c44d9e0e34ff411.AKFPCD.mp3
250
250
  body:
251
251
  encoding: UTF-8
252
252
  base64_string: |
@@ -254,18 +254,18 @@ http_interactions:
254
254
  headers:
255
255
  Content-Type:
256
256
  - ''
257
- Accept-Encoding:
258
- - ''
259
257
  Content-Length:
260
258
  - '524811'
261
259
  X-Amz-Acl:
262
260
  - public-read
263
261
  User-Agent:
264
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
262
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
265
263
  Date:
266
- - Mon, 02 Sep 2013 20:31:16 GMT
264
+ - Sat, 31 Dec 2016 02:25:44 GMT
267
265
  Authorization:
268
- - AWS <AWS_KEY>:GcSLTF8peskcw2uDbOiKtqVbKXc=
266
+ - AWS <AWS_KEY>:mo5A5vW/puTUOC/96GS3KN1vR6w=
267
+ Accept-Encoding:
268
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
269
269
  Accept:
270
270
  - '*/*'
271
271
  response:
@@ -274,11 +274,11 @@ http_interactions:
274
274
  message: OK
275
275
  headers:
276
276
  X-Amz-Id-2:
277
- - eCGYeA0LhbQvnd4aDJodCide2YnIIdaz1VRJXeH+2YV5lj4qcvQyPLapwf0BCtPt
277
+ - s2ktBv3Z+Zov3ewFevzkQg/58XHiLEC0IALw0hT4o9d5SbAd8gng+AVsRzdg9S09Hw2FNNiQihw=
278
278
  X-Amz-Request-Id:
279
- - EA6EBDF2A2BD7511
279
+ - 373BA57133E5126A
280
280
  Date:
281
- - Mon, 02 Sep 2013 20:31:18 GMT
281
+ - Sat, 31 Dec 2016 02:25:46 GMT
282
282
  Etag:
283
283
  - '"28f8e8e11c4c39dce9903a8f29f472f6"'
284
284
  Content-Length:
@@ -289,10 +289,10 @@ http_interactions:
289
289
  encoding: UTF-8
290
290
  base64_string: ''
291
291
  http_version:
292
- recorded_at: Mon, 02 Sep 2013 20:31:18 GMT
292
+ recorded_at: Sat, 31 Dec 2016 02:25:45 GMT
293
293
  - request:
294
294
  method: put
295
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.44.aee9aa3ad790410387d2d4a64663adba.UILLDG.mp3
295
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.00.44.d0442ad830245bd75c44d9e0e34ff411.GYAPWR.mp3
296
296
  body:
297
297
  encoding: UTF-8
298
298
  base64_string: |
@@ -300,18 +300,18 @@ http_interactions:
300
300
  headers:
301
301
  Content-Type:
302
302
  - ''
303
- Accept-Encoding:
304
- - ''
305
303
  Content-Length:
306
304
  - '528606'
307
305
  X-Amz-Acl:
308
306
  - public-read
309
307
  User-Agent:
310
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
308
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
311
309
  Date:
312
- - Mon, 02 Sep 2013 20:31:18 GMT
310
+ - Sat, 31 Dec 2016 02:25:45 GMT
313
311
  Authorization:
314
- - AWS <AWS_KEY>:d18n9LOTCIBX5G8fW1JFMvqiQfc=
312
+ - AWS <AWS_KEY>:hF60+wc4tG8AyAZB4I2V0RS02Tg=
313
+ Accept-Encoding:
314
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
315
315
  Accept:
316
316
  - '*/*'
317
317
  response:
@@ -320,11 +320,11 @@ http_interactions:
320
320
  message: OK
321
321
  headers:
322
322
  X-Amz-Id-2:
323
- - R9GcCRKLCCL0ZpqSftgv5CvlGGg/KlwWQiQV/cz7iAkuvyanPRq8e/Emg90hBwwI
323
+ - L+g2SHsPf41zqzRoO7iftapW4TbqMfeDEg+Q/ElrqYFnPYYXCJJv0DBYZpTpb4h+UeOUar/EADQ=
324
324
  X-Amz-Request-Id:
325
- - B54C41B3F91D8DD2
325
+ - 0D3605CCF2786BDF
326
326
  Date:
327
- - Mon, 02 Sep 2013 20:31:20 GMT
327
+ - Sat, 31 Dec 2016 02:25:47 GMT
328
328
  Etag:
329
329
  - '"c9ed1df5dc439a330f2fbdd56ceb35bf"'
330
330
  Content-Length:
@@ -335,10 +335,10 @@ http_interactions:
335
335
  encoding: UTF-8
336
336
  base64_string: ''
337
337
  http_version:
338
- recorded_at: Mon, 02 Sep 2013 20:31:20 GMT
338
+ recorded_at: Sat, 31 Dec 2016 02:25:46 GMT
339
339
  - request:
340
340
  method: put
341
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.06.aee9aa3ad790410387d2d4a64663adba.SPQQAB.mp3
341
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.06.d0442ad830245bd75c44d9e0e34ff411.LVJDYN.mp3
342
342
  body:
343
343
  encoding: UTF-8
344
344
  base64_string: |
@@ -346,18 +346,18 @@ http_interactions:
346
346
  headers:
347
347
  Content-Type:
348
348
  - ''
349
- Accept-Encoding:
350
- - ''
351
349
  Content-Length:
352
350
  - '528574'
353
351
  X-Amz-Acl:
354
352
  - public-read
355
353
  User-Agent:
356
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
354
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
357
355
  Date:
358
- - Mon, 02 Sep 2013 20:31:20 GMT
356
+ - Sat, 31 Dec 2016 02:25:46 GMT
359
357
  Authorization:
360
- - AWS <AWS_KEY>:fOcMPKoTMPW39qqBw/6HbhtCqDU=
358
+ - AWS <AWS_KEY>:B59XcgfxpJJdgSvdUh7T3pIz7b0=
359
+ Accept-Encoding:
360
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
361
361
  Accept:
362
362
  - '*/*'
363
363
  response:
@@ -366,11 +366,11 @@ http_interactions:
366
366
  message: OK
367
367
  headers:
368
368
  X-Amz-Id-2:
369
- - 0CMwNH1InofHqrqTDAlVBkbOXrZvZWMJFudK8nhRMijbZf8u43+6DuyDsUj3srGK
369
+ - eXkoljYRE9Z6tQbcaWxO8SjbTaZ7BHjowPP5q5ZvOzn5ord9SzVqzQc/AftpkTFk9NsYePiGutU=
370
370
  X-Amz-Request-Id:
371
- - 0F4EBADF6B93698A
371
+ - 3C9AE3D99A11BD1B
372
372
  Date:
373
- - Mon, 02 Sep 2013 20:31:22 GMT
373
+ - Sat, 31 Dec 2016 02:25:48 GMT
374
374
  Etag:
375
375
  - '"aaefad08e1f9595ff1438f5ac076aac9"'
376
376
  Content-Length:
@@ -381,10 +381,10 @@ http_interactions:
381
381
  encoding: UTF-8
382
382
  base64_string: ''
383
383
  http_version:
384
- recorded_at: Mon, 02 Sep 2013 20:31:23 GMT
384
+ recorded_at: Sat, 31 Dec 2016 02:25:47 GMT
385
385
  - request:
386
386
  method: put
387
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.28.aee9aa3ad790410387d2d4a64663adba.XSDRLS.mp3
387
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.28.d0442ad830245bd75c44d9e0e34ff411.FKUDDG.mp3
388
388
  body:
389
389
  encoding: UTF-8
390
390
  base64_string: |
@@ -392,18 +392,18 @@ http_interactions:
392
392
  headers:
393
393
  Content-Type:
394
394
  - ''
395
- Accept-Encoding:
396
- - ''
397
395
  Content-Length:
398
396
  - '528573'
399
397
  X-Amz-Acl:
400
398
  - public-read
401
399
  User-Agent:
402
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
400
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
403
401
  Date:
404
- - Mon, 02 Sep 2013 20:31:23 GMT
402
+ - Sat, 31 Dec 2016 02:25:47 GMT
405
403
  Authorization:
406
- - AWS <AWS_KEY>:ETrFkYeBVYkPF1tvCUnwwqAsVvU=
404
+ - AWS <AWS_KEY>:uqY/KvLxKpztMjcVnRcA9WIItfw=
405
+ Accept-Encoding:
406
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
407
407
  Accept:
408
408
  - '*/*'
409
409
  response:
@@ -412,11 +412,11 @@ http_interactions:
412
412
  message: OK
413
413
  headers:
414
414
  X-Amz-Id-2:
415
- - Z6ww08yJ1x8LgA7jNNArUhq275orXwNt3+ge/YC9MmGFG1k+EAP7SgCFBZFh4EKP
415
+ - 7qTMvuQgG3Gi9zcOHVFN9no6kVkVvvhV8inBD8vGZ6Gne+CmGRCSVIOyhtIRL2/CICnAZALqeeM=
416
416
  X-Amz-Request-Id:
417
- - 7DBBAF1FBB4E01A8
417
+ - 2C9B91C11954E6D9
418
418
  Date:
419
- - Mon, 02 Sep 2013 20:31:24 GMT
419
+ - Sat, 31 Dec 2016 02:25:49 GMT
420
420
  Etag:
421
421
  - '"460cc52f6ccf14cc0ed782dcd3708cd6"'
422
422
  Content-Length:
@@ -427,10 +427,10 @@ http_interactions:
427
427
  encoding: UTF-8
428
428
  base64_string: ''
429
429
  http_version:
430
- recorded_at: Mon, 02 Sep 2013 20:31:24 GMT
430
+ recorded_at: Sat, 31 Dec 2016 02:25:48 GMT
431
431
  - request:
432
432
  method: put
433
- uri: https://typingpool-tokyo-test-ffa60-zzz.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.50.aee9aa3ad790410387d2d4a64663adba.KNBOQL.mp3
433
+ uri: https://typingpool-test-rtt-12302016.s3.amazonaws.com/Typingpool's%20Test%20&%20Interview.01.50.d0442ad830245bd75c44d9e0e34ff411.DPRQYJ.mp3
434
434
  body:
435
435
  encoding: UTF-8
436
436
  base64_string: |
@@ -438,18 +438,18 @@ http_interactions:
438
438
  headers:
439
439
  Content-Type:
440
440
  - ''
441
- Accept-Encoding:
442
- - ''
443
441
  Content-Length:
444
442
  - '241437'
445
443
  X-Amz-Acl:
446
444
  - public-read
447
445
  User-Agent:
448
- - aws-sdk-ruby/1.12.0 ruby/2.0.0 x86_64-darwin10.8.0
446
+ - aws-sdk-ruby/1.8.5 ruby/2.0.0 x86_64-darwin15.6.0
449
447
  Date:
450
- - Mon, 02 Sep 2013 20:31:24 GMT
448
+ - Sat, 31 Dec 2016 02:25:48 GMT
451
449
  Authorization:
452
- - AWS <AWS_KEY>:lBbtLRqwMYjk70AvVb6vu8Pb8Jw=
450
+ - AWS <AWS_KEY>:qanA+pjsNWIAX/ych2kzWSMCEIs=
451
+ Accept-Encoding:
452
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
453
453
  Accept:
454
454
  - '*/*'
455
455
  response:
@@ -458,11 +458,11 @@ http_interactions:
458
458
  message: OK
459
459
  headers:
460
460
  X-Amz-Id-2:
461
- - LK/HNb+VUMjVC5976PM1S9zsXdDabE+ztoEmwGjXWm6YiNG4zyU4+pfeu6wIIK75
461
+ - D0rWJUd1yuP8ekXXznEcgcIIXRV4oVULbX+HBvpoSItb14/vgjv59Nf4vrkYNENcm86WM4oVr8U=
462
462
  X-Amz-Request-Id:
463
- - 82E977E7A165AE94
463
+ - D06B086167DAC8F2
464
464
  Date:
465
- - Mon, 02 Sep 2013 20:31:26 GMT
465
+ - Sat, 31 Dec 2016 02:25:50 GMT
466
466
  Etag:
467
467
  - '"24d25572b526834e342a6d060f93c00a"'
468
468
  Content-Length:
@@ -473,5 +473,5 @@ http_interactions:
473
473
  encoding: UTF-8
474
474
  base64_string: ''
475
475
  http_version:
476
- recorded_at: Mon, 02 Sep 2013 20:31:26 GMT
477
- recorded_with: VCR 2.5.0
476
+ recorded_at: Sat, 31 Dec 2016 02:25:49 GMT
477
+ recorded_with: VCR 3.0.3