mobylette 1.6.0 → 2.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 (73) hide show
  1. data/README.rdoc +35 -22
  2. data/Rakefile +0 -19
  3. data/lib/mobylette.rb +1 -4
  4. data/lib/mobylette/helmet.rb +0 -2
  5. data/lib/mobylette/railtie.rb +0 -6
  6. data/lib/mobylette/respond_to_mobile_requests.rb +135 -0
  7. data/lib/mobylette/version.rb +1 -1
  8. data/spec/controllers/application_controller_spec.rb +37 -0
  9. data/spec/dummy/app/controllers/application_controller.rb +0 -1
  10. data/spec/dummy/log/development.log +116 -0
  11. data/spec/dummy/log/test.log +21 -585
  12. data/spec/dummy/tmp/cache/assets/C82/3E0/sprockets%2F48eb4ac616538f8f36870451073315da +14 -0
  13. data/spec/dummy/tmp/cache/assets/CE4/1C0/sprockets%2F18d93e1533d585b2f64ec90b33176ac9 +0 -0
  14. data/spec/dummy/tmp/cache/assets/CED/A70/sprockets%2F621683d8791730a9cc7ce45e17a7e46d +0 -0
  15. data/spec/dummy/tmp/cache/assets/CFC/200/sprockets%2F716f89d85d4855706b8a9abec1969c62 +16 -0
  16. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  17. data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +16 -0
  18. data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +14 -0
  19. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  20. data/spec/lib/respond_to_mobile_requests_spec.rb +253 -0
  21. data/spec/spec_helper.rb +3 -0
  22. metadata +45 -107
  23. data/lib/mobylette/controllers/helpers.rb +0 -53
  24. data/lib/mobylette/controllers/respond_to_mobile_requests.rb +0 -125
  25. data/lib/mobylette/helmet/faker.rb +0 -19
  26. data/lib/mobylette/helmet/helpers.rb +0 -36
  27. data/spec/controllers/actioncontroller_base_spec.rb +0 -24
  28. data/spec/controllers/default_fallback_controller_spec.rb +0 -37
  29. data/spec/controllers/desktop_only_controller_spec.rb +0 -18
  30. data/spec/controllers/force_fallback_controller_spec.rb +0 -46
  31. data/spec/controllers/home_controller_spec.rb +0 -145
  32. data/spec/controllers/no_fallback_controller_spec.rb +0 -58
  33. data/spec/controllers/skip_xhr_request_controller_spec.rb +0 -19
  34. data/spec/dummy/app/controllers/default_fallback_controller.rb +0 -13
  35. data/spec/dummy/app/controllers/desktop_only_controller.rb +0 -2
  36. data/spec/dummy/app/controllers/fallbacks_controller.rb +0 -7
  37. data/spec/dummy/app/controllers/force_fallback_controller.rb +0 -13
  38. data/spec/dummy/app/controllers/home_controller.rb +0 -20
  39. data/spec/dummy/app/controllers/no_fallback_controller.rb +0 -13
  40. data/spec/dummy/app/controllers/skip_xhr_request_controller.rb +0 -7
  41. data/spec/dummy/app/controllers/testing_controller.rb +0 -9
  42. data/spec/dummy/app/views/default_fallback/index.html.erb +0 -1
  43. data/spec/dummy/app/views/default_fallback/index.js.erb +0 -1
  44. data/spec/dummy/app/views/default_fallback/index.mobile.erb +0 -1
  45. data/spec/dummy/app/views/default_fallback/test.html.erb +0 -1
  46. data/spec/dummy/app/views/default_fallback/test.js.erb +0 -1
  47. data/spec/dummy/app/views/fallbacks/index.html.erb +0 -2
  48. data/spec/dummy/app/views/fallbacks/index.js.erb +0 -1
  49. data/spec/dummy/app/views/fallbacks/index.mobile.erb +0 -0
  50. data/spec/dummy/app/views/fallbacks/index.xml.erb +0 -0
  51. data/spec/dummy/app/views/fallbacks/no_mobile.html.erb +0 -0
  52. data/spec/dummy/app/views/force_fallback/index.html.erb +0 -1
  53. data/spec/dummy/app/views/force_fallback/index.js.erb +0 -1
  54. data/spec/dummy/app/views/force_fallback/index.mobile.erb +0 -1
  55. data/spec/dummy/app/views/force_fallback/test.html.erb +0 -1
  56. data/spec/dummy/app/views/force_fallback/test.js.erb +0 -1
  57. data/spec/dummy/app/views/home/desktop.html.erb +0 -3
  58. data/spec/dummy/app/views/home/index.html.erb +0 -9
  59. data/spec/dummy/app/views/home/index.js.erb +0 -1
  60. data/spec/dummy/app/views/home/index.mobile.erb +0 -9
  61. data/spec/dummy/app/views/home/mobile.mobile.erb +0 -3
  62. data/spec/dummy/app/views/home/no_mobile_view.html.erb +0 -3
  63. data/spec/dummy/app/views/ignore_mobile_path/index.mobile.erb +0 -1
  64. data/spec/dummy/app/views/no_fallback/index.html.erb +0 -1
  65. data/spec/dummy/app/views/no_fallback/index.js.erb +0 -1
  66. data/spec/dummy/app/views/no_fallback/index.mobile.erb +0 -1
  67. data/spec/dummy/app/views/no_fallback/test.html.erb +0 -1
  68. data/spec/dummy/app/views/no_fallback/test.js.erb +0 -1
  69. data/spec/dummy/app/views/skip_xhr_request/index.html.erb +0 -9
  70. data/spec/dummy/app/views/skip_xhr_request/index.js.erb +0 -1
  71. data/spec/dummy/app/views/skip_xhr_request/index.mobile.erb +0 -9
  72. data/spec/dummy/app/views/view_path/index.mobile.erb +0 -1
  73. data/spec/helpers/mobylette_helpers_spec.rb +0 -59
