stair_master 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/.rspec +1 -0
  2. data/Gemfile.lock +86 -14
  3. data/Guardfile +16 -0
  4. data/Rakefile +29 -1
  5. data/app/concerns/stair_master/controller.rb +11 -0
  6. data/lib/stair_master/concerns/getters.rb +26 -16
  7. data/lib/stair_master/concerns/tests.rb +12 -2
  8. data/lib/stair_master/concerns/traversal.rb +8 -0
  9. data/lib/stair_master/engine.rb +3 -0
  10. data/lib/stair_master/step.rb +8 -2
  11. data/lib/stair_master/version.rb +1 -1
  12. data/lib/stair_master/workflow_map.rb +1 -1
  13. data/spec/controllers/base/getters_spec.rb +9 -0
  14. data/spec/controllers/base/ordering_spec.rb +40 -0
  15. data/spec/controllers/base/tests_spec.rb +139 -0
  16. data/spec/controllers/base/traversal_spec.rb +256 -0
  17. data/spec/dummy/README.rdoc +28 -0
  18. data/spec/dummy/Rakefile +6 -0
  19. data/spec/dummy/app/assets/images/.keep +0 -0
  20. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  21. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  22. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  23. data/spec/dummy/app/controllers/base/step_one_controller.rb +10 -0
  24. data/spec/dummy/app/controllers/base/step_three_controller.rb +10 -0
  25. data/spec/dummy/app/controllers/base/step_two_controller.rb +10 -0
  26. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  27. data/spec/dummy/app/mailers/.keep +0 -0
  28. data/spec/dummy/app/models/.keep +0 -0
  29. data/spec/dummy/app/models/concerns/.keep +0 -0
  30. data/spec/dummy/app/steps/available_if_map.rb +13 -0
  31. data/spec/dummy/app/steps/base_map.rb +11 -0
  32. data/spec/dummy/app/views/application/show.html.erb +0 -0
  33. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  34. data/spec/dummy/bin/bundle +3 -0
  35. data/spec/dummy/bin/rails +4 -0
  36. data/spec/dummy/bin/rake +4 -0
  37. data/spec/dummy/config/application.rb +23 -0
  38. data/spec/dummy/config/boot.rb +5 -0
  39. data/spec/dummy/config/database.yml +25 -0
  40. data/spec/dummy/config/environment.rb +5 -0
  41. data/spec/dummy/config/environments/development.rb +29 -0
  42. data/spec/dummy/config/environments/production.rb +80 -0
  43. data/spec/dummy/config/environments/test.rb +36 -0
  44. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  46. data/spec/dummy/config/initializers/inflections.rb +16 -0
  47. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  48. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  49. data/spec/dummy/config/initializers/session_store.rb +3 -0
  50. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/spec/dummy/config/locales/en.yml +23 -0
  52. data/spec/dummy/config/routes.rb +7 -0
  53. data/spec/dummy/config.ru +4 -0
  54. data/spec/dummy/db/development.sqlite3 +0 -0
  55. data/spec/dummy/db/schema.rb +16 -0
  56. data/spec/dummy/db/test.sqlite3 +0 -0
  57. data/spec/dummy/lib/assets/.keep +0 -0
  58. data/spec/dummy/log/.keep +0 -0
  59. data/spec/dummy/log/development.log +227 -0
  60. data/spec/dummy/log/test.log +1606 -0
  61. data/spec/dummy/public/404.html +58 -0
  62. data/spec/dummy/public/422.html +58 -0
  63. data/spec/dummy/public/500.html +57 -0
  64. data/spec/dummy/public/favicon.ico +0 -0
  65. data/spec/spec_helper.rb +35 -0
  66. data/stair_master.gemspec +11 -8
  67. metadata +193 -15
