mobylette 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +83 -0
  3. data/Rakefile +37 -0
  4. data/lib/mobylette.rb +12 -0
  5. data/lib/mobylette/controllers/helpers.rb +52 -0
  6. data/lib/mobylette/controllers/respond_to_mobile_requests.rb +86 -0
  7. data/lib/mobylette/helmet.rb +41 -0
  8. data/lib/mobylette/helmet/faker.rb +19 -0
  9. data/lib/mobylette/helmet/helpers.rb +34 -0
  10. data/lib/mobylette/railtie.rb +10 -0
  11. data/lib/mobylette/version.rb +3 -0
  12. data/lib/tasks/mobylette_tasks.rake +4 -0
  13. data/spec/controllers/actioncontroller_base_spec.rb +16 -0
  14. data/spec/controllers/default_fallback_controller_spec.rb +36 -0
  15. data/spec/controllers/desktop_only_controller_spec.rb +17 -0
  16. data/spec/controllers/force_fallback_controller_spec.rb +41 -0
  17. data/spec/controllers/home_controller_spec.rb +89 -0
  18. data/spec/controllers/no_fallback_controller_spec.rb +56 -0
  19. data/spec/dummy/Rakefile +7 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  21. data/spec/dummy/app/assets/javascripts/application_mobile.js +9 -0
  22. data/spec/dummy/app/assets/javascripts/default_fallback.js +2 -0
  23. data/spec/dummy/app/assets/javascripts/desktop_only.js +2 -0
  24. data/spec/dummy/app/assets/javascripts/fallbacks.js +2 -0
  25. data/spec/dummy/app/assets/javascripts/force_fallback.js +2 -0
  26. data/spec/dummy/app/assets/javascripts/home.js +2 -0
  27. data/spec/dummy/app/assets/javascripts/no_fallback.js +2 -0
  28. data/spec/dummy/app/assets/javascripts/testing.js +2 -0
  29. data/spec/dummy/app/assets/stylesheets/application.css +11 -0
  30. data/spec/dummy/app/assets/stylesheets/application_mobile.css +11 -0
  31. data/spec/dummy/app/assets/stylesheets/default_fallback.css +4 -0
  32. data/spec/dummy/app/assets/stylesheets/desktop_only.css +4 -0
  33. data/spec/dummy/app/assets/stylesheets/fallbacks.css +4 -0
  34. data/spec/dummy/app/assets/stylesheets/force_fallback.css +4 -0
  35. data/spec/dummy/app/assets/stylesheets/home.css +4 -0
  36. data/spec/dummy/app/assets/stylesheets/no_fallback.css +4 -0
  37. data/spec/dummy/app/assets/stylesheets/testing.css +4 -0
  38. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  39. data/spec/dummy/app/controllers/default_fallback_controller.rb +13 -0
  40. data/spec/dummy/app/controllers/desktop_only_controller.rb +2 -0
  41. data/spec/dummy/app/controllers/fallbacks_controller.rb +7 -0
  42. data/spec/dummy/app/controllers/force_fallback_controller.rb +13 -0
  43. data/spec/dummy/app/controllers/home_controller.rb +19 -0
  44. data/spec/dummy/app/controllers/no_fallback_controller.rb +13 -0
  45. data/spec/dummy/app/controllers/testing_controller.rb +9 -0
  46. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  47. data/spec/dummy/app/helpers/default_fallback_helper.rb +2 -0
  48. data/spec/dummy/app/helpers/desktop_only_helper.rb +2 -0
  49. data/spec/dummy/app/helpers/fallbacks_helper.rb +2 -0
  50. data/spec/dummy/app/helpers/force_fallback_helper.rb +2 -0
  51. data/spec/dummy/app/helpers/home_helper.rb +2 -0
  52. data/spec/dummy/app/helpers/no_fallback_helper.rb +2 -0
  53. data/spec/dummy/app/helpers/testing_helper.rb +2 -0
  54. data/spec/dummy/app/views/default_fallback/index.html.erb +1 -0
  55. data/spec/dummy/app/views/default_fallback/index.js.erb +1 -0
  56. data/spec/dummy/app/views/default_fallback/index.mobile.erb +1 -0
  57. data/spec/dummy/app/views/default_fallback/test.html.erb +1 -0
  58. data/spec/dummy/app/views/default_fallback/test.js.erb +1 -0
  59. data/spec/dummy/app/views/fallbacks/index.html.erb +2 -0
  60. data/spec/dummy/app/views/fallbacks/index.js.erb +1 -0
  61. data/spec/dummy/app/views/fallbacks/index.mobile.erb +0 -0
  62. data/spec/dummy/app/views/fallbacks/index.xml.erb +0 -0
  63. data/spec/dummy/app/views/fallbacks/no_mobile.html.erb +0 -0
  64. data/spec/dummy/app/views/force_fallback/index.html.erb +1 -0
  65. data/spec/dummy/app/views/force_fallback/index.js.erb +1 -0
  66. data/spec/dummy/app/views/force_fallback/index.mobile.erb +1 -0
  67. data/spec/dummy/app/views/force_fallback/test.html.erb +1 -0
  68. data/spec/dummy/app/views/force_fallback/test.js.erb +1 -0
  69. data/spec/dummy/app/views/home/desktop.html.erb +1 -0
  70. data/spec/dummy/app/views/home/index.html.erb +7 -0
  71. data/spec/dummy/app/views/home/index.mobile.erb +7 -0
  72. data/spec/dummy/app/views/home/mobile.mobile.erb +1 -0
  73. data/spec/dummy/app/views/home/no_mobile_view.html.erb +1 -0
  74. data/spec/dummy/app/views/layouts/application.html.erb +16 -0
  75. data/spec/dummy/app/views/layouts/application.mobile.erb +16 -0
  76. data/spec/dummy/app/views/no_fallback/index.html.erb +1 -0
  77. data/spec/dummy/app/views/no_fallback/index.js.erb +1 -0
  78. data/spec/dummy/app/views/no_fallback/index.mobile.erb +1 -0
  79. data/spec/dummy/app/views/no_fallback/test.html.erb +1 -0
  80. data/spec/dummy/app/views/no_fallback/test.js.erb +1 -0
  81. data/spec/dummy/config.ru +4 -0
  82. data/spec/dummy/config/application.rb +46 -0
  83. data/spec/dummy/config/boot.rb +10 -0
  84. data/spec/dummy/config/database.yml +25 -0
  85. data/spec/dummy/config/environment.rb +5 -0
  86. data/spec/dummy/config/environments/development.rb +33 -0
  87. data/spec/dummy/config/environments/production.rb +51 -0
  88. data/spec/dummy/config/environments/test.rb +42 -0
  89. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  90. data/spec/dummy/config/initializers/inflections.rb +10 -0
  91. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  92. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  93. data/spec/dummy/config/initializers/session_store.rb +8 -0
  94. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  95. data/spec/dummy/config/locales/en.yml +5 -0
  96. data/spec/dummy/config/routes.rb +22 -0
  97. data/spec/dummy/db/development.sqlite3 +0 -0
  98. data/spec/dummy/db/schema.rb +16 -0
  99. data/spec/dummy/db/test.sqlite3 +0 -0
  100. data/spec/dummy/log/development.log +32 -0
  101. data/spec/dummy/log/test.log +1537 -0
  102. data/spec/dummy/public/404.html +26 -0
  103. data/spec/dummy/public/422.html +26 -0
  104. data/spec/dummy/public/500.html +26 -0
  105. data/spec/dummy/public/favicon.ico +0 -0
  106. data/spec/dummy/script/rails +6 -0
  107. data/spec/dummy/tmp/cache/assets/C82/3E0/sprockets%2F48eb4ac616538f8f36870451073315da +0 -0
  108. data/spec/dummy/tmp/cache/assets/CE4/1C0/sprockets%2F18d93e1533d585b2f64ec90b33176ac9 +0 -0
  109. data/spec/dummy/tmp/cache/assets/CED/A70/sprockets%2F621683d8791730a9cc7ce45e17a7e46d +0 -0
  110. data/spec/dummy/tmp/cache/assets/CFC/200/sprockets%2F716f89d85d4855706b8a9abec1969c62 +0 -0
  111. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  112. data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  113. data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
  114. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  115. data/spec/dummy/tmp/pids/server.pid +1 -0
  116. data/spec/helpers/mobylette_helpers_spec.rb +59 -0
  117. data/spec/integration/navigation_spec.rb +9 -0
  118. data/spec/mobylette_spec.rb +7 -0
  119. data/spec/spec_helper.rb +35 -0
  120. metadata +320 -0