@@ -1,622 +1,58 @@
1
1
  Processing by DefaultFallbackController#index as HTML
2
- Completed 200 OK in 140ms (Views: 138.8ms)
2
+ Completed 200 OK in 19ms (Views: 17.9ms)
3
3
  Processing by DefaultFallbackController#index as HTML
4
- Completed 200 OK in 3ms (Views: 3.2ms)
4
+ Completed 200 OK in 2ms (Views: 2.2ms)
5
5
  Processing by DefaultFallbackController#test as HTML
6
- Completed 200 OK in 3ms (Views: 2.5ms)
6
+ Completed 200 OK in 2ms (Views: 2.0ms)
7
7
  Processing by DefaultFallbackController#test as JS
8
- Completed 200 OK in 48ms (Views: 47.7ms)
8
+ Completed 200 OK in 8ms (Views: 7.4ms)
9
9
  Processing by ForceFallbackController#index as HTML
10
- Completed 200 OK in 7ms (Views: 6.4ms)
10
+ Completed 200 OK in 4ms (Views: 3.4ms)
11
11
  Processing by ForceFallbackController#index as HTML
12
- Completed 200 OK in 3ms (Views: 2.5ms)
12
+ Completed 200 OK in 2ms (Views: 1.8ms)
13
13
  Processing by ForceFallbackController#test as HTML
14
- Completed 200 OK in 2ms (Views: 1.9ms)
14
+ Completed 200 OK in 2ms (Views: 1.8ms)
15
15
  Processing by ForceFallbackController#test as HTML
16
16
  Completed 200 OK in 1ms (Views: 0.9ms)
17
17
  Processing by ForceFallbackController#test as JS
18
- Completed 200 OK in 1ms (Views: 0.9ms)
19
- Processing by HomeController#index as HTML
20
- Completed 200 OK in 7ms (Views: 6.1ms)
21
- Processing by HomeController#index as HTML
22
- Completed 200 OK in 2ms (Views: 1.8ms)
23
- Processing by HomeController#index as HTML
24
- Completed 200 OK in 3ms (Views: 3.1ms)
18
+ Completed 200 OK in 1ms (Views: 0.7ms)
25
19
  Processing by HomeController#index as HTML
26
- Completed 200 OK in 2ms (Views: 1.6ms)
27
- Processing by HomeController#index as HTML
28
- Completed 200 OK in 2ms (Views: 1.8ms)
20
+ Completed 200 OK in 4ms (Views: 3.4ms)
29
21
  Processing by HomeController#index as HTML
30
- Completed 200 OK in 2ms (Views: 1.6ms)
22
+ Completed 200 OK in 1ms (Views: 1.2ms)
31
23
  Processing by HomeController#index as HTML
32
- Completed 200 OK in 2ms (Views: 1.8ms)
24
+ Completed 200 OK in 2ms (Views: 2.2ms)
33
25
  Processing by HomeController#index as HTML
34
26
  Completed 200 OK in 2ms (Views: 1.5ms)
35
27
  Processing by HomeController#index as HTML
36
- Completed 200 OK in 2ms (Views: 1.8ms)
37
- Processing by HomeController#respond_to_test as HTML
38
- Completed 200 OK in 3ms (Views: 2.9ms)
39
- Processing by HomeController#respond_to_test as HTML
40
- Completed 200 OK in 3ms (Views: 2.6ms)
41
- Processing by HomeController#respond_to_test as MOBILE
42
- Completed 200 OK in 2ms (Views: 1.4ms)
43
- Processing by HomeController#index as JS
44
- Completed 200 OK in 51ms (Views: 51.1ms)
28
+ Completed 200 OK in 1ms (Views: 1.1ms)
45
29
  Processing by HomeController#index as HTML
46
- Completed 200 OK in 2ms (Views: 1.6ms)
30
+ Completed 200 OK in 1ms (Views: 1.0ms)
47
31
  Processing by HomeController#index as HTML
48
32
  Completed 200 OK in 2ms (Views: 1.8ms)
49
- Processing by NoFallbackController#index as HTML
50
- Completed 200 OK in 7ms (Views: 6.0ms)
51
- Processing by NoFallbackController#index as HTML
52
- Completed 200 OK in 3ms (Views: 2.5ms)
53
- Processing by NoFallbackController#test as HTML
54
- Completed 500 Internal Server Error in 2ms
55
- Processing by NoFallbackController#test as HTML
56
- Completed 500 Internal Server Error in 1ms
57
- Processing by NoFallbackController#test as HTML
58
- Completed 500 Internal Server Error in 1ms
59
- Processing by SkipXhrRequestController#index as JS
60
- Completed 200 OK in 8ms (Views: 7.8ms)
61
- Processing by DefaultFallbackController#index as HTML
62
- Completed 200 OK in 41ms (Views: 40.7ms)
63
- Processing by DefaultFallbackController#index as HTML
64
- Completed 200 OK in 3ms (Views: 3.1ms)
65
- Processing by DefaultFallbackController#test as HTML
66
- Completed 200 OK in 3ms (Views: 2.4ms)
67
- Processing by DefaultFallbackController#test as JS
68
- Completed 200 OK in 44ms (Views: 44.0ms)
69
- Processing by ForceFallbackController#index as HTML
70
- Completed 200 OK in 5ms (Views: 4.9ms)
71
- Processing by ForceFallbackController#index as HTML
72
- Completed 200 OK in 3ms (Views: 2.7ms)
73
- Processing by ForceFallbackController#test as HTML
74
- Completed 200 OK in 2ms (Views: 1.9ms)
75
- Processing by ForceFallbackController#test as HTML
76
- Completed 200 OK in 1ms (Views: 0.9ms)
77
- Processing by ForceFallbackController#test as JS
78
- Completed 200 OK in 1ms (Views: 0.8ms)
79
- Processing by HomeController#index as HTML
80
- Completed 200 OK in 6ms (Views: 5.6ms)
81
- Processing by HomeController#index as HTML
82
- Completed 200 OK in 2ms (Views: 1.9ms)
83
- Processing by HomeController#index as HTML
84
- Completed 200 OK in 3ms (Views: 2.9ms)
85
- Processing by HomeController#index as HTML
86
- Completed 200 OK in 2ms (Views: 1.4ms)
87
- Processing by HomeController#index as HTML
88
- Completed 200 OK in 2ms (Views: 1.5ms)
89
- Processing by HomeController#index as HTML
90
- Completed 200 OK in 2ms (Views: 1.5ms)
91
- Processing by HomeController#index as HTML
92
- Completed 200 OK in 2ms (Views: 1.5ms)
93
33
  Processing by HomeController#index as HTML