@@ -0,0 +1,1606 @@
1
+ Processing by HomeController#show as HTML
2
+ Completed 500 Internal Server Error in 30ms
3
+ Processing by HomeController#show as HTML
4
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
5
+ Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.0ms)
6
+ Processing by HomeController#show as HTML
7
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
8
+ Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.0ms)
9
+ Processing by HomeController#show as HTML
10
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
11
+ Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 0.0ms)
12
+ Processing by HomeController#show as HTML
13
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
14
+ Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.0ms)
15
+ Processing by HomeController#show as HTML
16
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
17
+ Completed 200 OK in 24ms (Views: 20.0ms | ActiveRecord: 0.0ms)
18
+ Processing by HomeController#show as HTML
19
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
20
+ Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.0ms)
21
+ Processing by HomeController#show as HTML
22
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
23
+ Completed 200 OK in 25ms (Views: 21.0ms | ActiveRecord: 0.0ms)
24
+ Processing by HomeController#show as HTML
25
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
26
+ Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 0.0ms)
27
+ Processing by HomeController#show as HTML
28
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
29
+ Completed 200 OK in 9ms (Views: 5.2ms | ActiveRecord: 0.0ms)
30
+ Processing by HomeController#show as HTML
31
+ Rendered steps/show.html.erb within layouts/application (0.3ms)
32
+ Completed 200 OK in 10ms (Views: 5.9ms | ActiveRecord: 0.0ms)
33
+ Processing by HomeController#show as HTML
34
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
35
+ Processing by HomeController#show as HTML
36
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
37
+ Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.0ms)
38
+ Processing by HomeController#show as HTML
39
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
40
+ Processing by HomeController#show as HTML
41
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
42
+ Processing by HomeController#show as HTML
43
+ Rendered steps/show.html.erb within layouts/application (0.2ms)
44
+ Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms)
45
+ Processing by HomeController#show as HTML
46
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
47
+ Processing by HomeController#show as HTML
48
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
49
+ Processing by StepOneController#show as HTML
50
+ Completed 500 Internal Server Error in 28ms
51
+ Processing by StepOneController#show as HTML
52
+ Completed 500 Internal Server Error in 0ms
53
+ Processing by StepOneController#show as HTML
54
+ Completed 500 Internal Server Error in 0ms
55
+ Processing by StepOneController#show as HTML
56
+ Rendered application/show.html.erb within layouts/application (0.2ms)
57
+ Completed 200 OK in 8ms (Views: 5.0ms | ActiveRecord: 0.0ms)
58
+ Processing by StepOneController#show as HTML
59
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
60
+ Processing by StepOneController#show as HTML
61
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
62
+ Processing by StepOneController#show as HTML
63
+ Rendered application/show.html.erb within layouts/application (0.2ms)
64
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
65
+ Processing by StepOneController#show as HTML
66
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
67
+ Processing by StepOneController#show as HTML
68
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
69
+ Processing by StepOneController#show as HTML
70
+ Rendered application/show.html.erb within layouts/application (0.2ms)
71
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
72
+ Processing by StepOneController#show as HTML
73
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
74
+ Processing by StepOneController#show as HTML
75
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
76
+ Processing by StepOneController#show as HTML
77
+ Rendered application/show.html.erb within layouts/application (0.2ms)
78
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.0ms)
79
+ Processing by StepOneController#show as HTML
80
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
81
+ Processing by StepOneController#show as HTML
82
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
83
+ Processing by StepOneController#show as HTML
84
+ Rendered application/show.html.erb within layouts/application (0.3ms)
85
+ Completed 200 OK in 8ms (Views: 4.7ms | ActiveRecord: 0.0ms)
86
+ Processing by StepOneController#show as HTML
87
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
88
+ Processing by StepOneController#show as HTML
89
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
90
+ Processing by StepOneController#show as HTML
91
+ Rendered application/show.html.erb within layouts/application (0.2ms)
92
+ Completed 200 OK in 8ms (Views: 4.5ms | ActiveRecord: 0.0ms)
93
+ Processing by StepOneController#show as HTML
94
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
95
+ Processing by StepOneController#show as HTML
96
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
97
+ Processing by StepOneController#show as HTML
98
+ Rendered application/show.html.erb within layouts/application (0.3ms)
99
+ Completed 200 OK in 8ms (Views: 4.6ms | ActiveRecord: 0.0ms)
100
+ Processing by StepOneController#show as HTML
101
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
102
+ Processing by StepOneController#show as HTML
103
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
104
+ Processing by StepOneController#show as HTML
105
+ Rendered application/show.html.erb within layouts/application (0.2ms)
106
+ Completed 200 OK in 7ms (Views: 4.4ms | ActiveRecord: 0.0ms)
107
+ Processing by StepOneController#show as HTML
108
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
109
+ Processing by StepOneController#show as HTML
110
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
111
+ Processing by StepOneController#show as HTML
112
+ Rendered application/show.html.erb within layouts/application (0.2ms)
113
+ Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.0ms)
114
+ Processing by StepOneController#show as HTML
115
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
116
+ Processing by StepOneController#show as HTML
117
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
118
+ Processing by StepOneController#show as HTML
119
+ Rendered application/show.html.erb within layouts/application (0.2ms)
120
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.0ms)
121
+ Processing by StepOneController#show as HTML
122
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
123
+ Processing by StepOneController#show as HTML
124
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
125
+ Processing by StepOneController#show as HTML
126
+ Rendered application/show.html.erb within layouts/application (0.2ms)
127
+ Completed 200 OK in 9ms (Views: 5.6ms | ActiveRecord: 0.0ms)
128
+ Processing by StepOneController#show as HTML
129
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
130
+ Processing by StepOneController#show as HTML
131
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
132
+ Processing by StepOneController#show as HTML
133
+ Rendered application/show.html.erb within layouts/application (0.2ms)
134
+ Completed 200 OK in 8ms (Views: 4.9ms | ActiveRecord: 0.0ms)
135
+ Processing by StepOneController#show as HTML
136
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
137
+ Processing by StepOneController#show as HTML
138
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
139
+ Processing by BaseController#show as HTML
140
+ Rendered application/show.html.erb within layouts/application (0.3ms)
141
+ Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.0ms)
142
+ Processing by BaseController#show as HTML
143
+ Rendered application/show.html.erb within layouts/application (0.3ms)
144
+ Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.0ms)
145
+ Processing by BaseController#show as HTML
146
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
147
+ Processing by BaseController#show as HTML
148
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
149
+ Processing by Base::BaseController#show as HTML
150
+ Rendered application/show.html.erb within layouts/application (0.2ms)
151
+ Completed 200 OK in 8ms (Views: 4.7ms | ActiveRecord: 0.0ms)
152
+ Processing by Base::BaseController#show as HTML
153
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
154
+ Processing by Base::BaseController#show as HTML
155
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
156
+ Processing by Base::StepTwoController#show as HTML
157
+ Rendered application/show.html.erb within layouts/application (0.3ms)
158
+ Completed 200 OK in 11ms (Views: 7.0ms | ActiveRecord: 0.0ms)
159
+ Processing by Base::StepTwoController#show as HTML
160
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
161
+ Processing by Base::StepTwoController#show as HTML
162
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
163
+ Processing by Base::StepOneController#show as HTML
164
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
165
+ Processing by Base::StepOneController#show as HTML
166
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
167
+ Processing by Base::StepOneController#show as HTML
168
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
169
+ Processing by Base::StepOneController#show as HTML
170
+ Rendered application/show.html.erb within layouts/application (0.3ms)
171
+ Completed 200 OK in 10ms (Views: 5.3ms | ActiveRecord: 0.0ms)
172
+ Processing by Base::StepOneController#show as HTML
173
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
174
+ Processing by Base::StepOneController#show as HTML
175
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
176
+ Processing by Base::StepTwoController#show as HTML
177
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
178
+ Processing by Base::StepTwoController#show as HTML
179
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
180
+ Processing by Base::StepTwoController#show as HTML
181
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
182
+ Processing by Base::StepOneController#show as HTML
183
+ Rendered application/show.html.erb within layouts/application (0.3ms)
184
+ Completed 200 OK in 27ms (Views: 23.2ms | ActiveRecord: 0.0ms)
185
+ Processing by Base::StepOneController#show as HTML
186
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
187
+ Processing by Base::StepOneController#show as HTML
188
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
189
+ Processing by Base::StepTwoController#show as HTML
190
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
191
+ Processing by Base::StepTwoController#show as HTML
192
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
193
+ Processing by Base::StepTwoController#show as HTML
194
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
195
+ Processing by Base::StepThreeController#show as HTML
196
+ Rendered application/show.html.erb within layouts/application (0.3ms)
197
+ Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.0ms)
198
+ Processing by Base::StepThreeController#show as HTML
199
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
200
+ Processing by Base::StepThreeController#show as HTML
201
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
202
+ Processing by Base::StepTwoController#show as HTML
203
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
204
+ Processing by Base::StepTwoController#show as HTML
205
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
206
+ Processing by Base::StepTwoController#show as HTML
207
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
208
+ Processing by Base::StepOneController#show as HTML
209
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
210
+ Processing by Base::StepOneController#show as HTML
211
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
212
+ Processing by Base::StepOneController#show as HTML
213
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
214
+ Processing by Base::StepThreeController#show as HTML
215
+ Rendered application/show.html.erb within layouts/application (0.3ms)
216
+ Completed 200 OK in 13ms (Views: 6.6ms | ActiveRecord: 0.0ms)
217
+ Processing by Base::StepThreeController#show as HTML
218
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
219
+ Processing by Base::StepThreeController#show as HTML
220
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
221
+ Processing by Base::StepTwoController#show as HTML
222
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
223
+ Processing by Base::StepTwoController#show as HTML
224
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
225
+ Processing by Base::StepTwoController#show as HTML
226
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
227
+ Processing by Base::StepOneController#show as HTML
228
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
229
+ Processing by Base::StepOneController#show as HTML
230
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
231
+ Processing by Base::StepOneController#show as HTML
232
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
233
+ Processing by Base::StepThreeController#show as HTML
234
+ Rendered application/show.html.erb within layouts/application (0.5ms)
235
+ Completed 200 OK in 11ms (Views: 7.2ms | ActiveRecord: 0.0ms)
236
+ Processing by Base::StepThreeController#show as HTML
237
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
238
+ Processing by Base::StepThreeController#show as HTML
239
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
240
+ Processing by Base::StepTwoController#show as HTML
241
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
242
+ Processing by Base::StepTwoController#show as HTML
243
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
244
+ Processing by Base::StepTwoController#show as HTML
245
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
246
+ Processing by Base::StepOneController#show as HTML
247
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
248
+ Processing by Base::StepOneController#show as HTML
249
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
250
+ Processing by Base::StepOneController#show as HTML
251
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
252
+ Processing by Base::StepThreeController#show as HTML
253
+ Rendered application/show.html.erb within layouts/application (0.3ms)
254
+ Completed 200 OK in 9ms (Views: 5.5ms | ActiveRecord: 0.0ms)
255
+ Processing by Base::StepThreeController#show as HTML
256
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
257
+ Processing by Base::StepThreeController#show as HTML
258
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
259
+ Processing by Base::StepTwoController#show as HTML
260
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
261
+ Processing by Base::StepTwoController#show as HTML
262
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
263
+ Processing by Base::StepTwoController#show as HTML
264
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
265
+ Processing by Base::StepOneController#show as HTML
266
+ Completed 200 OK in 37ms (Views: 36.8ms | ActiveRecord: 0.0ms)
267
+ Processing by Base::StepOneController#show as HTML
268
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
269
+ Processing by Base::StepOneController#show as HTML
270
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
271
+ Processing by Base::StepOneController#show as HTML
272
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
273
+ Processing by Base::StepThreeController#show as HTML
274
+ Rendered application/show.html.erb within layouts/application (0.3ms)
275
+ Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.0ms)
276
+ Processing by Base::StepThreeController#show as HTML
277
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
278
+ Processing by Base::StepThreeController#show as HTML
279
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
280
+ Processing by Base::StepTwoController#show as HTML
281
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
282
+ Processing by Base::StepTwoController#show as HTML
283
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
284
+ Processing by Base::StepTwoController#show as HTML
285
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
286
+ Processing by Base::StepOneController#show as HTML
287
+ Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
288
+ Processing by Base::StepOneController#show as HTML
289
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
290
+ Processing by Base::StepOneController#show as HTML
291
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
292
+ Processing by Base::StepOneController#show as HTML
293
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
294
+ Processing by Base::StepThreeController#show as HTML
295
+ Rendered application/show.html.erb within layouts/application (0.3ms)
296
+ Completed 200 OK in 9ms (Views: 5.4ms | ActiveRecord: 0.0ms)
297
+ Processing by Base::StepThreeController#show as HTML
298
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
299
+ Processing by Base::StepThreeController#show as HTML
300
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
301
+ Processing by Base::StepTwoController#show as HTML
302
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
303
+ Processing by Base::StepTwoController#show as HTML
304
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
305
+ Processing by Base::StepTwoController#show as HTML
306
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
307
+ Processing by Base::StepOneController#show as HTML
308
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
309
+ Processing by Base::StepOneController#show as HTML
310
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
311
+ Processing by Base::StepOneController#show as HTML
312
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
313
+ Processing by Base::StepThreeController#show as HTML
314
+ Rendered application/show.html.erb within layouts/application (0.3ms)
315
+ Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.0ms)
316
+ Processing by Base::StepThreeController#show as HTML
317
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
318
+ Processing by Base::StepThreeController#show as HTML
319
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
320
+ Processing by Base::StepTwoController#show as HTML
321
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
322
+ Processing by Base::StepTwoController#show as HTML
323
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
324
+ Processing by Base::StepTwoController#show as HTML
325
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
326
+ Processing by Base::StepOneController#show as HTML
327
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
328
+ Processing by Base::StepOneController#show as HTML
329
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
330
+ Processing by Base::StepOneController#show as HTML
331
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
332
+ Processing by Base::StepThreeController#show as HTML
333
+ Rendered application/show.html.erb within layouts/application (0.3ms)
334
+ Completed 200 OK in 9ms (Views: 5.3ms | ActiveRecord: 0.0ms)
335
+ Processing by Base::StepThreeController#show as HTML
336
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
337
+ Processing by Base::StepThreeController#show as HTML
338
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
339
+ Processing by Base::StepTwoController#show as HTML
340
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
341
+ Processing by Base::StepTwoController#show as HTML
342
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
343
+ Processing by Base::StepTwoController#show as HTML
344
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
345
+ Processing by Base::StepOneController#show as HTML
346
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
347
+ Processing by Base::StepOneController#show as HTML
348
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
349
+ Processing by Base::StepOneController#show as HTML
350
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
351
+ Processing by Base::StepThreeController#show as HTML
352
+ Rendered application/show.html.erb within layouts/application (0.3ms)
353
+ Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms)
354
+ Processing by Base::StepThreeController#show as HTML
355
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
356
+ Processing by Base::StepThreeController#show as HTML
357
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
358
+ Processing by Base::StepTwoController#show as HTML
359
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
360
+ Processing by Base::StepTwoController#show as HTML
361
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
362
+ Processing by Base::StepTwoController#show as HTML
363
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
364
+ Processing by Base::StepOneController#show as HTML
365
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
366
+ Processing by Base::StepOneController#show as HTML
367
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
368
+ Processing by Base::StepOneController#show as HTML
369
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
370
+ Processing by Base::StepOneController#show as HTML
371
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
372
+ Processing by Base::StepThreeController#show as HTML
373
+ Rendered application/show.html.erb within layouts/application (0.3ms)
374
+ Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.0ms)
375
+ Processing by Base::StepThreeController#show as HTML
376
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
377
+ Processing by Base::StepThreeController#show as HTML
378
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
379
+ Processing by Base::StepTwoController#show as HTML
380
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
381
+ Processing by Base::StepTwoController#show as HTML
382
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
383
+ Processing by Base::StepTwoController#show as HTML
384
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
385
+ Processing by Base::StepOneController#show as HTML
386
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
387
+ Processing by Base::StepOneController#show as HTML
388
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
389
+ Processing by Base::StepOneController#show as HTML
390
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
391
+ Processing by Base::StepOneController#show as HTML
392
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
393
+ Processing by Base::StepOneController#show as HTML
394
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
395
+ Processing by Base::StepThreeController#show as HTML
396
+ Rendered application/show.html.erb within layouts/application (0.3ms)
397
+ Completed 200 OK in 10ms (Views: 5.7ms | ActiveRecord: 0.0ms)
398
+ Processing by Base::StepThreeController#show as HTML
399
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
400
+ Processing by Base::StepThreeController#show as HTML
401
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
402
+ Processing by Base::StepTwoController#show as HTML
403
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
404
+ Processing by Base::StepTwoController#show as HTML
405
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
406
+ Processing by Base::StepTwoController#show as HTML
407
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
408
+ Processing by Base::StepOneController#show as HTML
409
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
410
+ Processing by Base::StepOneController#show as HTML
411
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
412
+ Processing by Base::StepOneController#show as HTML
413
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
414
+ Processing by Base::StepOneController#show as HTML
415
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
416
+ Processing by Base::StepOneController#show as HTML
417
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
418
+ Processing by Base::StepThreeController#show as HTML
419
+ Rendered application/show.html.erb within layouts/application (0.3ms)
420
+ Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.0ms)
421
+ Processing by Base::StepThreeController#show as HTML
422
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
423
+ Processing by Base::StepThreeController#show as HTML
424
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
425
+ Processing by Base::StepTwoController#show as HTML
426
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
427
+ Processing by Base::StepTwoController#show as HTML
428
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
429
+ Processing by Base::StepTwoController#show as HTML
430
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
431
+ Processing by Base::StepOneController#show as HTML
432
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
433
+ Processing by Base::StepOneController#show as HTML
434
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
435
+ Processing by Base::StepOneController#show as HTML
436
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
437
+ Processing by Base::StepOneController#show as HTML
438
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
439
+ Processing by Base::StepOneController#show as HTML
440
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
441
+ Processing by Base::StepOneController#show as HTML
442
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
443
+ Processing by Base::StepThreeController#show as HTML
444
+ Rendered application/show.html.erb within layouts/application (0.3ms)
445
+ Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.0ms)
446
+ Processing by Base::StepThreeController#show as HTML
447
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
448
+ Processing by Base::StepThreeController#show as HTML
449
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
450
+ Processing by Base::StepTwoController#show as HTML
451
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
452
+ Processing by Base::StepTwoController#show as HTML
453
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
454
+ Processing by Base::StepTwoController#show as HTML
455
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
456
+ Processing by Base::StepOneController#show as HTML
457
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
458
+ Processing by Base::StepOneController#show as HTML
459
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
460
+ Processing by Base::StepOneController#show as HTML
461
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
462
+ Processing by Base::StepOneController#show as HTML
463
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
464
+ Processing by Base::StepOneController#show as HTML
465
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
466
+ Processing by Base::StepOneController#show as HTML
467
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
468
+ Processing by Base::StepThreeController#show as HTML
469
+ Rendered application/show.html.erb within layouts/application (0.3ms)
470
+ Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.0ms)
471
+ Processing by Base::StepThreeController#show as HTML
472
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
473
+ Processing by Base::StepThreeController#show as HTML
474
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
475
+ Processing by Base::StepTwoController#show as HTML
476
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
477
+ Processing by Base::StepTwoController#show as HTML
478
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
479
+ Processing by Base::StepTwoController#show as HTML
480
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
481
+ Processing by Base::StepOneController#show as HTML
482
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
483
+ Processing by Base::StepOneController#show as HTML
484
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
485
+ Processing by Base::StepOneController#show as HTML
486
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
487
+ Processing by Base::StepOneController#show as HTML
488
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
489
+ Processing by Base::StepOneController#show as HTML
490
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
491
+ Processing by Base::StepOneController#show as HTML
492
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
493
+ Processing by Base::StepOneController#show as HTML
494
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
495
+ Processing by Base::StepThreeController#show as HTML
496
+ Rendered application/show.html.erb within layouts/application (0.3ms)
497
+ Completed 200 OK in 10ms (Views: 5.5ms | ActiveRecord: 0.0ms)
498
+ Processing by Base::StepThreeController#show as HTML
499
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
500
+ Processing by Base::StepThreeController#show as HTML
501
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
502
+ Processing by Base::StepTwoController#show as HTML
503
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
504
+ Processing by Base::StepTwoController#show as HTML
505
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
506
+ Processing by Base::StepTwoController#show as HTML
507
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
508
+ Processing by Base::StepOneController#show as HTML
509
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
510
+ Processing by Base::StepOneController#show as HTML
511
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
512
+ Processing by Base::StepOneController#show as HTML
513
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
514
+ Processing by Base::StepOneController#show as HTML
515
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
516
+ Processing by Base::StepOneController#show as HTML
517
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
518
+ Processing by Base::StepOneController#show as HTML
519
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
520
+ Processing by Base::StepOneController#show as HTML
521
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
522
+ Processing by Base::StepOneController#show as HTML
523
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
524
+ Processing by Base::StepThreeController#show as HTML
525
+ Rendered application/show.html.erb within layouts/application (0.3ms)
526
+ Completed 200 OK in 12ms (Views: 5.6ms | ActiveRecord: 0.0ms)
527
+ Processing by Base::StepThreeController#show as HTML
528
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
529
+ Processing by Base::StepThreeController#show as HTML
530
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
531
+ Processing by Base::StepTwoController#show as HTML
532
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
533
+ Processing by Base::StepTwoController#show as HTML
534
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
535
+ Processing by Base::StepTwoController#show as HTML
536
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
537
+ Processing by Base::StepOneController#show as HTML
538
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
539
+ Processing by Base::StepOneController#show as HTML
540
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
541
+ Processing by Base::StepOneController#show as HTML
542
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
543
+ Processing by Base::StepOneController#show as HTML
544
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
545
+ Processing by Base::StepOneController#show as HTML
546
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
547
+ Processing by Base::StepOneController#show as HTML
548
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
549
+ Processing by Base::StepOneController#show as HTML
550
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
551
+ Processing by Base::StepOneController#show as HTML
552
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
553
+ Processing by Base::StepOneController#show as HTML
554
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
555
+ Processing by Base::StepOneController#show as HTML
556
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
557
+ Processing by Base::StepThreeController#show as HTML
558
+ Rendered application/show.html.erb within layouts/application (0.3ms)
559
+ Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms)
560
+ Processing by Base::StepThreeController#show as HTML
561
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
562
+ Processing by Base::StepThreeController#show as HTML
563
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
564
+ Processing by Base::StepTwoController#show as HTML
565
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
566
+ Processing by Base::StepTwoController#show as HTML
567
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
568
+ Processing by Base::StepTwoController#show as HTML
569
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
570
+ Processing by Base::StepOneController#show as HTML
571
+ Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
572
+ Processing by Base::StepOneController#show as HTML
573
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
574
+ Processing by Base::StepOneController#show as HTML
575
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
576
+ Processing by Base::StepOneController#show as HTML
577
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
578
+ Processing by Base::StepThreeController#show as HTML
579
+ Rendered application/show.html.erb within layouts/application (0.4ms)
580
+ Completed 200 OK in 13ms (Views: 9.2ms | ActiveRecord: 0.0ms)
581
+ Processing by Base::StepThreeController#show as HTML
582
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
583
+ Processing by Base::StepThreeController#show as HTML
584
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
585
+ Processing by Base::StepTwoController#show as HTML
586
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
587
+ Processing by Base::StepTwoController#show as HTML
588
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
589
+ Processing by Base::StepTwoController#show as HTML
590
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
591
+ Processing by Base::StepOneController#show as HTML
592
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
593
+ Processing by Base::StepOneController#show as HTML
594
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
595
+ Processing by Base::StepOneController#show as HTML
596
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
597
+ Processing by Base::StepOneController#show as HTML
598
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
599
+ Processing by Base::StepOneController#show as HTML
600
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
601
+ Processing by Base::StepOneController#show as HTML
602
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
603
+ Processing by Base::StepOneController#show as HTML
604
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
605
+ Processing by Base::StepOneController#show as HTML
606
+ Completed 200 OK in 21ms (Views: 0.7ms | ActiveRecord: 0.0ms)
607
+ Processing by Base::StepOneController#show as HTML
608
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
609
+ Processing by Base::StepOneController#show as HTML
610
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
611
+ Processing by Base::StepThreeController#show as HTML
612
+ Rendered application/show.html.erb within layouts/application (0.4ms)
613
+ Completed 200 OK in 10ms (Views: 6.7ms | ActiveRecord: 0.0ms)
614
+ Processing by Base::StepThreeController#show as HTML
615
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
616
+ Processing by Base::StepThreeController#show as HTML
617
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
618
+ Processing by Base::StepThreeController#show as HTML
619
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
620
+ Processing by Base::StepThreeController#show as HTML
621
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
622
+ Processing by Base::StepThreeController#show as HTML
623
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
624
+ Processing by Base::StepThreeController#show as HTML
625
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
626
+ Processing by Base::StepThreeController#show as HTML
627
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
628
+ Processing by Base::StepThreeController#show as HTML
629
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
630
+ Processing by Base::StepTwoController#show as HTML
631
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
632
+ Processing by Base::StepTwoController#show as HTML
633
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
634
+ Processing by Base::StepTwoController#show as HTML
635
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
636
+ Processing by Base::StepTwoController#show as HTML
637
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
638
+ Processing by Base::StepTwoController#show as HTML
639
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
640
+ Processing by Base::StepTwoController#show as HTML
641
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
642
+ Processing by Base::StepTwoController#show as HTML
643
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
644
+ Processing by Base::StepTwoController#show as HTML
645
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
646
+ Processing by Base::StepTwoController#show as HTML
647
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
648
+ Processing by Base::StepOneController#show as HTML
649
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
650
+ Processing by Base::StepOneController#show as HTML
651
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
652
+ Processing by Base::StepOneController#show as HTML
653
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
654
+ Processing by Base::StepOneController#show as HTML
655
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
656
+ Processing by Base::StepOneController#show as HTML
657
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
658
+ Processing by Base::StepOneController#show as HTML
659
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
660
+ Processing by Base::StepOneController#show as HTML
661
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
662
+ Processing by Base::StepOneController#show as HTML
663
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
664
+ Processing by Base::StepOneController#show as HTML
665
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
666
+ Processing by Base::StepOneController#show as HTML
667
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
668
+ Processing by Base::StepThreeController#show as HTML
669
+ Rendered application/show.html.erb within layouts/application (0.3ms)
670
+ Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms)
671
+ Processing by Base::StepThreeController#show as HTML
672
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
673
+ Processing by Base::StepThreeController#show as HTML
674
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
675
+ Processing by Base::StepThreeController#show as HTML
676
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
677
+ Processing by Base::StepThreeController#show as HTML
678
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
679
+ Processing by Base::StepThreeController#show as HTML
680
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
681
+ Processing by Base::StepThreeController#show as HTML
682
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
683
+ Processing by Base::StepThreeController#show as HTML
684
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
685
+ Processing by Base::StepThreeController#show as HTML
686
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
687
+ Processing by Base::StepTwoController#show as HTML
688
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
689
+ Processing by Base::StepTwoController#show as HTML
690
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
691
+ Processing by Base::StepTwoController#show as HTML
692
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
693
+ Processing by Base::StepTwoController#show as HTML
694
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
695
+ Processing by Base::StepTwoController#show as HTML
696
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
697
+ Processing by Base::StepTwoController#show as HTML
698
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
699
+ Processing by Base::StepTwoController#show as HTML
700
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
701
+ Processing by Base::StepTwoController#show as HTML
702
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
703
+ Processing by Base::StepTwoController#show as HTML
704
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
705
+ Processing by Base::StepOneController#show as HTML
706
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
707
+ Processing by Base::StepOneController#show as HTML
708
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
709
+ Processing by Base::StepOneController#show as HTML
710
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
711
+ Processing by Base::StepOneController#show as HTML
712
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
713
+ Processing by Base::StepOneController#show as HTML
714
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
715
+ Processing by Base::StepOneController#show as HTML
716
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
717
+ Processing by Base::StepOneController#show as HTML
718
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
719
+ Processing by Base::StepOneController#show as HTML
720
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
721
+ Processing by Base::StepOneController#show as HTML
722
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
723
+ Processing by Base::StepOneController#show as HTML
724
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
725
+ Processing by Base::StepThreeController#show as HTML
726
+ Rendered application/show.html.erb within layouts/application (0.3ms)
727
+ Completed 200 OK in 10ms (Views: 5.3ms | ActiveRecord: 0.0ms)
728
+ Processing by Base::StepThreeController#show as HTML
729
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
730
+ Processing by Base::StepThreeController#show as HTML
731
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
732
+ Processing by Base::StepThreeController#show as HTML
733
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
734
+ Processing by Base::StepThreeController#show as HTML
735
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
736
+ Processing by Base::StepThreeController#show as HTML
737
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
738
+ Processing by Base::StepThreeController#show as HTML
739
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
740
+ Processing by Base::StepThreeController#show as HTML
741
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
742
+ Processing by Base::StepThreeController#show as HTML
743
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
744
+ Processing by Base::StepTwoController#show as HTML
745
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
746
+ Processing by Base::StepTwoController#show as HTML
747
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
748
+ Processing by Base::StepTwoController#show as HTML
749
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
750
+ Processing by Base::StepTwoController#show as HTML
751
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
752
+ Processing by Base::StepTwoController#show as HTML
753
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
754
+ Processing by Base::StepTwoController#show as HTML
755
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
756
+ Processing by Base::StepTwoController#show as HTML
757
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
758
+ Processing by Base::StepTwoController#show as HTML
759
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
760
+ Processing by Base::StepTwoController#show as HTML
761
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
762
+ Processing by Base::StepOneController#show as HTML
763
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
764
+ Processing by Base::StepOneController#show as HTML
765
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
766
+ Processing by Base::StepOneController#show as HTML
767
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
768
+ Processing by Base::StepOneController#show as HTML
769
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
770
+ Processing by Base::StepOneController#show as HTML
771
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
772
+ Processing by Base::StepOneController#show as HTML
773
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
774
+ Processing by Base::StepOneController#show as HTML
775
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
776
+ Processing by Base::StepOneController#show as HTML
777
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
778
+ Processing by Base::StepOneController#show as HTML
779
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
780
+ Processing by Base::StepOneController#show as HTML
781
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
782
+ Processing by Base::StepThreeController#show as HTML
783
+ Rendered application/show.html.erb within layouts/application (0.3ms)
784
+ Completed 200 OK in 10ms (Views: 6.1ms | ActiveRecord: 0.0ms)
785
+ Processing by Base::StepThreeController#show as HTML
786
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
787
+ Processing by Base::StepThreeController#show as HTML
788
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
789
+ Processing by Base::StepThreeController#show as HTML
790
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
791
+ Processing by Base::StepThreeController#show as HTML
792
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
793
+ Processing by Base::StepThreeController#show as HTML
794
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
795
+ Processing by Base::StepThreeController#show as HTML
796
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
797
+ Processing by Base::StepThreeController#show as HTML
798
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
799
+ Processing by Base::StepThreeController#show as HTML
800
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
801
+ Processing by Base::StepTwoController#show as HTML
802
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
803
+ Processing by Base::StepTwoController#show as HTML
804
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
805
+ Processing by Base::StepTwoController#show as HTML
806
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
807
+ Processing by Base::StepTwoController#show as HTML
808
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
809
+ Processing by Base::StepTwoController#show as HTML
810
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
811
+ Processing by Base::StepTwoController#show as HTML
812
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
813
+ Processing by Base::StepTwoController#show as HTML
814
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
815
+ Processing by Base::StepTwoController#show as HTML
816
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
817
+ Processing by Base::StepTwoController#show as HTML
818
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
819
+ Processing by Base::StepOneController#show as HTML
820
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
821
+ Processing by Base::StepOneController#show as HTML
822
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
823
+ Processing by Base::StepOneController#show as HTML
824
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
825
+ Processing by Base::StepOneController#show as HTML
826
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
827
+ Processing by Base::StepOneController#show as HTML
828
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
829
+ Processing by Base::StepOneController#show as HTML
830
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
831
+ Processing by Base::StepOneController#show as HTML
832
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
833
+ Processing by Base::StepOneController#show as HTML
834
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
835
+ Processing by Base::StepOneController#show as HTML
836
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
837
+ Processing by Base::StepOneController#show as HTML
838
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
839
+ Processing by Base::StepOneController#show as HTML
840
+ Rendered application/show.html.erb within layouts/application (0.2ms)
841
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
842
+ Processing by Base::StepOneController#show as HTML
843
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
844
+ Processing by Base::StepOneController#show as HTML
845
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
846
+ Processing by Base::StepOneController#show as HTML
847
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
848
+ Processing by Base::StepOneController#show as HTML
849
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
850
+ Processing by Base::StepOneController#show as HTML
851
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
852
+ Processing by Base::StepOneController#show as HTML
853
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
854
+ Processing by Base::StepOneController#show as HTML
855
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
856
+ Processing by Base::StepOneController#show as HTML
857
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
858
+ Processing by Base::StepThreeController#show as HTML
859
+ Rendered application/show.html.erb within layouts/application (0.2ms)
860
+ Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
861
+ Processing by Base::StepThreeController#show as HTML
862
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
863
+ Processing by Base::StepThreeController#show as HTML
864
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
865
+ Processing by Base::StepThreeController#show as HTML
866
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
867
+ Processing by Base::StepThreeController#show as HTML
868
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
869
+ Processing by Base::StepThreeController#show as HTML
870
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
871
+ Processing by Base::StepThreeController#show as HTML
872
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
873
+ Processing by Base::StepThreeController#show as HTML
874
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
875
+ Processing by Base::StepThreeController#show as HTML
876
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
877
+ Processing by Base::StepTwoController#show as HTML
878
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
879
+ Processing by Base::StepTwoController#show as HTML
880
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
881
+ Processing by Base::StepTwoController#show as HTML
882
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
883
+ Processing by Base::StepTwoController#show as HTML
884
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
885
+ Processing by Base::StepTwoController#show as HTML
886
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
887
+ Processing by Base::StepTwoController#show as HTML
888
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
889
+ Processing by Base::StepTwoController#show as HTML
890
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
891
+ Processing by Base::StepTwoController#show as HTML
892
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
893
+ Processing by Base::StepTwoController#show as HTML
894
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
895
+ Processing by Base::StepOneController#show as HTML
896
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
897
+ Processing by Base::StepOneController#show as HTML
898
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
899
+ Processing by Base::StepOneController#show as HTML
900
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
901
+ Processing by Base::StepOneController#show as HTML
902
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
903
+ Processing by Base::StepOneController#show as HTML
904
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
905
+ Processing by Base::StepOneController#show as HTML
906
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
907
+ Processing by Base::StepOneController#show as HTML
908
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
909
+ Processing by Base::StepOneController#show as HTML
910
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
911
+ Processing by Base::StepOneController#show as HTML
912
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
913
+ Processing by Base::StepOneController#show as HTML
914
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
915
+ Processing by Base::StepThreeController#show as HTML
916
+ Rendered application/show.html.erb within layouts/application (0.2ms)
917
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
918
+ Processing by Base::StepThreeController#show as HTML
919
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
920
+ Processing by Base::StepThreeController#show as HTML
921
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
922
+ Processing by Base::StepThreeController#show as HTML
923
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
924
+ Processing by Base::StepThreeController#show as HTML
925
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
926
+ Processing by Base::StepThreeController#show as HTML
927
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
928
+ Processing by Base::StepThreeController#show as HTML
929
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
930
+ Processing by Base::StepThreeController#show as HTML
931
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
932
+ Processing by Base::StepThreeController#show as HTML
933
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
934
+ Processing by Base::StepTwoController#show as HTML
935
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
936
+ Processing by Base::StepTwoController#show as HTML
937
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
938
+ Processing by Base::StepTwoController#show as HTML
939
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
940
+ Processing by Base::StepTwoController#show as HTML
941
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
942
+ Processing by Base::StepTwoController#show as HTML
943
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
944
+ Processing by Base::StepTwoController#show as HTML
945
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
946
+ Processing by Base::StepTwoController#show as HTML
947
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
948
+ Processing by Base::StepTwoController#show as HTML
949
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
950
+ Processing by Base::StepTwoController#show as HTML
951
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
952
+ Processing by Base::StepOneController#show as HTML
953
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
954
+ Processing by Base::StepOneController#show as HTML
955
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
956
+ Processing by Base::StepOneController#show as HTML
957
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
958
+ Processing by Base::StepOneController#show as HTML
959
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
960
+ Processing by Base::StepOneController#show as HTML
961
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
962
+ Processing by Base::StepOneController#show as HTML
963
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
964
+ Processing by Base::StepOneController#show as HTML
965
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
966
+ Processing by Base::StepOneController#show as HTML
967
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
968
+ Processing by Base::StepOneController#show as HTML
969
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
970
+ Processing by Base::StepOneController#show as HTML
971
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
972
+ Processing by Base::StepOneController#show as HTML
973
+ Rendered application/show.html.erb within layouts/application (0.3ms)
974
+ Completed 200 OK in 32ms (Views: 31.1ms | ActiveRecord: 0.0ms)
975
+ Processing by Base::StepOneController#show as HTML
976
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
977
+ Processing by Base::StepOneController#show as HTML
978
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
979
+ Processing by Base::StepOneController#show as HTML
980
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
981
+ Processing by Base::StepOneController#show as HTML
982
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
983
+ Processing by Base::StepOneController#show as HTML
984
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
985
+ Processing by Base::StepOneController#show as HTML
986
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
987
+ Processing by Base::StepOneController#show as HTML
988
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
989
+ Processing by Base::StepOneController#show as HTML
990
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
991
+ Processing by Base::StepOneController#show as HTML
992
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
993
+ Processing by Base::StepThreeController#show as HTML
994
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
995
+ Processing by Base::StepThreeController#show as HTML
996
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
997
+ Processing by Base::StepThreeController#show as HTML
998
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
999
+ Processing by Base::StepThreeController#show as HTML
1000
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1001
+ Processing by Base::StepThreeController#show as HTML
1002
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1003
+ Processing by Base::StepThreeController#show as HTML
1004
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1005
+ Processing by Base::StepThreeController#show as HTML
1006
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1007
+ Processing by Base::StepThreeController#show as HTML
1008
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1009
+ Processing by Base::StepThreeController#show as HTML
1010
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1011
+ Processing by Base::StepTwoController#show as HTML
1012
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1013
+ Processing by Base::StepTwoController#show as HTML
1014
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1015
+ Processing by Base::StepTwoController#show as HTML
1016
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1017
+ Processing by Base::StepTwoController#show as HTML
1018
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1019
+ Processing by Base::StepTwoController#show as HTML
1020
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1021
+ Processing by Base::StepTwoController#show as HTML
1022
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1023
+ Processing by Base::StepTwoController#show as HTML
1024
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1025
+ Processing by Base::StepTwoController#show as HTML
1026
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1027
+ Processing by Base::StepTwoController#show as HTML
1028
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1029
+ Processing by Base::StepOneController#show as HTML
1030
+ Rendered application/show.html.erb within layouts/application (0.2ms)
1031
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
1032
+ Processing by Base::StepOneController#show as HTML
1033
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1034
+ Processing by Base::StepOneController#show as HTML
1035
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1036
+ Processing by Base::StepOneController#show as HTML
1037
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1038
+ Processing by Base::StepOneController#show as HTML
1039
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1040
+ Processing by Base::StepOneController#show as HTML
1041
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1042
+ Processing by Base::StepOneController#show as HTML
1043
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1044
+ Processing by Base::StepOneController#show as HTML
1045
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1046
+ Processing by Base::StepOneController#show as HTML
1047
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1048
+ Processing by Base::StepThreeController#show as HTML
1049
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1050
+ Processing by Base::StepThreeController#show as HTML
1051
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1052
+ Processing by Base::StepThreeController#show as HTML
1053
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1054
+ Processing by Base::StepThreeController#show as HTML
1055
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1056
+ Processing by Base::StepThreeController#show as HTML
1057
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1058
+ Processing by Base::StepThreeController#show as HTML
1059
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1060
+ Processing by Base::StepThreeController#show as HTML
1061
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1062
+ Processing by Base::StepThreeController#show as HTML
1063
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1064
+ Processing by Base::StepThreeController#show as HTML
1065
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1066
+ Processing by Base::StepTwoController#show as HTML
1067
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1068
+ Processing by Base::StepTwoController#show as HTML
1069
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1070
+ Processing by Base::StepTwoController#show as HTML
1071
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1072
+ Processing by Base::StepTwoController#show as HTML
1073
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1074
+ Processing by Base::StepTwoController#show as HTML
1075
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1076
+ Processing by Base::StepTwoController#show as HTML
1077
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1078
+ Processing by Base::StepTwoController#show as HTML
1079
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1080
+ Processing by Base::StepTwoController#show as HTML
1081
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1082
+ Processing by Base::StepTwoController#show as HTML
1083
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1084
+ Processing by Base::StepOneController#show as HTML
1085
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1086
+ Processing by Base::StepOneController#show as HTML
1087
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1088
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1089
+ Processing by Base::StepOneController#show as HTML
1090
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1091
+ Processing by Base::StepOneController#show as HTML
1092
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1093
+ Processing by Base::StepOneController#show as HTML
1094
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1095
+ Processing by Base::StepOneController#show as HTML
1096
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1097
+ Processing by Base::StepOneController#show as HTML
1098
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1099
+ Processing by Base::StepOneController#show as HTML
1100
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1101
+ Processing by Base::StepOneController#show as HTML
1102
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1103
+ Processing by Base::StepOneController#show as HTML
1104
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1105
+ Processing by Base::StepThreeController#show as HTML
1106
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1107
+ Processing by Base::StepThreeController#show as HTML
1108
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1109
+ Processing by Base::StepThreeController#show as HTML
1110
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1111
+ Processing by Base::StepThreeController#show as HTML
1112
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1113
+ Processing by Base::StepThreeController#show as HTML
1114
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1115
+ Processing by Base::StepThreeController#show as HTML
1116
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1117
+ Processing by Base::StepThreeController#show as HTML
1118
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1119
+ Processing by Base::StepThreeController#show as HTML
1120
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1121
+ Processing by Base::StepThreeController#show as HTML
1122
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1123
+ Processing by Base::StepTwoController#show as HTML
1124
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1125
+ Processing by Base::StepTwoController#show as HTML
1126
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1127
+ Processing by Base::StepTwoController#show as HTML
1128
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1129
+ Processing by Base::StepTwoController#show as HTML
1130
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1131
+ Processing by Base::StepTwoController#show as HTML
1132
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1133
+ Processing by Base::StepTwoController#show as HTML
1134
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1135
+ Processing by Base::StepTwoController#show as HTML
1136
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1137
+ Processing by Base::StepTwoController#show as HTML
1138
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1139
+ Processing by Base::StepTwoController#show as HTML
1140
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1141
+ Processing by Base::StepOneController#show as HTML
1142
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1143
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
1144
+ Processing by Base::StepOneController#show as HTML
1145
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1146
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
1147
+ Processing by Base::StepOneController#show as HTML
1148
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1149
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1150
+ Processing by Base::StepOneController#show as HTML
1151
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1152
+ Processing by Base::StepOneController#show as HTML
1153
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1154
+ Processing by Base::StepOneController#show as HTML
1155
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1156
+ Processing by Base::StepOneController#show as HTML
1157
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1158
+ Processing by Base::StepOneController#show as HTML
1159
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1160
+ Processing by Base::StepOneController#show as HTML
1161
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1162
+ Processing by Base::StepOneController#show as HTML
1163
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1164
+ Processing by Base::StepOneController#show as HTML
1165
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1166
+ Processing by Base::StepThreeController#show as HTML
1167
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
1168
+ Processing by Base::StepThreeController#show as HTML
1169
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1170
+ Processing by Base::StepThreeController#show as HTML
1171
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1172
+ Processing by Base::StepThreeController#show as HTML
1173
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1174
+ Processing by Base::StepThreeController#show as HTML
1175
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1176
+ Processing by Base::StepThreeController#show as HTML
1177
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1178
+ Processing by Base::StepThreeController#show as HTML
1179
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1180
+ Processing by Base::StepThreeController#show as HTML
1181
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1182
+ Processing by Base::StepThreeController#show as HTML
1183
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1184
+ Processing by Base::StepTwoController#show as HTML
1185
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1186
+ Processing by Base::StepTwoController#show as HTML
1187
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1188
+ Processing by Base::StepTwoController#show as HTML
1189
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1190
+ Processing by Base::StepTwoController#show as HTML
1191
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1192
+ Processing by Base::StepTwoController#show as HTML
1193
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1194
+ Processing by Base::StepTwoController#show as HTML
1195
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1196
+ Processing by Base::StepTwoController#show as HTML
1197
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1198
+ Processing by Base::StepTwoController#show as HTML
1199
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1200
+ Processing by Base::StepTwoController#show as HTML
1201
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1202
+ Processing by Base::StepOneController#show as HTML
1203
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1204
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1205
+ Processing by Base::StepOneController#show as HTML
1206
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1207
+ Processing by Base::StepOneController#show as HTML
1208
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1209
+ Processing by Base::StepOneController#show as HTML
1210
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1211
+ Processing by Base::StepOneController#show as HTML
1212
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1213
+ Processing by Base::StepOneController#show as HTML
1214
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1215
+ Processing by Base::StepOneController#show as HTML
1216
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1217
+ Processing by Base::StepOneController#show as HTML
1218
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1219
+ Processing by Base::StepOneController#show as HTML
1220
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1221
+ Processing by Base::StepThreeController#show as HTML
1222
+ Completed 200 OK in 20ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1223
+ Processing by Base::StepThreeController#show as HTML
1224
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1225
+ Processing by Base::StepThreeController#show as HTML
1226
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1227
+ Processing by Base::StepThreeController#show as HTML
1228
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1229
+ Processing by Base::StepThreeController#show as HTML
1230
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1231
+ Processing by Base::StepThreeController#show as HTML
1232
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1233
+ Processing by Base::StepThreeController#show as HTML
1234
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1235
+ Processing by Base::StepThreeController#show as HTML
1236
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1237
+ Processing by Base::StepThreeController#show as HTML
1238
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1239
+ Processing by Base::StepTwoController#show as HTML
1240
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1241
+ Processing by Base::StepTwoController#show as HTML
1242
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1243
+ Processing by Base::StepTwoController#show as HTML
1244
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1245
+ Processing by Base::StepTwoController#show as HTML
1246
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1247
+ Processing by Base::StepTwoController#show as HTML
1248
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1249
+ Processing by Base::StepTwoController#show as HTML
1250
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1251
+ Processing by Base::StepTwoController#show as HTML
1252
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1253
+ Processing by Base::StepTwoController#show as HTML
1254
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1255
+ Processing by Base::StepTwoController#show as HTML
1256
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1257
+ Processing by Base::StepOneController#show as HTML
1258
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1259
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
1260
+ Processing by Base::StepOneController#show as HTML
1261
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1262
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1263
+ Processing by Base::StepOneController#show as HTML
1264
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1265
+ Processing by Base::StepOneController#show as HTML
1266
+ Rendered application/show.html.erb within layouts/application (0.2ms)
1267
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
1268
+ Processing by Base::StepOneController#show as HTML
1269
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1270
+ Processing by Base::StepOneController#show as HTML
1271
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1272
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
1273
+ Processing by Base::StepOneController#show as HTML
1274
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1275
+ Processing by Base::StepOneController#show as HTML
1276
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1277
+ Processing by Base::StepOneController#show as HTML
1278
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1279
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1280
+ Processing by Base::StepOneController#show as HTML
1281
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1282
+ Processing by Base::StepOneController#show as HTML
1283
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1284
+ Processing by Base::StepOneController#show as HTML
1285
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1286
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1287
+ Processing by Base::StepOneController#show as HTML
1288
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1289
+ Processing by Base::StepOneController#show as HTML
1290
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1291
+ Processing by Base::StepOneController#show as HTML
1292
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1293
+ Processing by Base::StepOneController#show as HTML
1294
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1295
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
1296
+ Processing by Base::StepOneController#show as HTML
1297
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1298
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1299
+ Processing by Base::StepOneController#show as HTML
1300
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1301
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1302
+ Processing by Base::StepTwoController#show as HTML
1303
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1304
+ Processing by Base::StepOneController#show as HTML
1305
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1306
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
1307
+ Processing by Base::StepTwoController#show as HTML
1308
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1309
+ Processing by Base::StepTwoController#show as HTML
1310
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1311
+ Processing by Base::StepOneController#show as HTML
1312
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1313
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
1314
+ Processing by Base::StepThreeController#show as HTML
1315
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1316
+ Processing by Base::StepTwoController#show as HTML
1317
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1318
+ Processing by Base::StepOneController#show as HTML
1319
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1320
+ Processing by Base::StepTwoController#show as HTML
1321
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1322
+ Processing by Base::StepTwoController#show as HTML
1323
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1324
+ Processing by Base::StepOneController#show as HTML
1325
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1326
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1327
+ Processing by Base::StepThreeController#show as HTML
1328
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1329
+ Processing by Base::StepTwoController#show as HTML
1330
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1331
+ Processing by Base::StepOneController#show as HTML
1332
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1333
+ Processing by Base::StepOneController#show as HTML
1334
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1335
+ Processing by Base::StepTwoController#show as HTML
1336
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1337
+ Processing by Base::StepTwoController#show as HTML
1338
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1339
+ Processing by Base::StepOneController#show as HTML
1340
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1341
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1342
+ Processing by Base::StepThreeController#show as HTML
1343
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1344
+ Processing by Base::StepTwoController#show as HTML
1345
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1346
+ Processing by Base::StepOneController#show as HTML
1347
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1348
+ Processing by Base::StepOneController#show as HTML
1349
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1350
+ Processing by Base::StepOneController#show as HTML
1351
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1352
+ Processing by Base::StepOneController#show as HTML
1353
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1354
+ Processing by Base::StepTwoController#show as HTML
1355
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1356
+ Processing by Base::StepTwoController#show as HTML
1357
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1358
+ Processing by Base::StepOneController#show as HTML
1359
+ Rendered application/show.html.erb within layouts/application (0.2ms)
1360
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
1361
+ Processing by Base::StepThreeController#show as HTML
1362
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1363
+ Processing by Base::StepTwoController#show as HTML
1364
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1365
+ Processing by Base::StepOneController#show as HTML
1366
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1367
+ Processing by Base::StepOneController#show as HTML
1368
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1369
+ Processing by Base::StepOneController#show as HTML
1370
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1371
+ Processing by Base::StepOneController#show as HTML
1372
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1373
+ Processing by Base::StepTwoController#show as HTML
1374
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1375
+ Processing by Base::StepTwoController#show as HTML
1376
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1377
+ Processing by Base::StepOneController#show as HTML
1378
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1379
+ Processing by Base::StepOneController#show as HTML
1380
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
1381
+ Processing by Base::StepOneController#show as HTML
1382
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1383
+ Processing by Base::StepOneController#show as HTML
1384
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1385
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1386
+ Processing by Base::StepThreeController#show as HTML
1387
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1388
+ Processing by Base::StepTwoController#show as HTML
1389
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1390
+ Processing by Base::StepOneController#show as HTML
1391
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1392
+ Processing by Base::StepOneController#show as HTML
1393
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1394
+ Processing by Base::StepOneController#show as HTML
1395
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1396
+ Processing by Base::StepOneController#show as HTML
1397
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1398
+ Processing by Base::StepTwoController#show as HTML
1399
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1400
+ Processing by Base::StepTwoController#show as HTML
1401
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1402
+ Processing by Base::StepOneController#show as HTML
1403
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1404
+ Processing by Base::StepOneController#show as HTML
1405
+ Completed 200 OK in 20ms (Views: 20.2ms | ActiveRecord: 0.0ms)
1406
+ Processing by Base::StepOneController#show as HTML
1407
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1408
+ Processing by Base::StepOneController#show as HTML
1409
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1410
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1411
+ Processing by Base::StepThreeController#show as HTML
1412
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1413
+ Processing by Base::StepTwoController#show as HTML
1414
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1415
+ Processing by Base::StepOneController#show as HTML
1416
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1417
+ Processing by Base::StepOneController#show as HTML
1418
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1419
+ Processing by Base::StepOneController#show as HTML
1420
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1421
+ Processing by Base::StepOneController#show as HTML
1422
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1423
+ Processing by Base::StepTwoController#show as HTML
1424
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1425
+ Processing by Base::StepTwoController#show as HTML
1426
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1427
+ Processing by Base::StepOneController#show as HTML
1428
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1429
+ Processing by Base::StepOneController#show as HTML
1430
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1431
+ Processing by Base::StepOneController#show as HTML
1432
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1433
+ Processing by Base::StepThreeController#show as HTML
1434
+ Rendered application/show.html.erb within layouts/application (0.3ms)
1435
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
1436
+ Processing by Base::StepThreeController#show as HTML
1437
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1438
+ Processing by Base::StepThreeController#show as HTML
1439
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1440
+ Processing by Base::StepThreeController#show as HTML
1441
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1442
+ Processing by Base::StepThreeController#show as HTML
1443
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1444
+ Processing by Base::StepThreeController#show as HTML
1445
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1446
+ Processing by Base::StepThreeController#show as HTML
1447
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1448
+ Processing by Base::StepThreeController#show as HTML
1449
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1450
+ Processing by Base::StepThreeController#show as HTML
1451
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1452
+ Processing by Base::StepTwoController#show as HTML
1453
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1454
+ Processing by Base::StepTwoController#show as HTML
1455
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1456
+ Processing by Base::StepTwoController#show as HTML
1457
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1458
+ Processing by Base::StepTwoController#show as HTML
1459
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1460
+ Processing by Base::StepTwoController#show as HTML
1461
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1462
+ Processing by Base::StepTwoController#show as HTML
1463
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1464
+ Processing by Base::StepTwoController#show as HTML
1465
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1466
+ Processing by Base::StepTwoController#show as HTML
1467
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1468
+ Processing by Base::StepTwoController#show as HTML
1469
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1470
+ Processing by Base::StepOneController#show as HTML
1471
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1472
+ Processing by Base::StepOneController#show as HTML
1473
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1474
+ Processing by Base::StepOneController#show as HTML
1475
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1476
+ Processing by Base::StepOneController#show as HTML
1477
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1478
+ Processing by Base::StepOneController#show as HTML
1479
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1480
+ Processing by Base::StepOneController#show as HTML
1481
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1482
+ Processing by Base::StepOneController#show as HTML
1483
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1484
+ Processing by Base::StepOneController#show as HTML
1485
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1486
+ Processing by Base::StepOneController#show as HTML
1487
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1488
+ Processing by Base::StepOneController#show as HTML
1489
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1490
+ Processing by Base::StepOneController#show as HTML
1491
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1492
+ Processing by Base::StepOneController#show as HTML
1493
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1494
+ Processing by Base::StepOneController#show as HTML
1495
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1496
+ Processing by Base::StepOneController#show as HTML
1497
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1498
+ Processing by Base::StepOneController#show as HTML
1499
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1500
+ Processing by Base::StepOneController#show as HTML
1501
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1502
+ Processing by Base::StepTwoController#show as HTML
1503
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1504
+ Processing by Base::StepTwoController#show as HTML
1505
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1506
+ Processing by Base::StepOneController#show as HTML
1507
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1508
+ Processing by Base::StepOneController#show as HTML
1509
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1510
+ Processing by Base::StepOneController#show as HTML
1511
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1512
+ Processing by Base::StepOneController#show as HTML
1513
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1514
+ Processing by Base::StepThreeController#show as HTML
1515
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1516
+ Processing by Base::StepTwoController#show as HTML
1517
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1518
+ Processing by Base::StepOneController#show as HTML
1519
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1520
+ Processing by Base::StepOneController#show as HTML
1521
+ Rendered application/show.html.erb within layouts/application (0.4ms)
1522
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1523
+ Processing by Base::StepOneController#show as HTML
1524
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1525
+ Processing by Base::StepOneController#show as HTML
1526
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1527
+ Processing by Base::StepThreeController#show as HTML
1528
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1529
+ Processing by Base::StepOneController#show as HTML
1530
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1531
+ Processing by Base::StepTwoController#show as HTML
1532
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1533
+ Processing by Base::StepTwoController#show as HTML
1534
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1535
+ Processing by Base::StepOneController#show as HTML
1536
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1537
+ Processing by Base::StepTwoController#show as HTML
1538
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1539
+ Processing by Base::StepOneController#show as HTML
1540
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1541
+ Processing by Base::StepOneController#show as HTML
1542
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1543
+ Processing by Base::StepOneController#show as HTML
1544
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1545
+ Processing by Base::StepOneController#show as HTML
1546
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1547
+ Processing by Base::StepOneController#show as HTML
1548
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1549
+ Processing by Base::StepOneController#show as HTML
1550
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1551
+ Processing by Base::StepOneController#show as HTML
1552
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1553
+ Processing by Base::StepThreeController#show as HTML
1554
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1555
+ Processing by Base::StepThreeController#show as HTML
1556
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1557
+ Processing by Base::StepThreeController#show as HTML
1558
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1559
+ Processing by Base::StepThreeController#show as HTML
1560
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1561
+ Processing by Base::StepThreeController#show as HTML
1562
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1563
+ Processing by Base::StepThreeController#show as HTML
1564
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1565
+ Processing by Base::StepThreeController#show as HTML
1566
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1567
+ Processing by Base::StepThreeController#show as HTML
1568
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1569
+ Processing by Base::StepThreeController#show as HTML
1570
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1571
+ Processing by Base::StepOneController#show as HTML
1572
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1573
+ Processing by Base::StepOneController#show as HTML
1574
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1575
+ Processing by Base::StepOneController#show as HTML
1576
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1577
+ Processing by Base::StepOneController#show as HTML
1578
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1579
+ Processing by Base::StepOneController#show as HTML
1580
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1581
+ Processing by Base::StepOneController#show as HTML
1582
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1583
+ Processing by Base::StepOneController#show as HTML
1584
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1585
+ Processing by Base::StepOneController#show as HTML
1586
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1587
+ Processing by Base::StepOneController#show as HTML
1588
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1589
+ Processing by Base::StepTwoController#show as HTML
1590
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1591
+ Processing by Base::StepTwoController#show as HTML
1592
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1593
+ Processing by Base::StepTwoController#show as HTML
1594
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1595
+ Processing by Base::StepTwoController#show as HTML
1596
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1597
+ Processing by Base::StepTwoController#show as HTML
1598
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1599
+ Processing by Base::StepTwoController#show as HTML
1600
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
1601
+ Processing by Base::StepTwoController#show as HTML
1602
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1603
+ Processing by Base::StepTwoController#show as HTML
1604
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
1605
+ Processing by Base::StepTwoController#show as HTML
1606
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)