mobile_version 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/README +0 -0
  4. data/README.rdoc +33 -0
  5. data/Rakefile +10 -0
  6. data/lib/mobile_version.rb +30 -0
  7. data/lib/mobile_version/.DS_Store +0 -0
  8. data/lib/mobile_version/controller.rb +24 -0
  9. data/lib/mobile_version/filters.rb +13 -0
  10. data/lib/mobile_version/missing_template_resolver.rb +16 -0
  11. data/lib/mobile_version/railtie.rb +10 -0
  12. data/lib/mobile_version/request.rb +13 -0
  13. data/lib/mobile_version/version.rb +3 -0
  14. data/mobile_version.gemspec +25 -0
  15. data/test/.DS_Store +0 -0
  16. data/test/dummy/.DS_Store +0 -0
  17. data/test/dummy/Rakefile +7 -0
  18. data/test/dummy/app/assets/javascripts/application.js +9 -0
  19. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  20. data/test/dummy/app/controllers/application_controller.rb +4 -0
  21. data/test/dummy/app/controllers/home_controller.rb +12 -0
  22. data/test/dummy/app/helpers/application_helper.rb +2 -0
  23. data/test/dummy/app/mailers/.gitkeep +0 -0
  24. data/test/dummy/app/models/.gitkeep +0 -0
  25. data/test/dummy/app/views/home/action_one.html.erb +1 -0
  26. data/test/dummy/app/views/home/action_one.mobilehtml.erb +1 -0
  27. data/test/dummy/app/views/home/action_two.html.erb +1 -0
  28. data/test/dummy/config.ru +4 -0
  29. data/test/dummy/config/.DS_Store +0 -0
  30. data/test/dummy/config/application.rb +41 -0
  31. data/test/dummy/config/boot.rb +10 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +7 -0
  34. data/test/dummy/config/environments/test.rb +42 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/inflections.rb +10 -0
  37. data/test/dummy/config/initializers/mime_types.rb +5 -0
  38. data/test/dummy/config/initializers/secret_token.rb +7 -0
  39. data/test/dummy/config/initializers/session_store.rb +8 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +6 -0
  43. data/test/dummy/db/test.sqlite3 +0 -0
  44. data/test/dummy/lib/assets/.gitkeep +0 -0
  45. data/test/dummy/log/.gitkeep +0 -0
  46. data/test/dummy/log/test.log +390 -0
  47. data/test/dummy/public/404.html +26 -0
  48. data/test/dummy/public/422.html +26 -0
  49. data/test/dummy/public/500.html +26 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/script/rails +6 -0
  52. data/test/mobile_version_test.rb +31 -0
  53. data/test/test_helper.rb +11 -0
  54. metadata +230 -0
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 't3345nwen3243top21odsdnwwn2352nwqwqwk25235a9s0b9dsb023u23443235n1n1nb21nnnn252529fbd9befbb9eb9eb090909bddfbfdbdfb090928wvwewefw'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters :format => [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,6 @@
1
+ Dummy::Application.routes.draw do
2
+
3
+ match "/action_one" => "home#action_one"
4
+ match "/action_two" => "home#action_two"
5
+
6
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,390 @@
1
+ Processing by HomeController#action_one as HTML
2
+ Completed 200 OK in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
3
+ Processing by HomeController#action_one as HTML
4
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
5
+
6
+ ***** Debugger requested, but was not available (ensure ruby-debug is listed in Gemfile/installed as gem): Start server with --debugger to enable *****
7
+ Processing by HomeController#action_one as HTML
8
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
9
+ Processing by HomeController#action_one as HTML
10
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
11
+ Processing by HomeController#action_one as HTML
12
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
13
+ Processing by HomeController#action_one as HTML
14
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
15
+ Processing by HomeController#action_one as HTML
16
+ Completed 500 Internal Server Error in 0ms
17
+ Processing by HomeController#action_one as HTML
18
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
19
+ Processing by HomeController#action_one as HTML
20
+ Completed 500 Internal Server Error in 0ms
21
+ Processing by HomeController#action_one as HTML
22
+ Completed 500 Internal Server Error in 48ms
23
+ Processing by HomeController#action_one as HTML
24
+ Completed 500 Internal Server Error in 48ms
25
+ Processing by HomeController#action_one as HTML
26
+ Completed 500 Internal Server Error in 0ms
27
+ Processing by HomeController#action_one as HTML
28
+ Completed 500 Internal Server Error in 0ms
29
+ Processing by HomeController#action_one as HTML
30
+ Completed 500 Internal Server Error in 0ms
31
+ Processing by HomeController#action_one as HTML
32
+ Completed 500 Internal Server Error in 0ms
33
+ Processing by HomeController#action_one as HTML
34
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
35
+ Processing by HomeController#action_one as HTML
36
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
37
+ Processing by HomeController#action_one as HTML
38
+ Completed 500 Internal Server Error in 0ms
39
+ Processing by HomeController#action_one as HTML
40
+ Completed 500 Internal Server Error in 1ms
41
+ Processing by HomeController#action_one as HTML
42
+ Completed 500 Internal Server Error in 1ms
43
+ Processing by HomeController#action_one as HTML
44
+ Completed 500 Internal Server Error in 37771ms
45
+ Processing by HomeController#action_one as HTML
46
+ Processing by HomeController#action_one as HTML
47
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
48
+ Processing by HomeController#action_two as HTML
49
+ Completed 500 Internal Server Error in 54ms
50
+ Processing by HomeController#action_one as HTML
51
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
52
+ Processing by HomeController#action_two as HTML
53
+ Completed 500 Internal Server Error in 10ms
54
+ Processing by HomeController#action_one as HTML
55
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
56
+ Processing by HomeController#action_two as HTML
57
+ Completed 500 Internal Server Error in 24693ms
58
+ Processing by HomeController#action_one as HTML
59
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
60
+ Processing by HomeController#action_two as HTML
61
+ Rendered home/action_two.html.erb (1.4ms)
62
+ Completed 200 OK in 1949ms (Views: 11.5ms | ActiveRecord: 0.0ms)
63
+ Processing by HomeController#action_one as HTML
64
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
65
+ Processing by HomeController#action_two as HTML
66
+ Completed 500 Internal Server Error in 7689ms
67
+ Processing by HomeController#action_one as HTML
68
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.0ms)
69
+ Processing by HomeController#action_two as HTML
70
+ Completed 500 Internal Server Error in 29125ms
71
+ Processing by HomeController#action_one as HTML
72
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
73
+ Processing by HomeController#action_two as HTML
74
+ Completed 500 Internal Server Error in 17095ms
75
+ Processing by HomeController#action_one as HTML
76
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
77
+ Processing by HomeController#action_two as HTML
78
+ Rendered home/action_two.html.erb (1.4ms)
79
+ Completed 200 OK in 9002ms (Views: 12.1ms | ActiveRecord: 0.0ms)
80
+ Processing by HomeController#action_one as HTML
81
+ Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
82
+ Processing by HomeController#action_two as HTML
83
+ Rendered home/action_two.html.erb (1.3ms)
84
+ Completed 200 OK in 1454ms (Views: 12.3ms | ActiveRecord: 0.0ms)
85
+ Processing by HomeController#action_one as HTML
86
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
87
+ Processing by HomeController#action_two as HTML
88
+ Rendered home/action_two.html.erb (1.1ms)
89
+ Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.0ms)
90
+ Processing by HomeController#action_one as HTML
91
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
92
+ Processing by HomeController#action_two as HTML
93
+ Rendered home/action_two.html.erb (0.9ms)
94
+ Completed 200 OK in 45ms (Views: 45.0ms | ActiveRecord: 0.0ms)
95
+ Processing by HomeController#action_one as HTML
96
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
97
+ Processing by HomeController#action_two as HTML
98
+ Rendered home/action_two.html.erb (1.0ms)
99
+ Completed 200 OK in 46ms (Views: 45.9ms | ActiveRecord: 0.0ms)
100
+ Processing by HomeController#action_one as HTML
101
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
102
+ Processing by HomeController#action_two as JSON
103
+ Rendered home/action_two.html.erb (1.0ms)
104
+ Completed 200 OK in 47ms (Views: 46.7ms | ActiveRecord: 0.0ms)
105
+ Processing by HomeController#action_one as HTML
106
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
107
+ Processing by HomeController#action_two as JSON
108
+ Rendered home/action_two.html.erb (1.0ms)
109
+ Completed 200 OK in 45ms (Views: 44.8ms | ActiveRecord: 0.0ms)
110
+ Processing by HomeController#action_one as HTML
111
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
112
+ Processing by HomeController#action_two as JSON
113
+ Completed 500 Internal Server Error in 46ms
114
+ Processing by HomeController#action_one as HTML
115
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
116
+ Processing by HomeController#action_two as JSON
117
+ Completed 500 Internal Server Error in 44ms
118
+ Processing by HomeController#action_one as HTML
119
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
120
+ Processing by HomeController#action_two as JSON
121
+ Completed 500 Internal Server Error in 45ms
122
+ Processing by HomeController#action_one as HTML
123
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
124
+ Processing by HomeController#action_two as HTML
125
+ Rendered home/action_two.html.erb (1.0ms)
126
+ Completed 200 OK in 45ms (Views: 44.8ms | ActiveRecord: 0.0ms)
127
+ Processing by HomeController#action_one as HTML
128
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
129
+ Processing by HomeController#action_two as HTML
130
+ Rendered home/action_two.html.erb (1.0ms)
131
+ Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms)
132
+ Processing by HomeController#action_one as HTML
133
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
134
+ Processing by HomeController#action_two as HTML
135
+ Rendered home/action_two.html.erb (1.0ms)
136
+ Completed 200 OK in 44ms (Views: 43.9ms | ActiveRecord: 0.0ms)
137
+ Processing by HomeController#action_one as HTML
138
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
139
+ Processing by HomeController#action_two as HTML
140
+ Rendered home/action_two.html.erb (0.9ms)
141
+ Completed 200 OK in 45ms (Views: 44.9ms | ActiveRecord: 0.0ms)
142
+ Processing by HomeController#action_one as HTML
143
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
144
+ Processing by HomeController#action_two as HTML
145
+ Rendered home/action_two.html.erb (0.9ms)
146
+ Completed 200 OK in 45ms (Views: 44.2ms | ActiveRecord: 0.0ms)
147
+ Processing by HomeController#action_one as HTML
148
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
149
+ Processing by HomeController#action_two as JSON
150
+ Completed 500 Internal Server Error in 45ms
151
+ Processing by HomeController#action_two as HTML
152
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
153
+ Processing by HomeController#action_one as HTML
154
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
155
+ Processing by HomeController#action_two as HTML
156
+ Rendered home/action_two.html.erb (1.2ms)
157
+ Completed 200 OK in 46ms (Views: 45.1ms | ActiveRecord: 0.0ms)
158
+ Processing by HomeController#action_two as JSON
159
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
160
+ Processing by HomeController#action_one as HTML
161
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
162
+ Processing by HomeController#action_two as HTML
163
+ Rendered home/action_two.html.erb (0.9ms)
164
+ Completed 200 OK in 46ms (Views: 45.4ms | ActiveRecord: 0.0ms)
165
+ Processing by HomeController#action_two as JSON
166
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
167
+ Processing by HomeController#action_one as HTML
168
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
169
+ Processing by HomeController#action_two as JSON
170
+ Completed 500 Internal Server Error in 54ms
171
+ Processing by HomeController#action_two as HTML
172
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
173
+ Processing by HomeController#action_one as HTML
174
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
175
+ Processing by HomeController#action_two as JSON
176
+ Completed 500 Internal Server Error in 45ms
177
+ Processing by HomeController#action_two as HTML
178
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
179
+ Processing by HomeController#action_one as HTML
180
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
181
+ Processing by HomeController#action_two as JSON
182
+ Completed 500 Internal Server Error in 45ms
183
+ Processing by HomeController#action_two as HTML
184
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
185
+ Processing by HomeController#action_one as HTML
186
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
187
+ Processing by HomeController#action_two as JSON
188
+ Completed 500 Internal Server Error in 44ms
189
+ Processing by HomeController#action_two as HTML
190
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
191
+ Processing by HomeController#action_one as HTML
192
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
193
+ Processing by HomeController#action_two as JSON
194
+ Completed 500 Internal Server Error in 45ms
195
+ Processing by HomeController#action_two as HTML
196
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
197
+ Processing by HomeController#action_one as HTML
198
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
199
+ Processing by HomeController#action_two as JSON
200
+ Completed 500 Internal Server Error in 44ms
201
+ Processing by HomeController#action_two as HTML
202
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
203
+ Processing by HomeController#action_one as HTML
204
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
205
+ Processing by HomeController#action_one as HTML
206
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
207
+ Processing by HomeController#action_two as JSON
208
+ Completed 500 Internal Server Error in 48ms
209
+ Processing by HomeController#action_two as HTML
210
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
211
+ Processing by HomeController#action_one as HTML
212
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
213
+ Processing by HomeController#action_one as HTML
214
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
215
+ Processing by HomeController#action_two as JSON
216
+ Completed 500 Internal Server Error in 48ms
217
+ Processing by HomeController#action_two as HTML
218
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
219
+ Processing by HomeController#action_one as HTML
220
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
221
+ Processing by HomeController#action_one as HTML
222
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
223
+ Processing by HomeController#action_two as JSON
224
+ Completed 500 Internal Server Error in 96ms
225
+ Processing by HomeController#action_two as HTML
226
+ Completed 500 Internal Server Error in 3ms
227
+ Processing by HomeController#action_one as HTML
228
+ Completed 200 OK in 21ms (Views: 21.0ms | ActiveRecord: 0.0ms)
229
+ Processing by HomeController#action_one as HTML
230
+ Completed 200 OK in 27ms (Views: 27.1ms | ActiveRecord: 0.0ms)
231
+ Processing by HomeController#action_two as JSON
232
+ Completed 500 Internal Server Error in 45ms
233
+ Processing by HomeController#action_two as HTML
234
+ Completed 500 Internal Server Error in 3ms
235
+ Processing by HomeController#action_one as HTML
236
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
237
+ Processing by HomeController#action_one as HTML
238
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
239
+ Processing by HomeController#action_two as JSON
240
+ Completed 500 Internal Server Error in 46ms
241
+ Processing by HomeController#action_two as HTML
242
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
243
+ Processing by HomeController#action_one as HTML
244
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
245
+ Processing by HomeController#action_one as HTML
246
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
247
+ Processing by HomeController#action_two as JSON
248
+ Completed 500 Internal Server Error in 44ms
249
+ Processing by HomeController#action_two as HTML
250
+ Completed 500 Internal Server Error in 3ms
251
+ Processing by HomeController#action_one as HTML
252
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
253
+ Processing by HomeController#action_one as HTML
254
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
255
+ Processing by HomeController#action_two as JSON
256
+ Completed 500 Internal Server Error in 43ms
257
+ Processing by HomeController#action_two as HTML
258
+ Completed 500 Internal Server Error in 2ms
259
+ Processing by HomeController#action_one as HTML
260
+ Completed 500 Internal Server Error in 2ms
261
+ Processing by HomeController#action_one as HTML
262
+ Completed 500 Internal Server Error in 1ms
263
+ Processing by HomeController#action_two as JSON
264
+ Completed 500 Internal Server Error in 42ms
265
+ Processing by HomeController#action_two as HTML
266
+ Completed 500 Internal Server Error in 2ms
267
+ Processing by HomeController#action_one as HTML
268
+ Completed 500 Internal Server Error in 2ms
269
+ Processing by HomeController#action_one as HTML
270
+ Completed 500 Internal Server Error in 1ms
271
+ Processing by HomeController#action_two as JSON
272
+ Completed 500 Internal Server Error in 43ms
273
+ Processing by HomeController#action_two as HTML
274
+ Completed 500 Internal Server Error in 2ms
275
+ Processing by HomeController#action_one as HTML
276
+ Completed 500 Internal Server Error in 2ms
277
+ Processing by HomeController#action_one as HTML
278
+ Completed 500 Internal Server Error in 1ms
279
+ Processing by HomeController#action_two as JSON
280
+ Completed 500 Internal Server Error in 43ms
281
+ Processing by HomeController#action_two as HTML
282
+ Completed 500 Internal Server Error in 2ms
283
+ Processing by HomeController#action_one as HTML
284
+ Completed 500 Internal Server Error in 2ms
285
+ Processing by HomeController#action_one as HTML
286
+ Completed 500 Internal Server Error in 1ms
287
+ Processing by HomeController#action_two as JSON
288
+ Completed 500 Internal Server Error in 43ms
289
+ Processing by HomeController#action_two as HTML
290
+ Completed 500 Internal Server Error in 2ms
291
+ Processing by HomeController#action_one as HTML
292
+ Completed 500 Internal Server Error in 2ms
293
+ Processing by HomeController#action_one as HTML
294
+ Completed 500 Internal Server Error in 2ms
295
+ Processing by HomeController#action_two as JSON
296
+ Completed 500 Internal Server Error in 11ms
297
+ Processing by HomeController#action_two as HTML
298
+ Completed 500 Internal Server Error in 2ms
299
+ Processing by HomeController#action_one as HTML
300
+ Completed 500 Internal Server Error in 2ms
301
+ Processing by HomeController#action_one as HTML
302
+ Completed 500 Internal Server Error in 1ms
303
+ Processing by HomeController#action_two as JSON
304
+ Completed 500 Internal Server Error in 52ms
305
+ Processing by HomeController#action_two as HTML
306
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
307
+ Processing by HomeController#action_one as HTML
308
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
309
+ Processing by HomeController#action_one as HTML
310
+ Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.0ms)
311
+ Processing by HomeController#action_two as JSON
312
+ Completed 500 Internal Server Error in 10ms
313
+ Processing by HomeController#action_two as HTML
314
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
315
+ Processing by HomeController#action_one as HTML
316
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
317
+ Processing by HomeController#action_one as HTML
318
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
319
+ Processing by HomeController#action_two as JSON
320
+ Completed 500 Internal Server Error in 54ms
321
+ Processing by HomeController#action_two as HTML
322
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
323
+ Processing by HomeController#action_one as HTML
324
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
325
+ Processing by HomeController#action_one as HTML
326
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
327
+ Processing by HomeController#action_two as JSON
328
+ Completed 500 Internal Server Error in 44ms
329
+ Processing by HomeController#action_two as HTML
330
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
331
+ Processing by HomeController#action_one as HTML
332
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
333
+ Processing by HomeController#action_one as HTML
334
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
335
+ Processing by HomeController#action_two as JSON
336
+ Completed 500 Internal Server Error in 44ms
337
+ Processing by HomeController#action_two as HTML
338
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
339
+ Processing by HomeController#action_one as HTML
340
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
341
+ Processing by HomeController#action_one as HTML
342
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
343
+ Processing by HomeController#action_two as JSON
344
+ Completed 500 Internal Server Error in 61ms
345
+ Processing by HomeController#action_two as HTML
346
+ Completed 500 Internal Server Error in 3ms
347
+ Processing by HomeController#action_one as HTML
348
+ Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms)
349
+ Processing by HomeController#action_one as HTML
350
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
351
+ Processing by HomeController#action_two as JSON
352
+ Completed 500 Internal Server Error in 44ms
353
+ Processing by HomeController#action_two as HTML
354
+ Completed 500 Internal Server Error in 3ms
355
+ Processing by HomeController#action_one as HTML
356
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
357
+ Processing by HomeController#action_one as HTML
358
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
359
+ Processing by HomeController#action_two as JSON
360
+ Completed 500 Internal Server Error in 46ms
361
+ Processing by HomeController#action_two as HTML
362
+ Completed 500 Internal Server Error in 5ms
363
+ Processing by HomeController#action_one as HTML
364
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
365
+ Processing by HomeController#action_one as HTML
366
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
367
+ Processing by HomeController#action_two as JSON
368
+ Completed 500 Internal Server Error in 43ms
369
+ Processing by HomeController#action_two as HTML
370
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
371
+ Processing by HomeController#action_one as HTML
372
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
373
+ Processing by HomeController#action_one as HTML
374
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
375
+ Processing by HomeController#action_two as JSON
376
+ Completed 500 Internal Server Error in 45ms
377
+ Processing by HomeController#action_two as HTML
378
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
379
+ Processing by HomeController#action_one as HTML
380
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
381
+ Processing by HomeController#action_one as HTML
382
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
383
+ Processing by HomeController#action_two as JSON
384
+ Completed 500 Internal Server Error in 46ms
385
+ Processing by HomeController#action_two as HTML
386
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
387
+ Processing by HomeController#action_one as HTML
388
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
389
+ Processing by HomeController#action_one as HTML
390
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)