94
- Completed 200 OK in 2ms (Views: 1.4ms)
34
+ Completed 200 OK in 2ms (Views: 1.3ms)
95
35
  Processing by HomeController#index as HTML
96
- Completed 200 OK in 2ms (Views: 1.4ms)
97
- Processing by HomeController#respond_to_test as HTML
98
- Completed 200 OK in 3ms (Views: 2.4ms)
36
+ Completed 200 OK in 1ms (Views: 1.0ms)
99
37
  Processing by HomeController#respond_to_test as HTML
100
- Completed 200 OK in 3ms (Views: 2.5ms)
101
- Processing by HomeController#respond_to_test as MOBILE
102
- Completed 200 OK in 2ms (Views: 1.2ms)
103
- Processing by HomeController#index as JS
104
- Completed 200 OK in 7ms (Views: 6.4ms)
105
- Processing by HomeController#index as HTML
106
- Completed 200 OK in 2ms (Views: 1.5ms)
107
- Processing by HomeController#index as HTML
108
- Completed 200 OK in 2ms (Views: 1.7ms)
109
- Processing by HomeController#index as HTML
110
- Parameters: {"skip_mobile"=>"true"}
111
- Completed 200 OK in 2ms (Views: 1.4ms)
112
- Processing by NoFallbackController#index as HTML
113
- Completed 200 OK in 5ms (Views: 4.8ms)
114
- Processing by NoFallbackController#index as HTML
115
- Completed 200 OK in 3ms (Views: 2.5ms)
116
- Processing by NoFallbackController#test as HTML
117
- Completed 500 Internal Server Error in 2ms
118
- Processing by NoFallbackController#test as HTML
119
- Completed 500 Internal Server Error in 1ms
120
- Processing by NoFallbackController#test as HTML
121
- Completed 500 Internal Server Error in 1ms
122
- Processing by SkipXhrRequestController#index as JS
123
- Completed 200 OK in 6ms (Views: 5.6ms)
124
- Processing by DefaultFallbackController#index as HTML
125
- Completed 200 OK in 19ms (Views: 18.7ms)
126
- Processing by DefaultFallbackController#index as HTML
127
- Completed 200 OK in 3ms (Views: 3.2ms)
128
- Processing by DefaultFallbackController#test as HTML
129
- Completed 200 OK in 3ms (Views: 2.3ms)
130
- Processing by DefaultFallbackController#test as JS
131
- Completed 200 OK in 42ms (Views: 41.3ms)
132
- Processing by ForceFallbackController#index as HTML
133
- Completed 200 OK in 6ms (Views: 5.4ms)
134
- Processing by ForceFallbackController#index as HTML
135
- Completed 200 OK in 3ms (Views: 2.5ms)
136
- Processing by ForceFallbackController#test as HTML
137
- Completed 200 OK in 2ms (Views: 1.9ms)
138
- Processing by ForceFallbackController#test as HTML
139
- Completed 200 OK in 1ms (Views: 0.9ms)
140
- Processing by ForceFallbackController#test as JS
141
- Completed 200 OK in 2ms (Views: 2.1ms)
142
- Processing by HomeController#index as HTML
143
- Completed 200 OK in 6ms (Views: 5.3ms)
144
- Processing by HomeController#index as HTML
145
- Completed 200 OK in 2ms (Views: 1.4ms)
146
- Processing by HomeController#index as HTML
147
- Completed 200 OK in 3ms (Views: 3.1ms)
148
- Processing by HomeController#index as HTML
149
- Completed 200 OK in 2ms (Views: 1.5ms)
150
- Processing by HomeController#index as HTML
151
- Completed 200 OK in 2ms (Views: 1.4ms)
152
- Processing by HomeController#index as HTML
153
38
  Completed 200 OK in 2ms (Views: 1.7ms)
154
- Processing by HomeController#index as HTML
155
- Completed 200 OK in 2ms (Views: 1.5ms)
156
- Processing by HomeController#index as HTML
157
- Completed 200 OK in 2ms (Views: 1.4ms)
158
- Processing by HomeController#index as HTML
159
- Completed 200 OK in 2ms (Views: 1.6ms)
160
- Processing by HomeController#respond_to_test as HTML
161
- Completed 200 OK in 3ms (Views: 2.2ms)
162
39
  Processing by HomeController#respond_to_test as HTML