File without changes
@@ -0,0 +1,16 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 0) do
15
+
16
+ end
@@ -0,0 +1,32 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2011-09-03 15:16:07 -0300
4
+ Processing by HomeController#index as HTML
5
+ Rendered home/index.html.erb within layouts/application (17.8ms)
6
+ Compiled application.css (0ms) (pid 16702)
7
+ Compiled application.js (0ms) (pid 16702)
8
+ Completed 200 OK in 112ms (Views: 111.0ms | ActiveRecord: 0.0ms)
9
+
10
+
11
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-03 15:16:08 -0300
12
+ Served asset /application.css - 200 OK (3ms)
13
+
14
+
15
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-03 15:16:08 -0300
16
+ Served asset /application.js - 200 OK (3ms)
17
+
18
+
19
+ Started GET "/home.mobile" for 127.0.0.1 at 2011-09-03 15:16:35 -0300
20
+ Processing by HomeController#index as MOBILE
21
+ Rendered home/index.mobile.erb within layouts/application (0.5ms)
22
+ Compiled application_mobile.css (0ms) (pid 16702)
23
+ Compiled application_mobile.js (0ms) (pid 16702)
24
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms)
25
+
26
+
27
+ Started GET "/assets/application_mobile.css?body=1" for 127.0.0.1 at 2011-09-03 15:16:36 -0300
28
+ Served asset /application_mobile.css - 200 OK (4ms)
29
+
30
+
31
+ Started GET "/assets/application_mobile.js?body=1" for 127.0.0.1 at 2011-09-03 15:16:36 -0300
32
+ Served asset /application_mobile.js - 200 OK (3ms)
@@ -0,0 +1,1537 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.2ms) select sqlite_version(*)
6
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
7
+ Processing by HomeController#index as HTML
8
+ Completed 500 Internal Server Error in 126ms
9
+ Processing by HomeController#index as HTML
10
+ Completed 500 Internal Server Error in 56ms
11
+ Processing by HomeController#index as HTML
12
+ Completed 500 Internal Server Error in 18ms
13
+ Processing by HomeController#index as HTML
14
+ Completed 500 Internal Server Error in 18ms
15
+ Processing by HomeController#index as HTML
16
+ Completed 500 Internal Server Error in 16ms
17
+ Processing by HomeController#respond_to_test as HTML
18
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
19
+ Processing by HomeController#respond_to_test as HTML
20
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
21
+ Processing by HomeController#respond_to_test as MOBILE
22
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
23
+ Processing by HomeController#no_mobile_view as MOBILE
24
+ Completed 500 Internal Server Error in 2ms
25
+ Processing by HomeController#index as HTML
26
+ Completed 500 Internal Server Error in 17ms
27
+ Processing by HomeController#index as HTML
28
+ Completed 500 Internal Server Error in 17ms
29
+ Processing by HomeController#index as HTML
30
+ Completed 500 Internal Server Error in 16ms
31
+ Processing by HomeController#index as HTML
32
+ Completed 500 Internal Server Error in 17ms
33
+ Processing by HomeController#index as HTML
34
+ Completed 200 OK in 76ms (Views: 75.2ms | ActiveRecord: 0.0ms)
35
+ Processing by HomeController#index as HTML
36
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
37
+ Processing by HomeController#index as HTML
38
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
39
+ Processing by HomeController#index as HTML
40
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
41
+ Processing by HomeController#index as HTML
42
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
43
+ Processing by HomeController#respond_to_test as HTML
44
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
45
+ Processing by HomeController#respond_to_test as HTML
46
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
47
+ Processing by HomeController#respond_to_test as MOBILE
48
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
49
+ Processing by HomeController#no_mobile_view as MOBILE
50
+ Completed 500 Internal Server Error in 36ms
51
+ Processing by HomeController#index as HTML
52
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
53
+ Processing by HomeController#index as HTML
54
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
55
+ Processing by HomeController#index as HTML
56
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
57
+ Processing by HomeController#index as HTML
58
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
59
+ Processing by HomeController#index as HTML
60
+ Completed 200 OK in 77ms (Views: 76.2ms | ActiveRecord: 0.0ms)
61
+ Processing by HomeController#index as HTML
62
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
63
+ Processing by HomeController#index as HTML
64
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
65
+ Processing by HomeController#index as HTML
66
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
67
+ Processing by HomeController#index as HTML
68
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
69
+ Processing by HomeController#respond_to_test as HTML
70
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
71
+ Processing by HomeController#respond_to_test as HTML
72
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
73
+ Processing by HomeController#respond_to_test as MOBILE
74
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
75
+ Processing by HomeController#no_mobile_view as MOBILE
76
+ Completed 500 Internal Server Error in 35ms
77
+ Processing by HomeController#index as HTML
78
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
79
+ Processing by HomeController#index as HTML
80
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
81
+ Processing by HomeController#index as HTML
82
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
83
+ Processing by HomeController#index as HTML
84
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
85
+ Processing by HomeController#index as HTML
86
+ Completed 200 OK in 105ms (Views: 103.9ms | ActiveRecord: 0.0ms)
87
+ Processing by HomeController#index as HTML
88
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
89
+ Processing by HomeController#index as HTML
90
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
91
+ Processing by HomeController#index as HTML
92
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
93
+ Processing by HomeController#index as HTML
94
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
95
+ Processing by HomeController#respond_to_test as HTML
96
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
97
+ Processing by HomeController#respond_to_test as HTML
98
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
99
+ Processing by HomeController#respond_to_test as MOBILE
100
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
101
+ Processing by HomeController#no_mobile_view as MOBILE
102
+ Completed 500 Internal Server Error in 32ms
103
+ Processing by HomeController#index as HTML
104
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
105
+ Processing by HomeController#index as HTML
106
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
107
+ Processing by HomeController#index as HTML
108
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
109
+ Processing by HomeController#index as HTML
110
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
111
+ Processing by HomeController#index as HTML
112
+ Completed 200 OK in 101ms (Views: 100.7ms | ActiveRecord: 0.0ms)
113
+ Processing by HomeController#index as HTML
114
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
115
+ Processing by HomeController#index as HTML
116
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
117
+ Processing by HomeController#index as HTML
118
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
119
+ Processing by HomeController#index as HTML
120
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
121
+ Processing by HomeController#respond_to_test as HTML
122
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
123
+ Processing by HomeController#respond_to_test as HTML
124
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
125
+ Processing by HomeController#respond_to_test as MOBILE
126
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
127
+ Processing by HomeController#no_mobile_view as MOBILE
128
+ Completed 500 Internal Server Error in 32ms
129
+ Processing by HomeController#index as HTML
130
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
131
+ Processing by HomeController#index as HTML
132
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
133
+ Processing by HomeController#index as HTML
134
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
135
+ Processing by HomeController#index as HTML
136
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
137
+ Processing by HomeController#index as HTML
138
+ Completed 200 OK in 105ms (Views: 104.4ms | ActiveRecord: 0.0ms)
139
+ Processing by HomeController#index as HTML
140
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
141
+ Processing by HomeController#index as HTML
142
+ Completed 500 Internal Server Error in 48ms
143
+ Processing by HomeController#index as HTML
144
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
145
+ Processing by HomeController#index as HTML
146
+ Completed 500 Internal Server Error in 16ms
147
+ Processing by HomeController#respond_to_test as HTML
148
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
149
+ Processing by HomeController#respond_to_test as HTML
150
+ Completed 500 Internal Server Error in 53ms
151
+ Processing by HomeController#respond_to_test as MOBILE
152
+ Completed 500 Internal Server Error in 15ms
153
+ Processing by HomeController#no_mobile_view as MOBILE
154
+ Completed 500 Internal Server Error in 2ms
155
+ Processing by HomeController#index as HTML
156
+ Completed 500 Internal Server Error in 15ms
157
+ Processing by HomeController#index as HTML
158
+ Completed 500 Internal Server Error in 16ms
159
+ Processing by HomeController#index as HTML
160
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
161
+ Processing by HomeController#index as HTML
162
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
163
+ Processing by HomeController#index as HTML
164
+ Completed 200 OK in 104ms (Views: 103.7ms | ActiveRecord: 0.0ms)
165
+ Processing by HomeController#index as HTML
166
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
167
+ Processing by HomeController#index as HTML
168
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
169
+ Processing by HomeController#index as HTML
170
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
171
+ Processing by HomeController#index as HTML
172
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
173
+ Processing by HomeController#respond_to_test as HTML
174
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
175
+ Processing by HomeController#respond_to_test as HTML
176
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
177
+ Processing by HomeController#respond_to_test as MOBILE
178
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
179
+ Processing by HomeController#no_mobile_view as MOBILE
180
+ Completed 500 Internal Server Error in 33ms
181
+ Processing by HomeController#index as HTML
182
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
183
+ Processing by HomeController#index as HTML
184
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
185
+ Processing by HomeController#index as HTML
186
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
187
+ Processing by HomeController#index as HTML
188
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
189
+ Processing by HomeController#index as HTML
190
+ Completed 200 OK in 102ms (Views: 101.1ms | ActiveRecord: 0.0ms)
191
+ Processing by HomeController#index as HTML
192
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
193
+ Processing by HomeController#index as HTML
194
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
195
+ Processing by HomeController#index as HTML
196
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
197
+ Processing by HomeController#index as HTML
198
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
199
+ Processing by HomeController#respond_to_test as HTML
200
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
201
+ Processing by HomeController#respond_to_test as HTML
202
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
203
+ Processing by HomeController#respond_to_test as MOBILE
204
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
205
+ Processing by HomeController#no_mobile_view as MOBILE
206
+ Completed 500 Internal Server Error in 32ms
207
+ Processing by HomeController#index as HTML
208
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
209
+ Processing by HomeController#index as HTML
210
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
211
+ Processing by HomeController#index as HTML
212
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
213
+ Processing by HomeController#index as HTML
214
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
215
+ Processing by HomeController#index as HTML
216
+ Completed 200 OK in 101ms (Views: 100.7ms | ActiveRecord: 0.0ms)
217
+ Processing by HomeController#index as HTML
218
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
219
+ Processing by HomeController#index as HTML
220
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
221
+ Processing by HomeController#index as HTML
222
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
223
+ Processing by HomeController#index as HTML
224
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
225
+ Processing by HomeController#respond_to_test as HTML
226
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
227
+ Processing by HomeController#respond_to_test as HTML
228
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
229
+ Processing by HomeController#respond_to_test as MOBILE
230
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
231
+ Processing by HomeController#no_mobile_view as MOBILE
232
+ Completed 500 Internal Server Error in 31ms
233
+ Processing by HomeController#index as HTML
234
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
235
+ Processing by HomeController#index as HTML
236
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
237
+ Processing by HomeController#index as HTML
238
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
239
+ Processing by HomeController#index as HTML
240
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
241
+ Processing by HomeController#index as HTML
242
+ Completed 200 OK in 103ms (Views: 102.5ms | ActiveRecord: 0.0ms)
243
+ Processing by HomeController#index as HTML
244
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
245
+ Processing by HomeController#index as HTML
246
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
247
+ Processing by HomeController#index as HTML
248
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
249
+ Processing by HomeController#index as HTML
250
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
251
+ Processing by HomeController#respond_to_test as HTML
252
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
253
+ Processing by HomeController#respond_to_test as HTML
254
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
255
+ Processing by HomeController#respond_to_test as MOBILE
256
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
257
+ Processing by HomeController#no_mobile_view as MOBILE
258
+ Completed 500 Internal Server Error in 32ms
259
+ Processing by HomeController#index as HTML
260
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
261
+ Processing by HomeController#index as HTML
262
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
263
+ Processing by HomeController#index as HTML
264
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
265
+ Processing by HomeController#index as HTML
266
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
267
+ Processing by HomeController#index as HTML
268
+ Completed 200 OK in 111ms (Views: 110.6ms | ActiveRecord: 0.0ms)
269
+ Processing by HomeController#index as HTML
270
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
271
+ Processing by HomeController#index as HTML
272
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
273
+ Processing by HomeController#index as HTML
274
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
275
+ Processing by HomeController#index as HTML
276
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
277
+ Processing by HomeController#respond_to_test as HTML
278
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
279
+ Processing by HomeController#respond_to_test as HTML
280
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
281
+ Processing by HomeController#respond_to_test as MOBILE
282
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
283
+ Processing by HomeController#no_mobile_view as MOBILE
284
+ Completed 500 Internal Server Error in 31ms
285
+ Processing by HomeController#index as HTML
286
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
287
+ Processing by HomeController#index as HTML
288
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
289
+ Processing by HomeController#index as HTML
290
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
291
+ Processing by HomeController#index as HTML
292
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
293
+ Processing by HomeController#index as HTML
294
+ Completed 200 OK in 102ms (Views: 101.2ms | ActiveRecord: 0.0ms)
295
+ Processing by HomeController#index as HTML
296
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
297
+ Processing by HomeController#index as HTML
298
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
299
+ Processing by HomeController#index as HTML
300
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
301
+ Processing by HomeController#index as HTML
302
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
303
+ Processing by HomeController#respond_to_test as HTML
304
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
305
+ Processing by HomeController#respond_to_test as HTML
306
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
307
+ Processing by HomeController#respond_to_test as MOBILE
308
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
309
+ Processing by HomeController#no_mobile_view as MOBILE
310
+ Completed 500 Internal Server Error in 33ms
311
+ Processing by HomeController#index as HTML
312
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
313
+ Processing by HomeController#index as HTML
314
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
315
+ Processing by HomeController#index as HTML
316
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
317
+ Processing by HomeController#index as HTML
318
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
319
+ Processing by HomeController#index as HTML
320
+ Completed 200 OK in 69ms (Views: 68.5ms | ActiveRecord: 0.0ms)
321
+ Processing by HomeController#index as HTML
322
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
323
+ Processing by HomeController#index as HTML
324
+ Completed 500 Internal Server Error in 5ms
325
+ Processing by HomeController#index as HTML
326
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
327
+ Processing by HomeController#index as HTML
328
+ Completed 500 Internal Server Error in 5ms
329
+ Processing by HomeController#respond_to_test as HTML
330
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
331
+ Processing by HomeController#respond_to_test as HTML
332
+ Completed 500 Internal Server Error in 6ms
333
+ Processing by HomeController#respond_to_test as MOBILE
334
+ Completed 500 Internal Server Error in 5ms
335
+ Processing by HomeController#no_mobile_view as MOBILE
336
+ Completed 500 Internal Server Error in 5ms
337
+ Processing by HomeController#index as HTML
338
+ Completed 500 Internal Server Error in 5ms
339
+ Processing by HomeController#index as HTML
340
+ Completed 500 Internal Server Error in 5ms
341
+ Processing by HomeController#index as HTML
342
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
343
+ Processing by HomeController#index as HTML
344
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
345
+ Processing by HomeController#index as HTML
346
+ Completed 200 OK in 70ms (Views: 69.0ms | ActiveRecord: 0.0ms)
347
+ Processing by HomeController#index as HTML
348
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
349
+ Processing by HomeController#index as HTML
350
+ Completed 500 Internal Server Error in 0ms
351
+ Processing by HomeController#index as HTML
352
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
353
+ Processing by HomeController#index as HTML
354
+ Completed 500 Internal Server Error in 0ms
355
+ Processing by HomeController#respond_to_test as HTML
356
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
357
+ Processing by HomeController#respond_to_test as HTML
358
+ Completed 500 Internal Server Error in 0ms
359
+ Processing by HomeController#respond_to_test as MOBILE
360
+ Completed 500 Internal Server Error in 0ms
361
+ Processing by HomeController#no_mobile_view as MOBILE
362
+ Completed 500 Internal Server Error in 0ms
363
+ Processing by HomeController#index as HTML
364
+ Completed 500 Internal Server Error in 0ms
365
+ Processing by HomeController#index as HTML
366
+ Completed 500 Internal Server Error in 0ms
367
+ Processing by HomeController#index as HTML
368
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
369
+ Processing by HomeController#index as HTML
370
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
371
+ Processing by HomeController#index as HTML
372
+ Completed 500 Internal Server Error in 579369ms
373
+ Processing by HomeController#index as HTML
374
+ Completed 200 OK in 4596ms (Views: 80.7ms | ActiveRecord: 0.0ms)
375
+ Processing by HomeController#index as HTML
376
+ Completed 500 Internal Server Error in 721ms
377
+ Processing by HomeController#index as HTML
378
+ Completed 200 OK in 631ms (Views: 2.2ms | ActiveRecord: 0.0ms)
379
+ Processing by HomeController#index as HTML
380
+ Processing by HomeController#index as HTML
381
+ Completed 200 OK in 75ms (Views: 74.9ms | ActiveRecord: 0.0ms)
382
+ Processing by HomeController#index as HTML
383
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
384
+ Processing by HomeController#index as HTML
385
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
386
+ Processing by HomeController#index as HTML
387
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
388
+ Processing by HomeController#index as HTML
389
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
390
+ Processing by HomeController#respond_to_test as HTML
391
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
392
+ Processing by HomeController#respond_to_test as HTML
393
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
394
+ Processing by HomeController#respond_to_test as MOBILE
395
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
396
+ Processing by HomeController#no_mobile_view as MOBILE
397
+ Completed 500 Internal Server Error in 36ms
398
+ Processing by HomeController#index as HTML
399
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
400
+ Processing by HomeController#index as HTML
401
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
402
+ Processing by HomeController#index as HTML
403
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
404
+ Processing by HomeController#index as HTML
405
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
406
+ Processing by HomeController#index as HTML
407
+ Completed 200 OK in 76ms (Views: 75.1ms | ActiveRecord: 0.0ms)
408
+ Processing by HomeController#index as HTML
409
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
410
+ Processing by HomeController#index as HTML
411
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
412
+ Processing by HomeController#index as HTML
413
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
414
+ Processing by HomeController#index as HTML
415
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
416
+ Processing by HomeController#respond_to_test as HTML
417
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
418
+ Processing by HomeController#respond_to_test as HTML
419
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
420
+ Processing by HomeController#respond_to_test as MOBILE
421
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
422
+ Processing by HomeController#no_mobile_view as MOBILE
423
+ Completed 200 OK in 26ms (Views: 25.9ms | ActiveRecord: 0.0ms)
424
+ Processing by HomeController#index as HTML
425
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
426
+ Processing by HomeController#index as HTML
427
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
428
+ Processing by HomeController#index as HTML
429
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
430
+ Processing by HomeController#index as HTML
431
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
432
+ Processing by HomeController#index as HTML
433
+ Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
434
+ Processing by HomeController#index as HTML
435
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
436
+ Processing by HomeController#index as HTML
437
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
438
+ Processing by HomeController#index as HTML
439
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
440
+ Processing by HomeController#index as HTML
441
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
442
+ Processing by HomeController#respond_to_test as HTML
443
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
444
+ Processing by HomeController#respond_to_test as HTML
445
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
446
+ Processing by HomeController#respond_to_test as MOBILE
447
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
448
+ Processing by HomeController#no_mobile_view as MOBILE
449
+ Completed 500 Internal Server Error in 36ms
450
+ Processing by HomeController#index as HTML
451
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
452
+ Processing by HomeController#index as HTML
453
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
454
+ Processing by HomeController#index as HTML
455
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
456
+ Processing by HomeController#index as HTML
457
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
458
+ Processing by HomeController#index as HTML
459
+ Completed 200 OK in 76ms (Views: 75.7ms | ActiveRecord: 0.0ms)
460
+ Processing by HomeController#index as HTML
461
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
462
+ Processing by HomeController#index as HTML
463
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
464
+ Processing by HomeController#index as HTML
465
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
466
+ Processing by HomeController#index as HTML
467
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
468
+ Processing by HomeController#respond_to_test as HTML
469
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
470
+ Processing by HomeController#respond_to_test as HTML
471
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
472
+ Processing by HomeController#respond_to_test as MOBILE
473
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
474
+ Processing by HomeController#no_mobile_view as MOBILE
475
+ Completed 500 Internal Server Error in 75ms
476
+ Processing by HomeController#index as HTML
477
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
478
+ Processing by HomeController#index as HTML
479
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
480
+ Processing by HomeController#index as HTML
481
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
482
+ Processing by HomeController#index as HTML
483
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
484
+ Processing by HomeController#index as HTML
485
+ Completed 200 OK in 76ms (Views: 75.4ms | ActiveRecord: 0.0ms)
486
+ Processing by HomeController#index as HTML
487
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
488
+ Processing by HomeController#index as HTML
489
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
490
+ Processing by HomeController#index as HTML
491
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
492
+ Processing by HomeController#index as HTML
493
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
494
+ Processing by HomeController#respond_to_test as HTML
495
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
496
+ Processing by HomeController#respond_to_test as HTML
497
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
498
+ Processing by HomeController#respond_to_test as MOBILE
499
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
500
+ Processing by HomeController#no_mobile_view as MOBILE
501
+ Completed 500 Internal Server Error in 74ms
502
+ Processing by HomeController#index as HTML
503
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
504
+ Processing by HomeController#index as HTML
505
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
506
+ Processing by HomeController#index as HTML
507
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
508
+ Processing by HomeController#index as HTML
509
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
510
+ Processing by DefaultFallbackController#index as HTML
511
+ Completed 200 OK in 78ms (Views: 77.3ms | ActiveRecord: 0.0ms)
512
+ Processing by DefaultFallbackController#index as HTML
513
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
514
+ Processing by HomeController#index as HTML
515
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
516
+ Processing by HomeController#index as HTML
517
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
518
+ Processing by HomeController#index as HTML
519
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
520
+ Processing by HomeController#index as HTML
521
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
522
+ Processing by HomeController#index as HTML
523
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
524
+ Processing by HomeController#respond_to_test as HTML
525
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
526
+ Processing by HomeController#respond_to_test as HTML
527
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
528
+ Processing by HomeController#respond_to_test as MOBILE
529
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
530
+ Processing by HomeController#index as HTML
531
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
532
+ Processing by HomeController#index as HTML
533
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
534
+ Processing by HomeController#index as HTML
535
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
536
+ Processing by HomeController#index as HTML
537
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
538
+ Processing by DefaultFallbackController#index as HTML
539
+ Completed 200 OK in 80ms (Views: 79.7ms | ActiveRecord: 0.0ms)
540
+ Processing by DefaultFallbackController#index as HTML
541
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
542
+ Processing by DefaultFallbackController#test as HTML
543
+ Completed 500 Internal Server Error in 75ms
544
+ Processing by HomeController#index as HTML
545
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.0ms)
546
+ Processing by HomeController#index as HTML
547
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
548
+ Processing by HomeController#index as HTML
549
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
550
+ Processing by HomeController#index as HTML
551
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
552
+ Processing by HomeController#index as HTML
553
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
554
+ Processing by HomeController#respond_to_test as HTML
555
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
556
+ Processing by HomeController#respond_to_test as HTML
557
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
558
+ Processing by HomeController#respond_to_test as MOBILE
559
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
560
+ Processing by HomeController#index as HTML
561
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
562
+ Processing by HomeController#index as HTML
563
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
564
+ Processing by HomeController#index as HTML
565
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
566
+ Processing by HomeController#index as HTML
567
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
568
+ Processing by DefaultFallbackController#index as HTML
569
+ Rendered default_fallback/index.mobile.erb within layouts/application (55.7ms)
570
+ Completed 200 OK in 113ms (Views: 112.4ms | ActiveRecord: 0.0ms)
571
+ Processing by DefaultFallbackController#index as HTML
572
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
573
+ Processing by DefaultFallbackController#test as HTML
574
+ Completed 500 Internal Server Error in 35ms
575
+ Processing by DefaultFallbackController#index as HTML
576
+ Rendered default_fallback/index.mobile.erb within layouts/application (19.5ms)
577
+ Completed 200 OK in 80ms (Views: 79.1ms | ActiveRecord: 0.0ms)
578
+ Processing by DefaultFallbackController#index as HTML
579
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
580
+ Processing by DefaultFallbackController#test as HTML
581
+ Completed 500 Internal Server Error in 35ms
582
+ Processing by DefaultFallbackController#index as HTML
583
+ Rendered default_fallback/index.mobile.erb within layouts/application (55.6ms)
584
+ Completed 200 OK in 113ms (Views: 112.7ms | ActiveRecord: 0.0ms)
585
+ Processing by DefaultFallbackController#index as HTML
586
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
587
+ Processing by DefaultFallbackController#test as HTML
588
+ Completed 500 Internal Server Error in 35ms
589
+ Processing by DefaultFallbackController#index as HTML
590
+ Rendered default_fallback/index.mobile.erb within layouts/application (56.6ms)
591
+ Completed 200 OK in 116ms (Views: 115.5ms | ActiveRecord: 0.0ms)
592
+ Processing by DefaultFallbackController#index as HTML
593
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
594
+ Processing by DefaultFallbackController#test as HTML
595
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
596
+ Processing by DefaultFallbackController#index as HTML
597
+ Rendered default_fallback/index.mobile.erb within layouts/application (19.6ms)
598
+ Completed 200 OK in 79ms (Views: 78.9ms | ActiveRecord: 0.0ms)
599
+ Processing by DefaultFallbackController#index as HTML
600
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
601
+ Processing by DefaultFallbackController#test as HTML
602
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
603
+ Processing by DefaultFallbackController#index as HTML
604
+ Rendered default_fallback/index.mobile.erb within layouts/application (19.3ms)
605
+ Completed 200 OK in 77ms (Views: 76.0ms | ActiveRecord: 0.0ms)
606
+ Processing by DefaultFallbackController#index as HTML
607
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
608
+ Processing by DefaultFallbackController#test as HTML
609
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
610
+ Processing by DefaultFallbackController#test as JS
611
+ Completed 200 OK in 39ms (Views: 38.3ms | ActiveRecord: 0.0ms)
612
+ Processing by DefaultFallbackController#index as HTML
613
+ Completed 200 OK in 76ms (Views: 75.3ms | ActiveRecord: 0.0ms)
614
+ Processing by DefaultFallbackController#index as HTML
615
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
616
+ Processing by DefaultFallbackController#test as HTML
617
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
618
+ Processing by DefaultFallbackController#test as JS
619
+ Completed 200 OK in 39ms (Views: 38.5ms | ActiveRecord: 0.0ms)
620
+ Processing by ForceFallbackController#index as HTML
621
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
622
+ Processing by ForceFallbackController#index as HTML
623
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
624
+ Processing by ForceFallbackController#test as HTML
625
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
626
+ Processing by ForceFallbackController#test as HTML
627
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
628
+ Processing by ForceFallbackController#test as JS
629
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
630
+ Processing by HomeController#index as HTML
631
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
632
+ Processing by HomeController#index as HTML
633
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
634
+ Processing by HomeController#index as HTML
635
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
636
+ Processing by HomeController#index as HTML
637
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
638
+ Processing by HomeController#index as HTML
639
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
640
+ Processing by HomeController#respond_to_test as HTML
641
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
642
+ Processing by HomeController#respond_to_test as HTML
643
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
644
+ Processing by HomeController#respond_to_test as MOBILE
645
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
646
+ Processing by HomeController#index as HTML
647
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
648
+ Processing by HomeController#index as HTML
649
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
650
+ Processing by HomeController#index as HTML
651
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
652
+ Processing by HomeController#index as HTML
653
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
654
+ Processing by DefaultFallbackController#index as HTML
655
+ Completed 200 OK in 77ms (Views: 76.3ms | ActiveRecord: 0.0ms)
656
+ Processing by DefaultFallbackController#index as HTML
657
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
658
+ Processing by DefaultFallbackController#test as HTML
659
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
660
+ Processing by DefaultFallbackController#test as JS
661
+ Completed 200 OK in 39ms (Views: 39.0ms | ActiveRecord: 0.0ms)
662
+ Processing by ForceFallbackController#index as HTML
663
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
664
+ Processing by ForceFallbackController#index as HTML
665
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
666
+ Processing by ForceFallbackController#test as HTML
667
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
668
+ Processing by ForceFallbackController#test as HTML
669
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
670
+ Processing by ForceFallbackController#test as JS
671
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
672
+ Processing by HomeController#index as HTML
673
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
674
+ Processing by HomeController#index as HTML
675
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
676
+ Processing by HomeController#index as HTML
677
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
678
+ Processing by HomeController#index as HTML
679
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
680
+ Processing by HomeController#index as HTML
681
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
682
+ Processing by HomeController#respond_to_test as HTML
683
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
684
+ Processing by HomeController#respond_to_test as HTML
685
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
686
+ Processing by HomeController#respond_to_test as MOBILE
687
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
688
+ Processing by HomeController#index as HTML
689
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
690
+ Processing by HomeController#index as HTML
691
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
692
+ Processing by HomeController#index as HTML
693
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
694
+ Processing by HomeController#index as HTML
695
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
696
+ Processing by NoFallbackController#index as HTML
697
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
698
+ Processing by NoFallbackController#index as HTML
699
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
700
+ Processing by NoFallbackController#test as HTML
701
+ Completed 500 Internal Server Error in 2ms
702
+ Processing by NoFallbackController#test as HTML
703
+ Completed 500 Internal Server Error in 1ms
704
+ Processing by NoFallbackController#test as HTML
705
+ Completed 500 Internal Server Error in 1ms
706
+ Processing by DefaultFallbackController#index as HTML
707
+ Completed 200 OK in 78ms (Views: 77.0ms | ActiveRecord: 0.0ms)
708
+ Processing by DefaultFallbackController#index as HTML
709
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
710
+ Processing by DefaultFallbackController#test as HTML
711
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
712
+ Processing by DefaultFallbackController#test as JS
713
+ Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.0ms)
714
+ Processing by ForceFallbackController#index as HTML
715
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
716
+ Processing by ForceFallbackController#index as HTML
717
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
718
+ Processing by ForceFallbackController#test as HTML
719
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
720
+ Processing by ForceFallbackController#test as HTML
721
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
722
+ Processing by ForceFallbackController#test as JS
723
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
724
+ Processing by HomeController#index as HTML
725
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
726
+ Processing by HomeController#index as HTML
727
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
728
+ Processing by HomeController#index as HTML
729
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
730
+ Processing by HomeController#index as HTML
731
+ Completed 200 OK in 41ms (Views: 40.9ms | ActiveRecord: 0.0ms)
732
+ Processing by HomeController#index as HTML
733
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
734
+ Processing by HomeController#respond_to_test as HTML
735
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
736
+ Processing by HomeController#respond_to_test as HTML
737
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
738
+ Processing by HomeController#respond_to_test as MOBILE
739
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
740
+ Processing by HomeController#index as HTML
741
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
742
+ Processing by HomeController#index as HTML
743
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
744
+ Processing by HomeController#index as HTML
745
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
746
+ Processing by HomeController#index as HTML
747
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
748
+ Processing by NoFallbackController#index as HTML
749
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
750
+ Processing by NoFallbackController#index as HTML
751
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
752
+ Processing by NoFallbackController#test as HTML
753
+ Completed 500 Internal Server Error in 2ms
754
+ Processing by NoFallbackController#test as HTML
755
+ Completed 500 Internal Server Error in 1ms
756
+ Processing by NoFallbackController#test as HTML
757
+ Completed 500 Internal Server Error in 1ms
758
+ Processing by DefaultFallbackController#index as HTML
759
+ Completed 200 OK in 77ms (Views: 76.2ms | ActiveRecord: 0.0ms)
760
+ Processing by DefaultFallbackController#index as HTML
761
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
762
+ Processing by DefaultFallbackController#test as HTML
763
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
764
+ Processing by DefaultFallbackController#test as JS
765
+ Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
766
+ Processing by ForceFallbackController#index as HTML
767
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
768
+ Processing by ForceFallbackController#index as HTML
769
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
770
+ Processing by ForceFallbackController#test as HTML
771
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
772
+ Processing by ForceFallbackController#test as HTML
773
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
774
+ Processing by ForceFallbackController#test as JS
775
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
776
+ Processing by HomeController#index as HTML
777
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
778
+ Processing by HomeController#index as HTML
779
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
780
+ Processing by HomeController#index as HTML
781
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
782
+ Processing by HomeController#index as HTML
783
+ Completed 200 OK in 42ms (Views: 41.5ms | ActiveRecord: 0.0ms)
784
+ Processing by HomeController#index as HTML
785
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
786
+ Processing by HomeController#respond_to_test as HTML
787
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
788
+ Processing by HomeController#respond_to_test as HTML
789
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
790
+ Processing by HomeController#respond_to_test as MOBILE
791
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
792
+ Processing by HomeController#index as HTML
793
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
794
+ Processing by HomeController#index as HTML
795
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
796
+ Processing by HomeController#index as HTML
797
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
798
+ Processing by HomeController#index as HTML
799
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
800
+ Processing by NoFallbackController#index as HTML
801
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
802
+ Processing by NoFallbackController#index as HTML
803
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
804
+ Processing by NoFallbackController#test as HTML
805
+ Completed 500 Internal Server Error in 2ms
806
+ Processing by NoFallbackController#test as HTML
807
+ Completed 500 Internal Server Error in 1ms
808
+ Processing by NoFallbackController#test as HTML
809
+ Completed 500 Internal Server Error in 1ms
810
+ Processing by DefaultFallbackController#index as HTML
811
+ Completed 200 OK in 76ms (Views: 75.3ms | ActiveRecord: 0.0ms)
812
+ Processing by DefaultFallbackController#index as HTML
813
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
814
+ Processing by DefaultFallbackController#test as HTML
815
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
816
+ Processing by DefaultFallbackController#test as JS
817
+ Completed 200 OK in 38ms (Views: 37.9ms | ActiveRecord: 0.0ms)
818
+ Processing by ForceFallbackController#index as HTML
819
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
820
+ Processing by ForceFallbackController#index as HTML
821
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
822
+ Processing by ForceFallbackController#test as HTML
823
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
824
+ Processing by ForceFallbackController#test as HTML
825
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
826
+ Processing by ForceFallbackController#test as JS
827
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
828
+ Processing by HomeController#index as HTML
829
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
830
+ Processing by HomeController#index as HTML
831
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
832
+ Processing by HomeController#index as HTML
833
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
834
+ Processing by HomeController#index as HTML
835
+ Completed 200 OK in 42ms (Views: 41.6ms | ActiveRecord: 0.0ms)
836
+ Processing by HomeController#index as HTML
837
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
838
+ Processing by HomeController#respond_to_test as HTML
839
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
840
+ Processing by HomeController#respond_to_test as HTML
841
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
842
+ Processing by HomeController#respond_to_test as MOBILE
843
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
844
+ Processing by HomeController#index as HTML
845
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
846
+ Processing by HomeController#index as HTML
847
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
848
+ Processing by HomeController#index as HTML
849
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
850
+ Processing by HomeController#index as HTML
851
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
852
+ Processing by NoFallbackController#index as HTML
853
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
854
+ Processing by NoFallbackController#index as HTML
855
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
856
+ Processing by NoFallbackController#test as HTML
857
+ Completed 500 Internal Server Error in 2ms
858
+ Processing by NoFallbackController#test as HTML
859
+ Completed 500 Internal Server Error in 1ms
860
+ Processing by NoFallbackController#test as HTML
861
+ Completed 500 Internal Server Error in 1ms
862
+ Processing by DefaultFallbackController#index as HTML
863
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
864
+ Processing by DefaultFallbackController#index as HTML
865
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
866
+ Processing by DefaultFallbackController#test as HTML
867
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
868
+ Processing by DefaultFallbackController#test as JS
869
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
870
+ Processing by ForceFallbackController#index as HTML
871
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
872
+ Processing by ForceFallbackController#index as HTML
873
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
874
+ Processing by ForceFallbackController#test as HTML
875
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
876
+ Processing by ForceFallbackController#test as HTML
877
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
878
+ Processing by ForceFallbackController#test as JS
879
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
880
+ Processing by HomeController#index as HTML
881
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
882
+ Processing by HomeController#index as HTML
883
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
884
+ Processing by HomeController#index as HTML
885
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
886
+ Processing by HomeController#index as HTML
887
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
888
+ Processing by HomeController#index as HTML
889
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
890
+ Processing by HomeController#respond_to_test as HTML
891
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
892
+ Processing by HomeController#respond_to_test as HTML
893
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
894
+ Processing by HomeController#respond_to_test as MOBILE
895
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
896
+ Processing by HomeController#index as HTML
897
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
898
+ Processing by HomeController#index as HTML
899
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
900
+ Processing by HomeController#index as HTML
901
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
902
+ Processing by HomeController#index as HTML
903
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
904
+ Processing by NoFallbackController#index as HTML
905
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
906
+ Processing by NoFallbackController#index as HTML
907
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
908
+ Processing by NoFallbackController#test as HTML
909
+ Completed 500 Internal Server Error in 2ms
910
+ Processing by NoFallbackController#test as HTML
911
+ Completed 500 Internal Server Error in 1ms
912
+ Processing by NoFallbackController#test as HTML
913
+ Completed 500 Internal Server Error in 1ms
914
+ Processing by DefaultFallbackController#index as HTML
915
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
916
+ Processing by DefaultFallbackController#index as HTML
917
+ Completed 500 Internal Server Error in 6ms
918
+ Processing by DefaultFallbackController#test as HTML
919
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
920
+ Processing by DefaultFallbackController#test as JS
921
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
922
+ Processing by ForceFallbackController#index as HTML
923
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
924
+ Processing by ForceFallbackController#index as HTML
925
+ Completed 500 Internal Server Error in 3ms
926
+ Processing by ForceFallbackController#test as HTML
927
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
928
+ Processing by ForceFallbackController#test as HTML
929
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
930
+ Processing by ForceFallbackController#test as JS
931
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
932
+ Processing by HomeController#index as HTML
933
+ Completed 500 Internal Server Error in 8ms
934
+ Processing by HomeController#index as HTML
935
+ Completed 500 Internal Server Error in 2ms
936
+ Processing by HomeController#index as HTML
937
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
938
+ Processing by HomeController#index as HTML
939
+ Completed 500 Internal Server Error in 2ms
940
+ Processing by HomeController#index as HTML
941
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
942
+ Processing by HomeController#respond_to_test as HTML
943
+ Completed 500 Internal Server Error in 3ms
944
+ Processing by HomeController#respond_to_test as HTML
945
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
946
+ Processing by HomeController#respond_to_test as MOBILE
947
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
948
+ Processing by HomeController#index as HTML
949
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
950
+ Processing by HomeController#index as HTML
951
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
952
+ Processing by HomeController#index as HTML
953
+ Completed 500 Internal Server Error in 2ms
954
+ Processing by HomeController#index as HTML
955
+ Completed 500 Internal Server Error in 2ms
956
+ Processing by NoFallbackController#index as HTML
957
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
958
+ Processing by NoFallbackController#index as HTML
959
+ Completed 500 Internal Server Error in 3ms
960
+ Processing by NoFallbackController#test as HTML
961
+ Completed 500 Internal Server Error in 2ms
962
+ Processing by NoFallbackController#test as HTML
963
+ Completed 500 Internal Server Error in 1ms
964
+ Processing by NoFallbackController#test as HTML
965
+ Completed 500 Internal Server Error in 1ms
966
+ Processing by DefaultFallbackController#index as HTML
967
+ Completed 500 Internal Server Error in 18ms
968
+ Processing by DefaultFallbackController#index as HTML
969
+ Completed 500 Internal Server Error in 3ms
970
+ Processing by DefaultFallbackController#test as HTML
971
+ Completed 500 Internal Server Error in 3ms
972
+ Processing by DefaultFallbackController#test as JS
973
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
974
+ Processing by ForceFallbackController#index as HTML
975
+ Completed 500 Internal Server Error in 8ms
976
+ Processing by ForceFallbackController#index as HTML
977
+ Completed 500 Internal Server Error in 3ms
978
+ Processing by ForceFallbackController#test as HTML
979
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
980
+ Processing by ForceFallbackController#test as HTML
981
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
982
+ Processing by ForceFallbackController#test as JS
983
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
984
+ Processing by HomeController#index as HTML
985
+ Completed 500 Internal Server Error in 8ms
986
+ Processing by HomeController#index as HTML
987
+ Completed 500 Internal Server Error in 2ms
988
+ Processing by HomeController#index as HTML
989
+ Completed 500 Internal Server Error in 3ms
990
+ Processing by HomeController#index as HTML
991
+ Completed 500 Internal Server Error in 2ms
992
+ Processing by HomeController#index as HTML
993
+ Completed 500 Internal Server Error in 2ms
994
+ Processing by HomeController#respond_to_test as HTML
995
+ Completed 500 Internal Server Error in 3ms
996
+ Processing by HomeController#respond_to_test as HTML
997
+ Completed 500 Internal Server Error in 3ms
998
+ Processing by HomeController#respond_to_test as MOBILE
999
+ Completed 500 Internal Server Error in 2ms
1000
+ Processing by HomeController#index as HTML
1001
+ Completed 500 Internal Server Error in 2ms
1002
+ Processing by HomeController#index as HTML
1003
+ Completed 500 Internal Server Error in 2ms
1004
+ Processing by HomeController#index as HTML
1005
+ Completed 500 Internal Server Error in 2ms
1006
+ Processing by HomeController#index as HTML
1007
+ Completed 500 Internal Server Error in 2ms
1008
+ Processing by NoFallbackController#index as HTML
1009
+ Completed 500 Internal Server Error in 7ms
1010
+ Processing by NoFallbackController#index as HTML
1011
+ Completed 500 Internal Server Error in 3ms
1012
+ Processing by NoFallbackController#test as HTML
1013
+ Completed 500 Internal Server Error in 3ms
1014
+ Processing by NoFallbackController#test as HTML
1015
+ Completed 500 Internal Server Error in 1ms
1016
+ Processing by NoFallbackController#test as HTML
1017
+ Completed 500 Internal Server Error in 1ms
1018
+ Processing by DefaultFallbackController#index as HTML
1019
+ Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms)
1020
+ Processing by DefaultFallbackController#index as HTML
1021
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1022
+ Processing by DefaultFallbackController#test as HTML
1023
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1024
+ Processing by DefaultFallbackController#test as JS
1025
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1026
+ Processing by ForceFallbackController#index as HTML
1027
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1028
+ Processing by ForceFallbackController#index as HTML
1029
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1030
+ Processing by ForceFallbackController#test as HTML
1031
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1032
+ Processing by ForceFallbackController#test as HTML
1033
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1034
+ Processing by ForceFallbackController#test as JS
1035
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1036
+ Processing by HomeController#index as HTML
1037
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
1038
+ Processing by HomeController#index as HTML
1039
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1040
+ Processing by HomeController#index as HTML
1041
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1042
+ Processing by HomeController#index as HTML
1043
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1044
+ Processing by HomeController#index as HTML
1045
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1046
+ Processing by HomeController#respond_to_test as HTML
1047
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1048
+ Processing by HomeController#respond_to_test as HTML
1049
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1050
+ Processing by HomeController#respond_to_test as MOBILE
1051
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1052
+ Processing by HomeController#index as HTML
1053
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1054
+ Processing by HomeController#index as HTML
1055
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1056
+ Processing by HomeController#index as HTML
1057
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1058
+ Processing by HomeController#index as HTML
1059
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1060
+ Processing by NoFallbackController#index as HTML
1061
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1062
+ Processing by NoFallbackController#index as HTML
1063
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1064
+ Processing by NoFallbackController#test as HTML
1065
+ Completed 500 Internal Server Error in 2ms
1066
+ Processing by NoFallbackController#test as HTML
1067
+ Completed 500 Internal Server Error in 1ms
1068
+ Processing by NoFallbackController#test as HTML
1069
+ Completed 500 Internal Server Error in 1ms
1070
+ Processing by DefaultFallbackController#index as HTML
1071
+ Completed 200 OK in 71ms (Views: 70.1ms | ActiveRecord: 0.0ms)
1072
+ Processing by DefaultFallbackController#index as HTML
1073
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1074
+ Processing by DefaultFallbackController#test as HTML
1075
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1076
+ Processing by DefaultFallbackController#test as JS
1077
+ Completed 200 OK in 74ms (Views: 73.6ms | ActiveRecord: 0.0ms)
1078
+ Processing by ForceFallbackController#index as HTML
1079
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1080
+ Processing by ForceFallbackController#index as HTML
1081
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1082
+ Processing by ForceFallbackController#test as HTML
1083
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1084
+ Processing by ForceFallbackController#test as HTML
1085
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1086
+ Processing by ForceFallbackController#test as JS
1087
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1088
+ Processing by HomeController#index as HTML
1089
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1090
+ Processing by HomeController#index as HTML
1091
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1092
+ Processing by HomeController#index as HTML
1093
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1094
+ Processing by HomeController#index as HTML
1095
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1096
+ Processing by HomeController#index as HTML
1097
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1098
+ Processing by HomeController#respond_to_test as HTML
1099
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1100
+ Processing by HomeController#respond_to_test as HTML
1101
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1102
+ Processing by HomeController#respond_to_test as MOBILE
1103
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1104
+ Processing by HomeController#index as HTML
1105
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1106
+ Processing by HomeController#index as HTML
1107
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1108
+ Processing by HomeController#index as HTML
1109
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1110
+ Processing by HomeController#index as HTML
1111
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1112
+ Processing by NoFallbackController#index as HTML
1113
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1114
+ Processing by NoFallbackController#index as HTML
1115
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1116
+ Processing by NoFallbackController#test as HTML
1117
+ Completed 500 Internal Server Error in 2ms
1118
+ Processing by NoFallbackController#test as HTML
1119
+ Completed 500 Internal Server Error in 1ms
1120
+ Processing by NoFallbackController#test as HTML
1121
+ Completed 500 Internal Server Error in 1ms
1122
+ Processing by DefaultFallbackController#index as HTML
1123
+ Completed 200 OK in 111ms (Views: 110.5ms | ActiveRecord: 0.0ms)
1124
+ Processing by DefaultFallbackController#index as HTML
1125
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1126
+ Processing by DefaultFallbackController#test as HTML
1127
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1128
+ Processing by DefaultFallbackController#test as JS
1129
+ Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
1130
+ Processing by ForceFallbackController#index as HTML
1131
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1132
+ Processing by ForceFallbackController#index as HTML
1133
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1134
+ Processing by ForceFallbackController#test as HTML
1135
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1136
+ Processing by ForceFallbackController#test as HTML
1137
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1138
+ Processing by ForceFallbackController#test as JS
1139
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1140
+ Processing by HomeController#index as HTML
1141
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1142
+ Processing by HomeController#index as HTML
1143
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1144
+ Processing by HomeController#index as HTML
1145
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1146
+ Processing by HomeController#index as HTML
1147
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1148
+ Processing by HomeController#index as HTML
1149
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1150
+ Processing by HomeController#respond_to_test as HTML
1151
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1152
+ Processing by HomeController#respond_to_test as HTML
1153
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1154
+ Processing by HomeController#respond_to_test as MOBILE
1155
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1156
+ Processing by HomeController#index as HTML
1157
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1158
+ Processing by HomeController#index as HTML
1159
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1160
+ Processing by HomeController#index as HTML
1161
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1162
+ Processing by HomeController#index as HTML
1163
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1164
+ Processing by NoFallbackController#index as HTML
1165
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1166
+ Processing by NoFallbackController#index as HTML
1167
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1168
+ Processing by NoFallbackController#test as HTML
1169
+ Completed 500 Internal Server Error in 2ms
1170
+ Processing by NoFallbackController#test as HTML
1171
+ Completed 500 Internal Server Error in 1ms
1172
+ Processing by NoFallbackController#test as HTML
1173
+ Completed 500 Internal Server Error in 1ms
1174
+ Processing by DefaultFallbackController#index as HTML
1175
+ Completed 200 OK in 109ms (Views: 108.4ms | ActiveRecord: 0.0ms)
1176
+ Processing by DefaultFallbackController#index as HTML
1177
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1178
+ Processing by DefaultFallbackController#test as HTML
1179
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1180
+ Processing by DefaultFallbackController#test as JS
1181
+ Completed 200 OK in 37ms (Views: 36.9ms | ActiveRecord: 0.0ms)
1182
+ Processing by ForceFallbackController#index as HTML
1183
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1184
+ Processing by ForceFallbackController#index as HTML
1185
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1186
+ Processing by ForceFallbackController#test as HTML
1187
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1188
+ Processing by ForceFallbackController#test as HTML
1189
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1190
+ Processing by ForceFallbackController#test as JS
1191
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1192
+ Processing by HomeController#index as HTML
1193
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1194
+ Processing by HomeController#index as HTML
1195
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1196
+ Processing by HomeController#index as HTML
1197
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1198
+ Processing by HomeController#index as HTML
1199
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1200
+ Processing by HomeController#index as HTML
1201
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1202
+ Processing by HomeController#respond_to_test as HTML
1203
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1204
+ Processing by HomeController#respond_to_test as HTML
1205
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1206
+ Processing by HomeController#respond_to_test as MOBILE
1207
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1208
+ Processing by HomeController#index as HTML
1209
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1210
+ Processing by HomeController#index as HTML
1211
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1212
+ Processing by HomeController#index as HTML
1213
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1214
+ Processing by HomeController#index as HTML
1215
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1216
+ Processing by NoFallbackController#index as HTML
1217
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1218
+ Processing by NoFallbackController#index as HTML
1219
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1220
+ Processing by NoFallbackController#test as HTML
1221
+ Completed 500 Internal Server Error in 2ms
1222
+ Processing by NoFallbackController#test as HTML
1223
+ Completed 500 Internal Server Error in 1ms
1224
+ Processing by NoFallbackController#test as HTML
1225
+ Completed 500 Internal Server Error in 1ms
1226
+ Processing by DefaultFallbackController#index as HTML
1227
+ Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
1228
+ Processing by DefaultFallbackController#index as HTML
1229
+ Completed 200 OK in 65ms (Views: 64.6ms | ActiveRecord: 0.0ms)
1230
+ Processing by DefaultFallbackController#test as HTML
1231
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1232
+ Processing by DefaultFallbackController#test as JS
1233
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
1234
+ Processing by ForceFallbackController#index as HTML
1235
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
1236
+ Processing by ForceFallbackController#index as HTML
1237
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1238
+ Processing by ForceFallbackController#test as HTML
1239
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1240
+ Processing by ForceFallbackController#test as HTML
1241
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1242
+ Processing by ForceFallbackController#test as JS
1243
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1244
+ Processing by HomeController#index as HTML
1245
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
1246
+ Processing by HomeController#index as HTML
1247
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1248
+ Processing by HomeController#index as HTML
1249
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1250
+ Processing by HomeController#index as HTML
1251
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1252
+ Processing by HomeController#index as HTML
1253
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1254
+ Processing by HomeController#respond_to_test as HTML
1255
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1256
+ Processing by HomeController#respond_to_test as HTML
1257
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1258
+ Processing by HomeController#respond_to_test as MOBILE
1259
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1260
+ Processing by HomeController#index as HTML
1261
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1262
+ Processing by HomeController#index as HTML
1263
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1264
+ Processing by HomeController#index as HTML
1265
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1266
+ Processing by HomeController#index as HTML
1267
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1268
+ Processing by NoFallbackController#index as HTML
1269
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
1270
+ Processing by NoFallbackController#index as HTML
1271
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1272
+ Processing by NoFallbackController#test as HTML
1273
+ Completed 500 Internal Server Error in 2ms
1274
+ Processing by NoFallbackController#test as HTML
1275
+ Completed 500 Internal Server Error in 1ms
1276
+ Processing by NoFallbackController#test as HTML
1277
+ Completed 500 Internal Server Error in 1ms
1278
+ Processing by DefaultFallbackController#index as HTML
1279
+ Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
1280
+ Processing by DefaultFallbackController#index as HTML
1281
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1282
+ Processing by DefaultFallbackController#test as HTML
1283
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1284
+ Processing by DefaultFallbackController#test as JS
1285
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1286
+ Processing by ForceFallbackController#index as HTML
1287
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
1288
+ Processing by ForceFallbackController#index as HTML
1289
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1290
+ Processing by ForceFallbackController#test as HTML
1291
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1292
+ Processing by ForceFallbackController#test as HTML
1293
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1294
+ Processing by ForceFallbackController#test as JS
1295
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1296
+ Processing by HomeController#index as HTML
1297
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
1298
+ Processing by HomeController#index as HTML
1299
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1300
+ Processing by HomeController#index as HTML
1301
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1302
+ Processing by HomeController#index as HTML
1303
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1304
+ Processing by HomeController#index as HTML
1305
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1306
+ Processing by HomeController#respond_to_test as HTML
1307
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1308
+ Processing by HomeController#respond_to_test as HTML
1309
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1310
+ Processing by HomeController#respond_to_test as MOBILE
1311
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1312
+ Processing by HomeController#index as HTML
1313
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1314
+ Processing by HomeController#index as HTML
1315
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1316
+ Processing by HomeController#index as HTML
1317
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1318
+ Processing by HomeController#index as HTML
1319
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1320
+ Processing by NoFallbackController#index as HTML
1321
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1322
+ Processing by NoFallbackController#index as HTML
1323
+ Completed 200 OK in 88ms (Views: 87.3ms | ActiveRecord: 0.0ms)
1324
+ Processing by NoFallbackController#test as HTML
1325
+ Completed 500 Internal Server Error in 2ms
1326
+ Processing by NoFallbackController#test as HTML
1327
+ Completed 500 Internal Server Error in 1ms
1328
+ Processing by NoFallbackController#test as HTML
1329
+ Completed 500 Internal Server Error in 1ms
1330
+ Processing by DefaultFallbackController#index as HTML
1331
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
1332
+ Processing by DefaultFallbackController#index as HTML
1333
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1334
+ Processing by DefaultFallbackController#test as HTML
1335
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1336
+ Processing by DefaultFallbackController#test as JS
1337
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1338
+ Processing by ForceFallbackController#index as HTML
1339
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1340
+ Processing by ForceFallbackController#index as HTML
1341
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1342
+ Processing by ForceFallbackController#test as HTML
1343
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1344
+ Processing by ForceFallbackController#test as HTML
1345
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1346
+ Processing by ForceFallbackController#test as JS
1347
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1348
+ Processing by HomeController#index as HTML
1349
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
1350
+ Processing by HomeController#index as HTML
1351
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1352
+ Processing by HomeController#index as HTML
1353
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1354
+ Processing by HomeController#index as HTML
1355
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1356
+ Processing by HomeController#index as HTML
1357
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1358
+ Processing by HomeController#respond_to_test as HTML
1359
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1360
+ Processing by HomeController#respond_to_test as HTML
1361
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1362
+ Processing by HomeController#respond_to_test as MOBILE
1363
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1364
+ Processing by HomeController#index as HTML
1365
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1366
+ Processing by HomeController#index as HTML
1367
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1368
+ Processing by HomeController#index as HTML
1369
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1370
+ Processing by HomeController#index as HTML
1371
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1372
+ Processing by NoFallbackController#index as HTML
1373
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1374
+ Processing by NoFallbackController#index as HTML
1375
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1376
+ Processing by NoFallbackController#test as HTML
1377
+ Completed 500 Internal Server Error in 1ms
1378
+ Processing by NoFallbackController#test as HTML
1379
+ Completed 500 Internal Server Error in 1ms
1380
+ Processing by NoFallbackController#test as HTML
1381
+ Completed 500 Internal Server Error in 1ms
1382
+ Processing by DefaultFallbackController#index as HTML
1383
+ Completed 200 OK in 70ms (Views: 69.8ms | ActiveRecord: 0.0ms)
1384
+ Processing by DefaultFallbackController#index as HTML
1385
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1386
+ Processing by DefaultFallbackController#test as HTML
1387
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1388
+ Processing by DefaultFallbackController#test as JS
1389
+ Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms)
1390
+ Processing by ForceFallbackController#index as HTML
1391
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1392
+ Processing by ForceFallbackController#index as HTML
1393
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1394
+ Processing by ForceFallbackController#test as HTML
1395
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1396
+ Processing by ForceFallbackController#test as HTML
1397
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1398
+ Processing by ForceFallbackController#test as JS
1399
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1400
+ Processing by HomeController#index as HTML
1401
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1402
+ Processing by HomeController#index as HTML
1403
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1404
+ Processing by HomeController#index as HTML
1405
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
1406
+ Processing by HomeController#index as HTML
1407
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1408
+ Processing by HomeController#index as HTML
1409
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1410
+ Processing by HomeController#respond_to_test as HTML
1411
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1412
+ Processing by HomeController#respond_to_test as HTML
1413
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1414
+ Processing by HomeController#respond_to_test as MOBILE
1415
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1416
+ Processing by HomeController#index as HTML
1417
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1418
+ Processing by HomeController#index as HTML
1419
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1420
+ Processing by HomeController#index as HTML
1421
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1422
+ Processing by HomeController#index as HTML
1423
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1424
+ Processing by NoFallbackController#index as HTML
1425
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1426
+ Processing by NoFallbackController#index as HTML
1427
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1428
+ Processing by NoFallbackController#test as HTML
1429
+ Completed 500 Internal Server Error in 2ms
1430
+ Processing by NoFallbackController#test as HTML
1431
+ Completed 500 Internal Server Error in 1ms
1432
+ Processing by NoFallbackController#test as HTML
1433
+ Completed 500 Internal Server Error in 1ms
1434
+ Processing by DefaultFallbackController#index as HTML
1435
+ Completed 200 OK in 66ms (Views: 65.1ms)
1436
+ Processing by DefaultFallbackController#index as HTML
1437
+ Completed 200 OK in 3ms (Views: 2.9ms)
1438
+ Processing by DefaultFallbackController#test as HTML
1439
+ Completed 200 OK in 3ms (Views: 2.0ms)
1440
+ Processing by DefaultFallbackController#test as JS
1441
+ Completed 200 OK in 32ms (Views: 31.6ms)
1442
+ Processing by ForceFallbackController#index as HTML
1443
+ Completed 200 OK in 5ms (Views: 5.0ms)
1444
+ Processing by ForceFallbackController#index as HTML
1445
+ Completed 200 OK in 3ms (Views: 2.3ms)
1446
+ Processing by ForceFallbackController#test as HTML
1447
+ Completed 200 OK in 2ms (Views: 1.9ms)
1448
+ Processing by ForceFallbackController#test as HTML
1449
+ Completed 200 OK in 1ms (Views: 0.7ms)
1450
+ Processing by ForceFallbackController#test as JS
1451
+ Completed 200 OK in 1ms (Views: 0.7ms)
1452
+ Processing by HomeController#index as HTML
1453
+ Completed 200 OK in 6ms (Views: 5.5ms)
1454
+ Processing by HomeController#index as HTML
1455
+ Completed 200 OK in 2ms (Views: 1.3ms)
1456
+ Processing by HomeController#index as HTML
1457
+ Completed 200 OK in 3ms (Views: 2.5ms)
1458
+ Processing by HomeController#index as HTML
1459
+ Completed 200 OK in 2ms (Views: 1.3ms)
1460
+ Processing by HomeController#index as HTML
1461
+ Completed 200 OK in 1ms (Views: 1.0ms)
1462
+ Processing by HomeController#respond_to_test as HTML
1463
+ Completed 200 OK in 2ms (Views: 2.0ms)
1464
+ Processing by HomeController#respond_to_test as HTML
1465
+ Completed 200 OK in 2ms (Views: 2.0ms)
1466
+ Processing by HomeController#respond_to_test as MOBILE
1467
+ Completed 200 OK in 1ms (Views: 1.0ms)
1468
+ Processing by HomeController#index as HTML
1469
+ Completed 200 OK in 1ms (Views: 1.0ms)
1470
+ Processing by HomeController#index as HTML
1471
+ Completed 200 OK in 1ms (Views: 1.0ms)
1472
+ Processing by HomeController#index as HTML
1473
+ Completed 200 OK in 2ms (Views: 1.3ms)
1474
+ Processing by HomeController#index as HTML
1475
+ Completed 200 OK in 2ms (Views: 1.4ms)
1476
+ Processing by NoFallbackController#index as HTML
1477
+ Completed 200 OK in 38ms (Views: 37.1ms)
1478
+ Processing by NoFallbackController#index as HTML
1479
+ Completed 200 OK in 3ms (Views: 2.4ms)
1480
+ Processing by NoFallbackController#test as HTML
1481
+ Completed 500 Internal Server Error in 2ms
1482
+ Processing by NoFallbackController#test as HTML
1483
+ Completed 500 Internal Server Error in 1ms
1484
+ Processing by NoFallbackController#test as HTML
1485
+ Completed 500 Internal Server Error in 1ms
1486
+ Processing by DefaultFallbackController#index as HTML
1487
+ Completed 200 OK in 15ms (Views: 14.8ms)
1488
+ Processing by DefaultFallbackController#index as HTML
1489
+ Completed 200 OK in 3ms (Views: 2.9ms)
1490
+ Processing by DefaultFallbackController#test as HTML
1491
+ Completed 200 OK in 3ms (Views: 2.5ms)
1492
+ Processing by DefaultFallbackController#test as JS
1493
+ Completed 200 OK in 8ms (Views: 7.8ms)
1494
+ Processing by ForceFallbackController#index as HTML
1495
+ Completed 200 OK in 8ms (Views: 6.9ms)
1496
+ Processing by ForceFallbackController#index as HTML
1497
+ Completed 200 OK in 3ms (Views: 2.3ms)
1498
+ Processing by ForceFallbackController#test as HTML
1499
+ Completed 200 OK in 2ms (Views: 1.8ms)
1500
+ Processing by ForceFallbackController#test as HTML
1501
+ Completed 200 OK in 1ms (Views: 0.9ms)
1502
+ Processing by ForceFallbackController#test as JS
1503
+ Completed 200 OK in 1ms (Views: 0.9ms)
1504
+ Processing by HomeController#index as HTML
1505
+ Completed 200 OK in 7ms (Views: 6.3ms)
1506
+ Processing by HomeController#index as HTML
1507
+ Completed 200 OK in 1ms (Views: 1.3ms)
1508
+ Processing by HomeController#index as HTML
1509
+ Completed 200 OK in 3ms (Views: 2.7ms)
1510
+ Processing by HomeController#index as HTML
1511
+ Completed 200 OK in 1ms (Views: 1.3ms)
1512
+ Processing by HomeController#index as HTML
1513
+ Completed 200 OK in 1ms (Views: 1.2ms)
1514
+ Processing by HomeController#respond_to_test as HTML
1515
+ Completed 200 OK in 2ms (Views: 2.0ms)
1516
+ Processing by HomeController#respond_to_test as HTML
1517
+ Completed 200 OK in 3ms (Views: 2.2ms)
1518
+ Processing by HomeController#respond_to_test as MOBILE
1519
+ Completed 200 OK in 1ms (Views: 1.1ms)
1520
+ Processing by HomeController#index as HTML
1521
+ Completed 200 OK in 1ms (Views: 1.2ms)
1522
+ Processing by HomeController#index as HTML
1523
+ Completed 200 OK in 1ms (Views: 1.2ms)
1524
+ Processing by HomeController#index as HTML
1525
+ Completed 200 OK in 2ms (Views: 1.3ms)
1526
+ Processing by HomeController#index as HTML
1527
+ Completed 200 OK in 1ms (Views: 1.2ms)
1528
+ Processing by NoFallbackController#index as HTML
1529
+ Completed 200 OK in 6ms (Views: 5.9ms)
1530
+ Processing by NoFallbackController#index as HTML
1531
+ Completed 200 OK in 2ms (Views: 2.3ms)
1532
+ Processing by NoFallbackController#test as HTML
1533
+ Completed 500 Internal Server Error in 1ms
1534
+ Processing by NoFallbackController#test as HTML
1535
+ Completed 500 Internal Server Error in 1ms
1536
+ Processing by NoFallbackController#test as HTML
1537
+ Completed 500 Internal Server Error in 1ms