163
- Completed 200 OK in 3ms (Views: 2.8ms)
164
- Processing by HomeController#respond_to_test as MOBILE
165
- Completed 200 OK in 2ms (Views: 1.3ms)
166
- Processing by HomeController#index as JS
167
- Completed 200 OK in 6ms (Views: 5.7ms)
168
- Processing by HomeController#index as HTML
169
40
  Completed 200 OK in 2ms (Views: 1.7ms)
170
- Processing by HomeController#index as HTML
171
- Completed 200 OK in 2ms (Views: 1.4ms)
172
- Processing by HomeController#index as HTML
173
- Parameters: {"skip_mobile"=>"true"}
174
- Completed 200 OK in 2ms (Views: 1.4ms)
175
- Processing by NoFallbackController#index as HTML
176
- Completed 200 OK in 5ms (Views: 4.4ms)
177
- Processing by NoFallbackController#index as HTML
178
- Completed 200 OK in 3ms (Views: 2.5ms)
179
- Processing by NoFallbackController#test as HTML
180
- Completed 500 Internal Server Error in 2ms
181
- Processing by NoFallbackController#test as HTML
182
- Completed 500 Internal Server Error in 1ms
183
- Processing by NoFallbackController#test as HTML
184
- Completed 500 Internal Server Error in 1ms
185
- Processing by SkipXhrRequestController#index as JS
186
- Completed 200 OK in 5ms (Views: 4.8ms)
187
- Processing by DefaultFallbackController#index as HTML
188
- Completed 200 OK in 17ms (Views: 16.4ms)
189
- Processing by DefaultFallbackController#index as HTML
190
- Completed 200 OK in 3ms (Views: 3.1ms)
191
- Processing by DefaultFallbackController#test as HTML
192
- Completed 200 OK in 3ms (Views: 2.5ms)
193
- Processing by DefaultFallbackController#test as JS
194
- Completed 200 OK in 43ms (Views: 42.5ms)
195
- Processing by ForceFallbackController#index as HTML
196
- Completed 200 OK in 6ms (Views: 5.2ms)
197
- Processing by ForceFallbackController#index as HTML
198
- Completed 200 OK in 3ms (Views: 2.4ms)
199
- Processing by ForceFallbackController#test as HTML
200
- Completed 200 OK in 3ms (Views: 2.0ms)
201
- Processing by ForceFallbackController#test as HTML
202
- Completed 200 OK in 1ms (Views: 0.8ms)
203
- Processing by ForceFallbackController#test as JS
204
- Completed 200 OK in 1ms (Views: 0.9ms)
205
- Processing by HomeController#index as HTML
206
- Completed 200 OK in 5ms (Views: 4.6ms)
207
- Processing by HomeController#index as HTML
208
- Completed 200 OK in 2ms (Views: 2.1ms)
209
- Processing by HomeController#index as HTML
210
- Completed 200 OK in 3ms (Views: 3.1ms)
211
- Processing by HomeController#index as HTML
212
- Completed 200 OK in 2ms (Views: 1.6ms)
213
- Processing by HomeController#index as HTML
214
- Completed 200 OK in 3ms (Views: 2.4ms)
215
- Processing by HomeController#index as HTML
216
- Completed 200 OK in 2ms (Views: 1.6ms)
217
- Processing by HomeController#index as HTML
218
- Completed 200 OK in 2ms (Views: 1.5ms)
219
- Processing by HomeController#index as HTML
220
- Completed 200 OK in 2ms (Views: 1.5ms)
221
- Processing by HomeController#index as HTML
222
- Completed 200 OK in 2ms (Views: 1.5ms)
223
- Processing by HomeController#respond_to_test as HTML
224
- Completed 200 OK in 3ms (Views: 2.2ms)
225
- Processing by HomeController#respond_to_test as HTML
226
- Completed 200 OK in 3ms (Views: 2.6ms)
227
41
  Processing by HomeController#respond_to_test as MOBILE
228
- Completed 200 OK in 2ms (Views: 1.2ms)
229
- Processing by HomeController#index as JS
230
- Completed 200 OK in 6ms (Views: 5.9ms)
231
- Processing by HomeController#index as HTML
232
- Completed 200 OK in 2ms (Views: 1.5ms)
233
- Processing by HomeController#index as HTML
234
- Completed 200 OK in 2ms (Views: 1.5ms)
235
- Processing by HomeController#index as HTML
236
- Parameters: {"skip_mobile"=>"true"}
237
- Completed 200 OK in 2ms (Views: 1.5ms)
238
- Processing by NoFallbackController#index as HTML
239
- Completed 200 OK in 5ms (Views: 4.5ms)
240
- Processing by NoFallbackController#index as HTML
241
- Completed 200 OK in 3ms (Views: 2.7ms)
242
- Processing by NoFallbackController#test as HTML
243
- Completed 500 Internal Server Error in 2ms
244
- Processing by NoFallbackController#test as HTML
245
- Completed 500 Internal Server Error in 1ms
246
- Processing by NoFallbackController#test as HTML
247
- Completed 500 Internal Server Error in 1ms
248
- Processing by SkipXhrRequestController#index as JS
249
- Completed 200 OK in 5ms (Views: 4.7ms)
250
- Processing by DefaultFallbackController#index as HTML
251
- Completed 200 OK in 68ms (Views: 67.1ms)
252
- Processing by DefaultFallbackController#index as HTML
253
- Completed 200 OK in 4ms (Views: 3.9ms)
254
- Processing by DefaultFallbackController#test as HTML
255
- Completed 200 OK in 4ms (Views: 3.2ms)
256
- Processing by DefaultFallbackController#test as JS
257
- Completed 200 OK in 12ms (Views: 11.2ms)
258
- Processing by ForceFallbackController#index as HTML
259
- Completed 200 OK in 7ms (Views: 5.8ms)
260
- Processing by ForceFallbackController#index as HTML
261
- Completed 200 OK in 3ms (Views: 3.1ms)
262
- Processing by ForceFallbackController#test as HTML
263
- Completed 200 OK in 3ms (Views: 2.3ms)
264
- Processing by ForceFallbackController#test as HTML
265
- Completed 200 OK in 2ms (Views: 1.6ms)
266
- Processing by ForceFallbackController#test as JS
267
- Completed 200 OK in 2ms (Views: 1.1ms)
268
- Processing by HomeController#index as HTML
269
- Completed 200 OK in 6ms (Views: 5.6ms)
270
- Processing by HomeController#index as HTML
271
- Completed 200 OK in 2ms (Views: 2.0ms)
272
- Processing by HomeController#index as HTML
273
- Completed 200 OK in 4ms (Views: 3.7ms)
274
- Processing by HomeController#index as HTML
275
- Completed 200 OK in 2ms (Views: 2.0ms)
276
- Processing by HomeController#index as HTML
277
- Completed 200 OK in 2ms (Views: 2.0ms)
278
- Processing by HomeController#index as HTML
279
- Completed 200 OK in 2ms (Views: 2.1ms)
280
- Processing by HomeController#index as HTML
281
- Completed 200 OK in 2ms (Views: 2.0ms)
282
- Processing by HomeController#index as HTML
283
- Completed 200 OK in 2ms (Views: 2.0ms)
284
- Processing by HomeController#index as HTML
285
- Completed 200 OK in 3ms (Views: 2.2ms)
286
- Processing by HomeController#respond_to_test as HTML
287
- Completed 200 OK in 6ms (Views: 4.1ms)
288
- Processing by HomeController#respond_to_test as HTML
289
- Completed 200 OK in 4ms (Views: 3.7ms)
290
- Processing by HomeController#respond_to_test as MOBILE
291
- Completed 200 OK in 3ms (Views: 2.0ms)
292
- Processing by HomeController#index as JS
293
- Completed 200 OK in 9ms (Views: 8.9ms)
294
- Processing by HomeController#index as HTML
295
- Completed 200 OK in 3ms (Views: 2.6ms)
296
- Processing by HomeController#index as HTML
297
- Completed 200 OK in 3ms (Views: 2.4ms)
298
- Processing by HomeController#index as HTML
299
- Parameters: {"skip_mobile"=>"true"}
300
- Completed 200 OK in 3ms (Views: 2.7ms)
301
- Processing by NoFallbackController#index as HTML
302
- Completed 200 OK in 7ms (Views: 5.8ms)
303
- Processing by NoFallbackController#index as HTML
304
- Completed 200 OK in 4ms (Views: 3.3ms)
305
- Processing by NoFallbackController#test as HTML
306
- Completed 500 Internal Server Error in 4ms
307
- Processing by NoFallbackController#test as HTML
308
- Completed 500 Internal Server Error in 1ms
309
- Processing by NoFallbackController#test as HTML
310
- Completed 500 Internal Server Error in 1ms
311
- Processing by SkipXhrRequestController#index as JS
312
- Completed 200 OK in 8ms (Views: 7.4ms)
313
- Processing by DefaultFallbackController#index as HTML
314
- Completed 200 OK in 20ms (Views: 18.8ms)
315
- Processing by DefaultFallbackController#index as HTML
316
- Completed 200 OK in 5ms (Views: 4.2ms)
317
- Processing by DefaultFallbackController#test as HTML
318
- Completed 200 OK in 4ms (Views: 2.9ms)
319
- Processing by DefaultFallbackController#test as JS
320
- Completed 200 OK in 9ms (Views: 9.1ms)
321
- Processing by ForceFallbackController#index as HTML
322
- Completed 200 OK in 6ms (Views: 5.5ms)
323
- Processing by ForceFallbackController#index as HTML
324
- Completed 200 OK in 4ms (Views: 3.1ms)
325
- Processing by ForceFallbackController#test as HTML
326
- Completed 200 OK in 3ms (Views: 2.1ms)
327
- Processing by ForceFallbackController#test as HTML
328
- Completed 200 OK in 2ms (Views: 1.1ms)
329
- Processing by ForceFallbackController#test as JS
330
- Completed 200 OK in 2ms (Views: 1.2ms)
331
- Processing by HomeController#index as HTML
332
- Completed 200 OK in 6ms (Views: 5.6ms)
333
- Processing by HomeController#index as HTML
334
- Completed 200 OK in 2ms (Views: 2.0ms)
335
- Processing by HomeController#index as HTML
336
- Completed 200 OK in 4ms (Views: 3.7ms)
337
- Processing by HomeController#index as HTML
338
- Completed 200 OK in 3ms (Views: 2.3ms)
339
- Processing by HomeController#index as HTML
340
- Completed 200 OK in 2ms (Views: 2.0ms)
341
- Processing by HomeController#index as HTML
342
- Completed 200 OK in 3ms (Views: 2.4ms)
343
- Processing by HomeController#index as HTML
344
- Completed 200 OK in 2ms (Views: 2.0ms)
345
- Processing by HomeController#index as HTML
346
- Completed 200 OK in 2ms (Views: 2.0ms)
347
- Processing by HomeController#index as HTML
348
- Completed 200 OK in 2ms (Views: 2.0ms)
349
- Processing by HomeController#respond_to_test as HTML
350
- Completed 200 OK in 4ms (Views: 2.9ms)
351
- Processing by HomeController#respond_to_test as HTML
352
- Completed 200 OK in 4ms (Views: 3.6ms)
353
- Processing by HomeController#respond_to_test as MOBILE
354
- Completed 200 OK in 2ms (Views: 1.8ms)
355
- Processing by HomeController#index as JS
356
- Completed 200 OK in 6ms (Views: 5.7ms)
357
- Processing by HomeController#index as HTML
358
- Completed 200 OK in 2ms (Views: 2.1ms)
359
- Processing by HomeController#index as HTML
360
- Completed 200 OK in 2ms (Views: 2.1ms)
361
- Processing by HomeController#index as HTML
362
- Parameters: {"skip_mobile"=>"true"}
363
- Completed 200 OK in 2ms (Views: 2.1ms)
364
- Processing by NoFallbackController#index as HTML
365
- Completed 200 OK in 6ms (Views: 5.0ms)
366
- Processing by NoFallbackController#index as HTML
367
- Completed 200 OK in 3ms (Views: 3.1ms)
368
- Processing by NoFallbackController#test as HTML
369
- Completed 500 Internal Server Error in 2ms
370
- Processing by NoFallbackController#test as HTML
371
- Completed 500 Internal Server Error in 2ms
372
- Processing by NoFallbackController#test as HTML
373
- Completed 500 Internal Server Error in 1ms
374
- Processing by SkipXhrRequestController#index as JS
375
- Completed 200 OK in 7ms (Views: 6.1ms)
376
- Processing by DefaultFallbackController#index as HTML
377
- Completed 200 OK in 17ms (Views: 16.7ms)
378
- Processing by DefaultFallbackController#index as HTML
379
- Completed 200 OK in 4ms (Views: 3.3ms)
380
- Processing by DefaultFallbackController#test as HTML
381
- Completed 200 OK in 3ms (Views: 2.4ms)
382
- Processing by DefaultFallbackController#test as JS
383
- Completed 200 OK in 9ms (Views: 8.7ms)
384
- Processing by ForceFallbackController#index as HTML
385
- Completed 200 OK in 5ms (Views: 5.0ms)
386
- Processing by ForceFallbackController#index as HTML
387
- Completed 200 OK in 3ms (Views: 2.4ms)
388
- Processing by ForceFallbackController#test as HTML
389
- Completed 200 OK in 2ms (Views: 1.9ms)
390
- Processing by ForceFallbackController#test as HTML
391
42
  Completed 200 OK in 1ms (Views: 0.9ms)
392
- Processing by ForceFallbackController#test as JS
393
- Completed 200 OK in 1ms (Views: 0.8ms)
394
- Processing by HomeController#index as HTML
395
- Completed 200 OK in 5ms (Views: 4.6ms)
396
- Processing by HomeController#index as HTML
397
- Completed 200 OK in 2ms (Views: 1.4ms)
398
- Processing by HomeController#index as HTML
399
- Completed 200 OK in 3ms (Views: 3.1ms)
400
- Processing by HomeController#index as HTML
401
- Completed 200 OK in 2ms (Views: 1.4ms)
402
- Processing by HomeController#index as HTML
403
- Completed 200 OK in 2ms (Views: 1.4ms)
404
- Processing by HomeController#index as HTML
405
- Completed 200 OK in 2ms (Views: 1.5ms)
406
- Processing by HomeController#index as HTML
407
- Completed 200 OK in 2ms (Views: 1.4ms)
408
- Processing by HomeController#index as HTML
409
- Completed 200 OK in 2ms (Views: 1.4ms)
410
- Processing by HomeController#index as HTML
411
- Completed 200 OK in 2ms (Views: 1.4ms)
412
- Processing by HomeController#respond_to_test as HTML
413
- Completed 200 OK in 3ms (Views: 2.4ms)
414
- Processing by HomeController#respond_to_test as HTML
415
- Completed 200 OK in 3ms (Views: 2.4ms)
416
- Processing by HomeController#respond_to_test as MOBILE
417
- Completed 200 OK in 2ms (Views: 1.4ms)
418
- Processing by HomeController#index as JS
419
- Completed 200 OK in 6ms (Views: 6.1ms)
420
- Processing by HomeController#index as HTML
421
- Completed 200 OK in 2ms (Views: 1.5ms)
422
- Processing by HomeController#index as HTML
423
- Completed 200 OK in 2ms (Views: 1.7ms)
424
- Processing by HomeController#index as HTML
425
- Parameters: {"skip_mobile"=>"true"}
426
- Completed 200 OK in 2ms (Views: 1.4ms)
427
- Processing by NoFallbackController#index as HTML
428
- Completed 200 OK in 5ms (Views: 4.4ms)
429
- Processing by NoFallbackController#index as HTML
430
- Completed 200 OK in 3ms (Views: 2.4ms)
431
- Processing by NoFallbackController#test as HTML
432
- Completed 500 Internal Server Error in 2ms
433
- Processing by NoFallbackController#test as HTML
434
- Completed 500 Internal Server Error in 1ms
435
- Processing by NoFallbackController#test as HTML
436
- Completed 500 Internal Server Error in 1ms
437
- Processing by SkipXhrRequestController#index as JS
438
- Completed 200 OK in 7ms (Views: 5.9ms)
439
- Processing by DefaultFallbackController#index as HTML
440
- Completed 200 OK in 24ms (Views: 23.5ms)
441
- Processing by DefaultFallbackController#index as HTML
442
- Completed 200 OK in 3ms (Views: 3.2ms)
443
- Processing by DefaultFallbackController#test as HTML
444
- Completed 200 OK in 3ms (Views: 2.7ms)
445
- Processing by DefaultFallbackController#test as JS
446
- Completed 200 OK in 11ms (Views: 10.4ms)
447
- Processing by ForceFallbackController#index as HTML
448
- Completed 200 OK in 5ms (Views: 4.6ms)
449
- Processing by ForceFallbackController#index as HTML
450
- Completed 200 OK in 3ms (Views: 2.4ms)
451
- Processing by ForceFallbackController#test as HTML
452
- Completed 200 OK in 2ms (Views: 1.7ms)
453
- Processing by ForceFallbackController#test as HTML
454
- Completed 200 OK in 1ms (Views: 0.8ms)
455
- Processing by ForceFallbackController#test as JS
456
- Completed 200 OK in 1ms (Views: 0.8ms)
457
- Processing by HomeController#index as HTML
458
- Completed 200 OK in 6ms (Views: 5.3ms)
459
- Processing by HomeController#index as HTML
460
- Completed 200 OK in 2ms (Views: 1.4ms)
461
- Processing by HomeController#index as HTML
462
- Completed 200 OK in 3ms (Views: 3.0ms)
463
- Processing by HomeController#index as HTML
464
- Completed 200 OK in 2ms (Views: 1.7ms)
465
- Processing by HomeController#index as HTML
466
- Completed 200 OK in 2ms (Views: 1.4ms)
467
- Processing by HomeController#index as HTML
468
- Completed 200 OK in 2ms (Views: 1.5ms)
469
- Processing by HomeController#index as HTML
470
- Completed 200 OK in 2ms (Views: 1.4ms)
471
- Processing by HomeController#index as HTML
472
- Completed 200 OK in 2ms (Views: 1.5ms)
473
- Processing by HomeController#index as HTML
474
- Completed 200 OK in 2ms (Views: 1.4ms)
475
- Processing by HomeController#respond_to_test as HTML
476
- Completed 200 OK in 3ms (Views: 2.2ms)
477
- Processing by HomeController#respond_to_test as HTML
478
- Completed 200 OK in 3ms (Views: 2.6ms)
479
- Processing by HomeController#respond_to_test as MOBILE
480
- Completed 200 OK in 2ms (Views: 1.2ms)
481
43
  Processing by HomeController#index as JS
482
- Completed 200 OK in 5ms (Views: 5.1ms)
483
- Processing by HomeController#index as HTML
484
- Completed 200 OK in 2ms (Views: 1.6ms)
485
- Processing by HomeController#index as HTML
486
- Completed 200 OK in 2ms (Views: 1.6ms)
487
- Processing by HomeController#index as HTML
488
- Parameters: {"skip_mobile"=>"true"}
489
- Completed 200 OK in 2ms (Views: 1.4ms)
490
- Processing by NoFallbackController#index as HTML
491
- Completed 200 OK in 5ms (Views: 4.2ms)
492
- Processing by NoFallbackController#index as HTML
493
- Completed 200 OK in 3ms (Views: 2.3ms)
494
- Processing by NoFallbackController#test as HTML
495
- Completed 500 Internal Server Error in 2ms
496
- Processing by NoFallbackController#test as HTML
497
- Completed 500 Internal Server Error in 1ms
498
- Processing by NoFallbackController#test as HTML
499
- Completed 500 Internal Server Error in 1ms
500
- Processing by SkipXhrRequestController#index as JS
501
- Completed 200 OK in 5ms (Views: 4.9ms)
502
- Processing by DefaultFallbackController#index as HTML
503
- Completed 200 OK in 47ms (Views: 46.2ms)
504
- Processing by DefaultFallbackController#index as HTML
505
- Completed 200 OK in 3ms (Views: 3.1ms)
506
- Processing by DefaultFallbackController#test as HTML
507
- Completed 200 OK in 4ms (Views: 3.2ms)
508
- Processing by DefaultFallbackController#test as JS
509
- Completed 200 OK in 10ms (Views: 10.1ms)
510
- Processing by ForceFallbackController#index as HTML
511
- Completed 200 OK in 6ms (Views: 5.5ms)
512
- Processing by ForceFallbackController#index as HTML
513
- Completed 200 OK in 3ms (Views: 2.8ms)
514
- Processing by ForceFallbackController#test as HTML
515
- Completed 200 OK in 3ms (Views: 2.4ms)
516
- Processing by ForceFallbackController#test as HTML
517
- Completed 200 OK in 1ms (Views: 0.8ms)
518
- Processing by ForceFallbackController#test as JS
519
- Completed 200 OK in 1ms (Views: 0.8ms)
520
- Processing by HomeController#index as HTML
521
- Completed 200 OK in 6ms (Views: 5.0ms)
522
- Processing by HomeController#index as HTML
523
- Completed 200 OK in 2ms (Views: 1.5ms)
524
- Processing by HomeController#index as HTML
525
- Completed 200 OK in 4ms (Views: 3.4ms)
526
- Processing by HomeController#index as HTML
527
- Completed 200 OK in 2ms (Views: 1.4ms)
528
- Processing by HomeController#index as HTML
529
- Completed 200 OK in 2ms (Views: 1.5ms)
530
- Processing by HomeController#index as HTML
531
- Completed 200 OK in 2ms (Views: 1.5ms)
44
+ Completed 200 OK in 5ms (Views: 5.2ms)
532
45
  Processing by HomeController#index as HTML
533
- Completed 200 OK in 2ms (Views: 1.6ms)
534
- Processing by HomeController#index as HTML
535
- Completed 200 OK in 2ms (Views: 1.4ms)
536
- Processing by HomeController#index as HTML
537
- Completed 200 OK in 2ms (Views: 1.4ms)
538
- Processing by HomeController#respond_to_test as HTML
539
- Completed 200 OK in 3ms (Views: 2.6ms)
540
- Processing by HomeController#respond_to_test as HTML
541
- Completed 200 OK in 3ms (Views: 2.8ms)
542
- Processing by HomeController#respond_to_test as MOBILE
543
- Completed 200 OK in 2ms (Views: 1.3ms)
544
- Processing by HomeController#index as JS
545
- Completed 200 OK in 7ms (Views: 6.8ms)
546
- Processing by HomeController#index as HTML
547
- Completed 200 OK in 2ms (Views: 1.4ms)
548
- Processing by HomeController#index as HTML
549
- Completed 200 OK in 2ms (Views: 1.6ms)
550
- Processing by HomeController#index as HTML
551
- Parameters: {"skip_mobile"=>"true"}
552
- Completed 200 OK in 2ms (Views: 1.5ms)
553
- Processing by NoFallbackController#index as HTML
554
- Completed 200 OK in 5ms (Views: 4.7ms)
555
- Processing by NoFallbackController#index as HTML
556
- Completed 200 OK in 3ms (Views: 2.7ms)
557
- Processing by NoFallbackController#test as HTML
558
- Completed 500 Internal Server Error in 2ms
559
- Processing by NoFallbackController#test as HTML
560
- Completed 500 Internal Server Error in 1ms
561
- Processing by NoFallbackController#test as HTML
562
- Completed 500 Internal Server Error in 1ms
563
- Processing by SkipXhrRequestController#index as JS
564
- Completed 200 OK in 6ms (Views: 5.6ms)
565
- Processing by DefaultFallbackController#index as HTML
566
- Completed 200 OK in 18ms (Views: 17.1ms)
567
- Processing by DefaultFallbackController#index as HTML
568
- Completed 200 OK in 3ms (Views: 3.1ms)
569
- Processing by DefaultFallbackController#test as HTML
570
- Completed 200 OK in 3ms (Views: 2.3ms)
571
- Processing by DefaultFallbackController#test as JS
572
- Completed 200 OK in 42ms (Views: 41.7ms)
573
- Processing by ForceFallbackController#index as HTML
574
- Completed 200 OK in 5ms (Views: 4.8ms)
575
- Processing by ForceFallbackController#index as HTML
576
- Completed 200 OK in 3ms (Views: 2.4ms)
577
- Processing by ForceFallbackController#test as HTML
578
- Completed 200 OK in 2ms (Views: 1.7ms)
579
- Processing by ForceFallbackController#test as HTML
580
46
  Completed 200 OK in 1ms (Views: 1.1ms)
581
- Processing by ForceFallbackController#test as JS
582
- Completed 200 OK in 1ms (Views: 0.9ms)
583
- Processing by HomeController#index as HTML
584
- Completed 200 OK in 5ms (Views: 4.6ms)
585
- Processing by HomeController#index as HTML
586
- Completed 200 OK in 2ms (Views: 1.5ms)
587
- Processing by HomeController#index as HTML
588
- Completed 200 OK in 3ms (Views: 2.8ms)
589
- Processing by HomeController#index as HTML
590
- Completed 200 OK in 2ms (Views: 1.4ms)
591
47
  Processing by HomeController#index as HTML
592
- Completed 200 OK in 2ms (Views: 1.4ms)
593
- Processing by HomeController#index as HTML
594
- Completed 200 OK in 2ms (Views: 1.5ms)
595
- Processing by HomeController#index as HTML
596
- Completed 200 OK in 2ms (Views: 1.4ms)
597
- Processing by HomeController#index as HTML
598
- Completed 200 OK in 2ms (Views: 1.6ms)
599
- Processing by HomeController#index as HTML
600
- Completed 200 OK in 2ms (Views: 1.4ms)
601
- Processing by HomeController#respond_to_test as HTML
602
- Completed 200 OK in 3ms (Views: 2.3ms)
603
- Processing by HomeController#respond_to_test as HTML
604
- Completed 200 OK in 3ms (Views: 2.4ms)
605
- Processing by HomeController#respond_to_test as MOBILE
606
- Completed 200 OK in 2ms (Views: 1.3ms)
607
- Processing by HomeController#index as JS
608
- Completed 200 OK in 8ms (Views: 7.8ms)
609
- Processing by HomeController#index as HTML
610
- Completed 200 OK in 2ms (Views: 1.6ms)
611
- Processing by HomeController#index as HTML
612
- Completed 200 OK in 2ms (Views: 1.4ms)
48
+ Completed 200 OK in 1ms (Views: 1.1ms)
613
49
  Processing by HomeController#index as HTML
614
50
  Parameters: {"skip_mobile"=>"true"}
615
- Completed 200 OK in 2ms (Views: 1.4ms)
51
+ Completed 200 OK in 1ms (Views: 1.1ms)
616
52
  Processing by NoFallbackController#index as HTML
617
- Completed 200 OK in 6ms (Views: 4.9ms)
53
+ Completed 200 OK in 4ms (Views: 3.7ms)
618
54
  Processing by NoFallbackController#index as HTML
619
- Completed 200 OK in 3ms (Views: 2.4ms)
55
+ Completed 200 OK in 3ms (Views: 2.5ms)
620
56
  Processing by NoFallbackController#test as HTML
621
57
  Completed 500 Internal Server Error in 1ms
622
58
  Processing by NoFallbackController#test as HTML
@@ -624,4 +60,4 @@ Completed 500 Internal Server Error in 1ms
624
60
  Processing by NoFallbackController#test as HTML
625
61
  Completed 500 Internal Server Error in 1ms
626
62
  Processing by SkipXhrRequestController#index as JS
627
- Completed 200 OK in 5ms (Views: 4.8ms)
63
+ Completed 200 OK in 6ms (Views: 5.3ms)