phenomenal_rails 1.1.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/phenomenal_rails/context.rb +1 -1
- data/lib/phenomenal_rails/engine.rb +20 -13
- data/lib/phenomenal_rails/loader.rb +60 -0
- data/lib/phenomenal_rails/middleware.rb +20 -22
- data/lib/phenomenal_rails/path_set.rb +2 -2
- data/lib/phenomenal_rails/resolver.rb +10 -4
- data/lib/phenomenal_rails/version.rb +1 -1
- data/lib/phenomenal_rails.rb +8 -43
- data/spec/dummy/app/views/pages/home.html.haml +3 -2
- data/spec/dummy/app/views/shared/_partial4.html.haml +1 -0
- data/spec/dummy/{phenomenal → app_phenomenal}/persistent_feature/persistent_feature.rb +2 -0
- data/spec/dummy/app_phenomenal/persistent_feature/views/shared/_partial3.html.haml +1 -0
- data/spec/dummy/app_phenomenal/test_feature/test_feature.rb +1 -0
- data/spec/dummy/app_phenomenal/test_feature/views/shared/_partial4.html.haml +1 -0
- data/spec/dummy/config/application.rb +0 -2
- data/spec/dummy/log/development.log +156 -7055
- metadata +25 -24
- data/spec/dummy/db/production.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/production.log +0 -1348
- data/spec/dummy/phenomenal/persistent_feature/controllers/application_controller.rb +0 -6
- /data/spec/dummy/{app → app_phenomenal/persistent_feature}/controllers/application_controller.rb +0 -0
- /data/spec/dummy/{phenomenal → app_phenomenal}/persistent_feature/models/model.rb +0 -0
- /data/spec/dummy/{phenomenal → app_phenomenal}/persistent_feature/test_context/test_context.rb +0 -0
- /data/spec/dummy/{phenomenal → app_phenomenal}/persistent_feature/test_context/views/shared/_partial1.html.haml +0 -0
- /data/spec/dummy/{phenomenal → app_phenomenal}/persistent_feature/test_context/views/shared/_partial2.html.haml +0 -0
@@ -1,1348 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:39:39 +0100
|
4
|
-
Processing by ApplicationController#home as HTML
|
5
|
-
Rendered pages/home.html.haml within layouts/application (2.9ms)
|
6
|
-
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
7
|
-
|
8
|
-
|
9
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:39:46 +0100
|
10
|
-
Processing by ApplicationController#home as HTML
|
11
|
-
Rendered pages/home.html.haml within layouts/application (0.2ms)
|
12
|
-
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
13
|
-
|
14
|
-
|
15
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:39:47 +0100
|
16
|
-
Processing by ApplicationController#home as HTML
|
17
|
-
Rendered pages/home.html.haml within layouts/application (0.3ms)
|
18
|
-
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
19
|
-
|
20
|
-
|
21
|
-
Started GET "/?activated" for 127.0.0.1 at 2012-03-07 18:41:06 +0100
|
22
|
-
Processing by ApplicationController#home as HTML
|
23
|
-
Parameters: {"activated"=>nil}
|
24
|
-
Completed 500 Internal Server Error in 1ms
|
25
|
-
|
26
|
-
Phenomenal::Error (Unknown context test):
|
27
|
-
app/controllers/application_controller.rb:9:in `home'
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 18:41:16 +0100
|
33
|
-
Processing by ApplicationController#home as HTML
|
34
|
-
Parameters: {"activated"=>"true"}
|
35
|
-
Completed 500 Internal Server Error in 0ms
|
36
|
-
|
37
|
-
Phenomenal::Error (Unknown context test):
|
38
|
-
app/controllers/application_controller.rb:7:in `home'
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 18:41:21 +0100
|
44
|
-
Processing by ApplicationController#home as HTML
|
45
|
-
Parameters: {"activated"=>"true"}
|
46
|
-
Completed 500 Internal Server Error in 0ms
|
47
|
-
|
48
|
-
Phenomenal::Error (Unknown context test):
|
49
|
-
app/controllers/application_controller.rb:7:in `home'
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 18:42:21 +0100
|
55
|
-
Processing by ApplicationController#home as HTML
|
56
|
-
Parameters: {"activated"=>"true"}
|
57
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
58
|
-
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
59
|
-
|
60
|
-
|
61
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:42:25 +0100
|
62
|
-
Processing by ApplicationController#home as HTML
|
63
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
64
|
-
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
65
|
-
|
66
|
-
|
67
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:42:26 +0100
|
68
|
-
Processing by ApplicationController#home as HTML
|
69
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
70
|
-
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
71
|
-
|
72
|
-
|
73
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:43:46 +0100
|
74
|
-
Processing by ApplicationController#home as HTML
|
75
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
76
|
-
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
77
|
-
|
78
|
-
|
79
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:44:50 +0100
|
80
|
-
Processing by ApplicationController#home as HTML
|
81
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
82
|
-
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
83
|
-
|
84
|
-
|
85
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:44:57 +0100
|
86
|
-
Processing by ApplicationController#home as HTML
|
87
|
-
Rendered pages/home.html.haml within layouts/application (3.0ms)
|
88
|
-
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
89
|
-
|
90
|
-
|
91
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 18:45:08 +0100
|
92
|
-
Processing by ApplicationController#home as HTML
|
93
|
-
Parameters: {"activated"=>"true"}
|
94
|
-
Rendered pages/home.html.haml within layouts/application (0.3ms)
|
95
|
-
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
96
|
-
|
97
|
-
|
98
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 18:56:09 +0100
|
99
|
-
Processing by ApplicationController#home as HTML
|
100
|
-
Parameters: {"activated"=>"true"}
|
101
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
102
|
-
Completed 200 OK in 16ms (Views: 15.1ms | ActiveRecord: 0.0ms)
|
103
|
-
|
104
|
-
|
105
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 18:56:13 +0100
|
106
|
-
Processing by ApplicationController#home as HTML
|
107
|
-
Rendered pages/home.html.haml within layouts/application (4.2ms)
|
108
|
-
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
109
|
-
|
110
|
-
|
111
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 20:51:17 +0100
|
112
|
-
Processing by ApplicationController#home as HTML
|
113
|
-
Rendered pages/home.html.haml within layouts/application (3.1ms)
|
114
|
-
Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
|
115
|
-
|
116
|
-
|
117
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 21:05:42 +0100
|
118
|
-
Processing by ApplicationController#home as HTML
|
119
|
-
Rendered pages/home.html.haml within layouts/application (3.0ms)
|
120
|
-
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
121
|
-
|
122
|
-
|
123
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:05:55 +0100
|
124
|
-
Processing by ApplicationController#home as HTML
|
125
|
-
Parameters: {"activated"=>"true"}
|
126
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
127
|
-
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
128
|
-
|
129
|
-
|
130
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 21:06:41 +0100
|
131
|
-
Processing by ApplicationController#home as HTML
|
132
|
-
Rendered pages/home.html.haml within layouts/application (3.0ms)
|
133
|
-
Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
134
|
-
|
135
|
-
|
136
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:06:50 +0100
|
137
|
-
Processing by ApplicationController#home as HTML
|
138
|
-
Parameters: {"activated"=>"true"}
|
139
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.2ms)
|
140
|
-
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
141
|
-
|
142
|
-
|
143
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 21:43:09 +0100
|
144
|
-
Processing by ApplicationController#home as HTML
|
145
|
-
Rendered pages/home.html.haml within layouts/application (3.2ms)
|
146
|
-
Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
147
|
-
|
148
|
-
|
149
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:43:13 +0100
|
150
|
-
Processing by ApplicationController#home as HTML
|
151
|
-
Parameters: {"activated"=>"true"}
|
152
|
-
Completed 500 Internal Server Error in 1ms
|
153
|
-
|
154
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
155
|
-
app/controllers/application_controller.rb:11:in `home'
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:43:13 +0100
|
161
|
-
Processing by ApplicationController#home as HTML
|
162
|
-
Parameters: {"activated"=>"true"}
|
163
|
-
Completed 500 Internal Server Error in 4ms
|
164
|
-
|
165
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
166
|
-
app/controllers/application_controller.rb:11:in `home'
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:44:01 +0100
|
172
|
-
Processing by ApplicationController#home as HTML
|
173
|
-
Parameters: {"activated"=>"true"}
|
174
|
-
Completed 500 Internal Server Error in 9ms
|
175
|
-
|
176
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
177
|
-
app/controllers/application_controller.rb:11:in `home'
|
178
|
-
|
179
|
-
|
180
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.5ms)
|
181
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
182
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
|
183
|
-
|
184
|
-
|
185
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:45:53 +0100
|
186
|
-
Processing by ApplicationController#home as HTML
|
187
|
-
Parameters: {"activated"=>"true"}
|
188
|
-
Completed 500 Internal Server Error in 9ms
|
189
|
-
|
190
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
191
|
-
app/controllers/application_controller.rb:11:in `home'
|
192
|
-
|
193
|
-
|
194
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
195
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
196
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
|
197
|
-
|
198
|
-
|
199
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:46:18 +0100
|
200
|
-
Processing by ApplicationController#home as HTML
|
201
|
-
Parameters: {"activated"=>"true"}
|
202
|
-
Completed 500 Internal Server Error in 9ms
|
203
|
-
|
204
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
205
|
-
app/controllers/application_controller.rb:11:in `home'
|
206
|
-
|
207
|
-
|
208
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.6ms)
|
209
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
210
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.2ms)
|
211
|
-
|
212
|
-
|
213
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:48:14 +0100
|
214
|
-
Processing by ApplicationController#home as HTML
|
215
|
-
Parameters: {"activated"=>"true"}
|
216
|
-
Completed 500 Internal Server Error in 9ms
|
217
|
-
|
218
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
219
|
-
app/controllers/application_controller.rb:11:in `home'
|
220
|
-
|
221
|
-
|
222
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
223
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
224
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
|
225
|
-
|
226
|
-
|
227
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:48:38 +0100
|
228
|
-
Processing by ApplicationController#home as HTML
|
229
|
-
Parameters: {"activated"=>"true"}
|
230
|
-
Completed 500 Internal Server Error in 9ms
|
231
|
-
|
232
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
233
|
-
app/controllers/application_controller.rb:11:in `home'
|
234
|
-
|
235
|
-
|
236
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.9ms)
|
237
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
238
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.3ms)
|
239
|
-
|
240
|
-
|
241
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:50:22 +0100
|
242
|
-
Processing by ApplicationController#home as HTML
|
243
|
-
Parameters: {"activated"=>"true"}
|
244
|
-
Completed 500 Internal Server Error in 9ms
|
245
|
-
|
246
|
-
NoMethodError (undefined method `locals=' for [{}]:Array):
|
247
|
-
app/controllers/application_controller.rb:11:in `home'
|
248
|
-
|
249
|
-
|
250
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.2ms)
|
251
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
252
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
|
253
|
-
|
254
|
-
|
255
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:50:39 +0100
|
256
|
-
Processing by ApplicationController#home as HTML
|
257
|
-
Parameters: {"activated"=>"true"}
|
258
|
-
Completed 500 Internal Server Error in 10ms
|
259
|
-
|
260
|
-
NoMethodError (undefined method `formats' for {}:Hash):
|
261
|
-
app/controllers/application_controller.rb:11:in `home'
|
262
|
-
|
263
|
-
|
264
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
|
265
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
|
266
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.4ms)
|
267
|
-
|
268
|
-
|
269
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:51:43 +0100
|
270
|
-
Processing by ApplicationController#home as HTML
|
271
|
-
Parameters: {"activated"=>"true"}
|
272
|
-
Completed 500 Internal Server Error in 10ms
|
273
|
-
|
274
|
-
NoMethodError (undefined method `formats' for {}:Hash):
|
275
|
-
app/controllers/application_controller.rb:11:in `home'
|
276
|
-
|
277
|
-
|
278
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
|
279
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
280
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
|
281
|
-
|
282
|
-
|
283
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:54:54 +0100
|
284
|
-
Processing by ApplicationController#home as HTML
|
285
|
-
Parameters: {"activated"=>"true"}
|
286
|
-
Completed 500 Internal Server Error in 9ms
|
287
|
-
|
288
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
289
|
-
app/controllers/application_controller.rb:11:in `home'
|
290
|
-
|
291
|
-
|
292
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
293
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
294
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.7ms)
|
295
|
-
|
296
|
-
|
297
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:55:57 +0100
|
298
|
-
Processing by ApplicationController#home as HTML
|
299
|
-
Parameters: {"activated"=>"true"}
|
300
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
301
|
-
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
302
|
-
|
303
|
-
|
304
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:57:34 +0100
|
305
|
-
Processing by ApplicationController#home as HTML
|
306
|
-
Parameters: {"activated"=>"true"}
|
307
|
-
Completed 500 Internal Server Error in 9ms
|
308
|
-
|
309
|
-
NoMethodError (undefined method `locals=' for {}:Hash):
|
310
|
-
app/controllers/application_controller.rb:11:in `home'
|
311
|
-
|
312
|
-
|
313
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.5ms)
|
314
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
315
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.5ms)
|
316
|
-
|
317
|
-
|
318
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:58:44 +0100
|
319
|
-
Processing by ApplicationController#home as HTML
|
320
|
-
Parameters: {"activated"=>"true"}
|
321
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
322
|
-
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
323
|
-
|
324
|
-
|
325
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:58:55 +0100
|
326
|
-
Processing by ApplicationController#home as HTML
|
327
|
-
Parameters: {"activated"=>"true"}
|
328
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
329
|
-
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
330
|
-
|
331
|
-
|
332
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:59:17 +0100
|
333
|
-
Processing by ApplicationController#home as HTML
|
334
|
-
Parameters: {"activated"=>"true"}
|
335
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
336
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
337
|
-
|
338
|
-
|
339
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:59:45 +0100
|
340
|
-
Processing by ApplicationController#home as HTML
|
341
|
-
Parameters: {"activated"=>"true"}
|
342
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
343
|
-
Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
344
|
-
|
345
|
-
|
346
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:59:46 +0100
|
347
|
-
Processing by ApplicationController#home as HTML
|
348
|
-
Parameters: {"activated"=>"true"}
|
349
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.7ms)
|
350
|
-
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
351
|
-
|
352
|
-
|
353
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:01:16 +0100
|
354
|
-
Processing by ApplicationController#home as HTML
|
355
|
-
Parameters: {"activated"=>"true"}
|
356
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
357
|
-
Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
358
|
-
|
359
|
-
|
360
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:01:18 +0100
|
361
|
-
Processing by ApplicationController#home as HTML
|
362
|
-
Parameters: {"activated"=>"true"}
|
363
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
364
|
-
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
365
|
-
|
366
|
-
|
367
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:02:14 +0100
|
368
|
-
Processing by ApplicationController#home as HTML
|
369
|
-
Parameters: {"activated"=>"true"}
|
370
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
371
|
-
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
372
|
-
|
373
|
-
|
374
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:02:45 +0100
|
375
|
-
Processing by ApplicationController#home as HTML
|
376
|
-
Parameters: {"activated"=>"true"}
|
377
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
378
|
-
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
379
|
-
|
380
|
-
|
381
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:02:47 +0100
|
382
|
-
Processing by ApplicationController#home as HTML
|
383
|
-
Parameters: {"activated"=>"true"}
|
384
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.8ms)
|
385
|
-
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
386
|
-
|
387
|
-
|
388
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:02:56 +0100
|
389
|
-
Processing by ApplicationController#home as HTML
|
390
|
-
Parameters: {"activated"=>"true"}
|
391
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
392
|
-
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
393
|
-
|
394
|
-
|
395
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:03:00 +0100
|
396
|
-
Processing by ApplicationController#home as HTML
|
397
|
-
Parameters: {"activated"=>"true"}
|
398
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.8ms)
|
399
|
-
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
400
|
-
|
401
|
-
|
402
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:03:03 +0100
|
403
|
-
Processing by ApplicationController#home as HTML
|
404
|
-
Parameters: {"activated"=>"true"}
|
405
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
406
|
-
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
407
|
-
|
408
|
-
|
409
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:03:31 +0100
|
410
|
-
Processing by ApplicationController#home as HTML
|
411
|
-
Rendered pages/home.html.haml within layouts/application (2.8ms)
|
412
|
-
Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
413
|
-
|
414
|
-
|
415
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:04:05 +0100
|
416
|
-
Processing by ApplicationController#home as HTML
|
417
|
-
Rendered pages/home.html.haml within layouts/application (3.1ms)
|
418
|
-
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
419
|
-
|
420
|
-
|
421
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:04:09 +0100
|
422
|
-
Processing by ApplicationController#home as HTML
|
423
|
-
Parameters: {"activated"=>"true"}
|
424
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
|
425
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
426
|
-
|
427
|
-
|
428
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:04:09 +0100
|
429
|
-
Processing by ApplicationController#home as HTML
|
430
|
-
Parameters: {"activated"=>"true"}
|
431
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
432
|
-
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms)
|
433
|
-
|
434
|
-
|
435
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:04:11 +0100
|
436
|
-
Processing by ApplicationController#home as HTML
|
437
|
-
Parameters: {"activated"=>"true"}
|
438
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
439
|
-
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
440
|
-
|
441
|
-
|
442
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:04:12 +0100
|
443
|
-
Processing by ApplicationController#home as HTML
|
444
|
-
Parameters: {"activated"=>"true"}
|
445
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
446
|
-
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
447
|
-
|
448
|
-
|
449
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:05 +0100
|
450
|
-
Processing by ApplicationController#home as HTML
|
451
|
-
Parameters: {"activated"=>"true"}
|
452
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
|
453
|
-
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
454
|
-
|
455
|
-
|
456
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:07 +0100
|
457
|
-
Processing by ApplicationController#home as HTML
|
458
|
-
Parameters: {"activated"=>"true"}
|
459
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
460
|
-
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
461
|
-
|
462
|
-
|
463
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:05:12 +0100
|
464
|
-
Processing by ApplicationController#home as HTML
|
465
|
-
Rendered pages/home.html.haml within layouts/application (3.2ms)
|
466
|
-
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
467
|
-
|
468
|
-
|
469
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:16 +0100
|
470
|
-
Processing by ApplicationController#home as HTML
|
471
|
-
Parameters: {"activated"=>"true"}
|
472
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
473
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
474
|
-
|
475
|
-
|
476
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:16 +0100
|
477
|
-
Processing by ApplicationController#home as HTML
|
478
|
-
Parameters: {"activated"=>"true"}
|
479
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
480
|
-
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
481
|
-
|
482
|
-
|
483
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:05:25 +0100
|
484
|
-
Processing by ApplicationController#home as HTML
|
485
|
-
Rendered pages/home.html.haml within layouts/application (0.2ms)
|
486
|
-
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
487
|
-
|
488
|
-
|
489
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:44 +0100
|
490
|
-
Processing by ApplicationController#home as HTML
|
491
|
-
Parameters: {"activated"=>"true"}
|
492
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
493
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
494
|
-
|
495
|
-
|
496
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:05:45 +0100
|
497
|
-
Processing by ApplicationController#home as HTML
|
498
|
-
Parameters: {"activated"=>"true"}
|
499
|
-
Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.1ms)
|
500
|
-
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
501
|
-
|
502
|
-
|
503
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:07:41 +0100
|
504
|
-
Processing by ApplicationController#home as HTML
|
505
|
-
Parameters: {"activated"=>"true"}
|
506
|
-
Rendered pages/home.html.haml within layouts/application (0.2ms)
|
507
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
508
|
-
|
509
|
-
|
510
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:07:53 +0100
|
511
|
-
Processing by ApplicationController#home as HTML
|
512
|
-
Parameters: {"activated"=>"true"}
|
513
|
-
Rendered pages/home.html.haml within layouts/application (0.3ms)
|
514
|
-
Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
515
|
-
|
516
|
-
|
517
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:07:56 +0100
|
518
|
-
Processing by ApplicationController#home as HTML
|
519
|
-
Parameters: {"activated"=>"true"}
|
520
|
-
Rendered pages/home.html.haml within layouts/application (0.3ms)
|
521
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
522
|
-
|
523
|
-
|
524
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:07:58 +0100
|
525
|
-
Processing by ApplicationController#home as HTML
|
526
|
-
Parameters: {"activated"=>"true"}
|
527
|
-
Rendered pages/home.html.haml within layouts/application (0.3ms)
|
528
|
-
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
529
|
-
|
530
|
-
|
531
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:08:09 +0100
|
532
|
-
Processing by ApplicationController#home as HTML
|
533
|
-
Parameters: {"activated"=>"true"}
|
534
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
|
535
|
-
Rendered pages/home.html.haml within layouts/application (9.5ms)
|
536
|
-
Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
|
537
|
-
|
538
|
-
|
539
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:08:37 +0100
|
540
|
-
Processing by ApplicationController#home as HTML
|
541
|
-
Parameters: {"activated"=>"true"}
|
542
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (1.1ms)
|
543
|
-
Rendered pages/home.html.haml within layouts/application (8.5ms)
|
544
|
-
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
545
|
-
|
546
|
-
|
547
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:08:41 +0100
|
548
|
-
Processing by ApplicationController#home as HTML
|
549
|
-
Rendered pages/home.html.haml within layouts/application (2.0ms)
|
550
|
-
Completed 500 Internal Server Error in 3ms
|
551
|
-
|
552
|
-
ActionView::Template::Error (Missing partial shared/partial1 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
553
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/contexts"
|
554
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/views"
|
555
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/app/views"
|
556
|
-
):
|
557
|
-
13: %td=context.active?
|
558
|
-
14:
|
559
|
-
15: %br
|
560
|
-
16: =render "shared/partial1"
|
561
|
-
17: %br
|
562
|
-
18:
|
563
|
-
19: = ActionController::Base.view_paths.paths
|
564
|
-
app/views/pages/home.html.haml:16:in `_app_views_pages_home_html_haml__3957834639942805912_70154341405480'
|
565
|
-
app/controllers/application_controller.rb:11:in `home'
|
566
|
-
|
567
|
-
|
568
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.1ms)
|
569
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
570
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.4ms)
|
571
|
-
|
572
|
-
|
573
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:23 +0100
|
574
|
-
Processing by ApplicationController#home as HTML
|
575
|
-
Rendered pages/home.html.haml within layouts/application (1.3ms)
|
576
|
-
Completed 500 Internal Server Error in 2ms
|
577
|
-
|
578
|
-
ActionView::Template::Error (Missing partial shared/partial1 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
579
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/contexts"
|
580
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/views"
|
581
|
-
* "/Users/loo/Documents/Ruby/phenomenal-rails/app/views"
|
582
|
-
):
|
583
|
-
13: %tbody
|
584
|
-
14: -phen_defined_contexts.each do |context|
|
585
|
-
15: %tr
|
586
|
-
16: %td=context.to_s
|
587
|
-
17: %td=context.active?
|
588
|
-
18:
|
589
|
-
19: %br
|
590
|
-
app/views/pages/home.html.haml:16:in `_app_views_pages_home_html_haml__3957834639942805912_70154341405480'
|
591
|
-
app/controllers/application_controller.rb:11:in `home'
|
592
|
-
|
593
|
-
|
594
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.3ms)
|
595
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
596
|
-
Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.0ms)
|
597
|
-
|
598
|
-
|
599
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:29 +0100
|
600
|
-
Processing by ApplicationController#home as HTML
|
601
|
-
Rendered shared/_partial1.html.haml (0.9ms)
|
602
|
-
Rendered pages/home.html.haml within layouts/application (9.5ms)
|
603
|
-
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
604
|
-
|
605
|
-
|
606
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:31 +0100
|
607
|
-
Processing by ApplicationController#home as HTML
|
608
|
-
Parameters: {"activated"=>"true"}
|
609
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (1.6ms)
|
610
|
-
Rendered pages/home.html.haml within layouts/application (3.4ms)
|
611
|
-
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
612
|
-
|
613
|
-
|
614
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:33 +0100
|
615
|
-
Processing by ApplicationController#home as HTML
|
616
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
617
|
-
Rendered pages/home.html.haml within layouts/application (1.4ms)
|
618
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
619
|
-
|
620
|
-
|
621
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:34 +0100
|
622
|
-
Processing by ApplicationController#home as HTML
|
623
|
-
Parameters: {"activated"=>"true"}
|
624
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
625
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
626
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
627
|
-
|
628
|
-
|
629
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:35 +0100
|
630
|
-
Processing by ApplicationController#home as HTML
|
631
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
632
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
633
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
634
|
-
|
635
|
-
|
636
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:35 +0100
|
637
|
-
Processing by ApplicationController#home as HTML
|
638
|
-
Parameters: {"activated"=>"true"}
|
639
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
640
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
641
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
642
|
-
|
643
|
-
|
644
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:36 +0100
|
645
|
-
Processing by ApplicationController#home as HTML
|
646
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
647
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
648
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
649
|
-
|
650
|
-
|
651
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:36 +0100
|
652
|
-
Processing by ApplicationController#home as HTML
|
653
|
-
Parameters: {"activated"=>"true"}
|
654
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
655
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
656
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
657
|
-
|
658
|
-
|
659
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:38 +0100
|
660
|
-
Processing by ApplicationController#home as HTML
|
661
|
-
Parameters: {"activated"=>"true"}
|
662
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
663
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
664
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
665
|
-
|
666
|
-
|
667
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:38 +0100
|
668
|
-
Processing by ApplicationController#home as HTML
|
669
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
670
|
-
Rendered pages/home.html.haml within layouts/application (4.8ms)
|
671
|
-
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
672
|
-
|
673
|
-
|
674
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:38 +0100
|
675
|
-
Processing by ApplicationController#home as HTML
|
676
|
-
Parameters: {"activated"=>"true"}
|
677
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
678
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
679
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
680
|
-
|
681
|
-
|
682
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:39 +0100
|
683
|
-
Processing by ApplicationController#home as HTML
|
684
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
685
|
-
Rendered pages/home.html.haml within layouts/application (1.3ms)
|
686
|
-
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
687
|
-
|
688
|
-
|
689
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:39 +0100
|
690
|
-
Processing by ApplicationController#home as HTML
|
691
|
-
Parameters: {"activated"=>"true"}
|
692
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
693
|
-
Rendered pages/home.html.haml within layouts/application (3.5ms)
|
694
|
-
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
695
|
-
|
696
|
-
|
697
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:40 +0100
|
698
|
-
Processing by ApplicationController#home as HTML
|
699
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
700
|
-
Rendered pages/home.html.haml within layouts/application (29.4ms)
|
701
|
-
Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
|
702
|
-
|
703
|
-
|
704
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:12:40 +0100
|
705
|
-
Processing by ApplicationController#home as HTML
|
706
|
-
Parameters: {"activated"=>"true"}
|
707
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
708
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
709
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
710
|
-
|
711
|
-
|
712
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:12:41 +0100
|
713
|
-
Processing by ApplicationController#home as HTML
|
714
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
715
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
716
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
717
|
-
|
718
|
-
|
719
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:01 +0100
|
720
|
-
Processing by ApplicationController#home as HTML
|
721
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
722
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
723
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
724
|
-
|
725
|
-
|
726
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:02 +0100
|
727
|
-
Processing by ApplicationController#home as HTML
|
728
|
-
Parameters: {"activated"=>"true"}
|
729
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
730
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
731
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
732
|
-
|
733
|
-
|
734
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:02 +0100
|
735
|
-
Processing by ApplicationController#home as HTML
|
736
|
-
Parameters: {"activated"=>"true"}
|
737
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
738
|
-
Rendered pages/home.html.haml within layouts/application (1.5ms)
|
739
|
-
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
740
|
-
|
741
|
-
|
742
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:03 +0100
|
743
|
-
Processing by ApplicationController#home as HTML
|
744
|
-
Parameters: {"activated"=>"true"}
|
745
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
746
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
747
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
748
|
-
|
749
|
-
|
750
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:03 +0100
|
751
|
-
Processing by ApplicationController#home as HTML
|
752
|
-
Parameters: {"activated"=>"true"}
|
753
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
754
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
755
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
756
|
-
|
757
|
-
|
758
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:03 +0100
|
759
|
-
Processing by ApplicationController#home as HTML
|
760
|
-
Parameters: {"activated"=>"true"}
|
761
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
762
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
763
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
764
|
-
|
765
|
-
|
766
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:03 +0100
|
767
|
-
Processing by ApplicationController#home as HTML
|
768
|
-
Parameters: {"activated"=>"true"}
|
769
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
770
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
771
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
772
|
-
|
773
|
-
|
774
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:04 +0100
|
775
|
-
Processing by ApplicationController#home as HTML
|
776
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
777
|
-
Rendered pages/home.html.haml within layouts/application (1.5ms)
|
778
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
779
|
-
|
780
|
-
|
781
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:04 +0100
|
782
|
-
Processing by ApplicationController#home as HTML
|
783
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
784
|
-
Rendered pages/home.html.haml within layouts/application (1.5ms)
|
785
|
-
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
786
|
-
|
787
|
-
|
788
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:04 +0100
|
789
|
-
Processing by ApplicationController#home as HTML
|
790
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
791
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
792
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
793
|
-
|
794
|
-
|
795
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:04 +0100
|
796
|
-
Processing by ApplicationController#home as HTML
|
797
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
798
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
799
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
800
|
-
|
801
|
-
|
802
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:04 +0100
|
803
|
-
Processing by ApplicationController#home as HTML
|
804
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
805
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
806
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
807
|
-
|
808
|
-
|
809
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:05 +0100
|
810
|
-
Processing by ApplicationController#home as HTML
|
811
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
812
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
813
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
814
|
-
|
815
|
-
|
816
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:05 +0100
|
817
|
-
Processing by ApplicationController#home as HTML
|
818
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
819
|
-
Rendered pages/home.html.haml within layouts/application (2.0ms)
|
820
|
-
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
821
|
-
|
822
|
-
|
823
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:05 +0100
|
824
|
-
Processing by ApplicationController#home as HTML
|
825
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
826
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
827
|
-
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
828
|
-
|
829
|
-
|
830
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:05 +0100
|
831
|
-
Processing by ApplicationController#home as HTML
|
832
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
833
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
834
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
835
|
-
|
836
|
-
|
837
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:15 +0100
|
838
|
-
Processing by ApplicationController#home as HTML
|
839
|
-
Parameters: {"activated"=>"true"}
|
840
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
841
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
842
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
843
|
-
|
844
|
-
|
845
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:17 +0100
|
846
|
-
Processing by ApplicationController#home as HTML
|
847
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
848
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
849
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
850
|
-
|
851
|
-
|
852
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:13:18 +0100
|
853
|
-
Processing by ApplicationController#home as HTML
|
854
|
-
Parameters: {"activated"=>"true"}
|
855
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
856
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
857
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
858
|
-
|
859
|
-
|
860
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:13:19 +0100
|
861
|
-
Processing by ApplicationController#home as HTML
|
862
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
863
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
864
|
-
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
865
|
-
|
866
|
-
|
867
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:47 +0100
|
868
|
-
Processing by ApplicationController#home as HTML
|
869
|
-
Rendered shared/_partial1.html.haml (0.8ms)
|
870
|
-
Rendered pages/home.html.haml within layouts/application (8.8ms)
|
871
|
-
Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
|
872
|
-
|
873
|
-
|
874
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:50 +0100
|
875
|
-
Processing by ApplicationController#home as HTML
|
876
|
-
Parameters: {"activated"=>"true"}
|
877
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
|
878
|
-
Rendered pages/home.html.haml within layouts/application (2.8ms)
|
879
|
-
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
880
|
-
|
881
|
-
|
882
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:51 +0100
|
883
|
-
Processing by ApplicationController#home as HTML
|
884
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
885
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
886
|
-
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
887
|
-
|
888
|
-
|
889
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:51 +0100
|
890
|
-
Processing by ApplicationController#home as HTML
|
891
|
-
Parameters: {"activated"=>"true"}
|
892
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
893
|
-
Rendered pages/home.html.haml within layouts/application (1.9ms)
|
894
|
-
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
895
|
-
|
896
|
-
|
897
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:52 +0100
|
898
|
-
Processing by ApplicationController#home as HTML
|
899
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
900
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
901
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
902
|
-
|
903
|
-
|
904
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:52 +0100
|
905
|
-
Processing by ApplicationController#home as HTML
|
906
|
-
Parameters: {"activated"=>"true"}
|
907
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
908
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
909
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
910
|
-
|
911
|
-
|
912
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:53 +0100
|
913
|
-
Processing by ApplicationController#home as HTML
|
914
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
915
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
916
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
917
|
-
|
918
|
-
|
919
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:53 +0100
|
920
|
-
Processing by ApplicationController#home as HTML
|
921
|
-
Parameters: {"activated"=>"true"}
|
922
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
923
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
924
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
925
|
-
|
926
|
-
|
927
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:54 +0100
|
928
|
-
Processing by ApplicationController#home as HTML
|
929
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
930
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
931
|
-
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
932
|
-
|
933
|
-
|
934
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:56 +0100
|
935
|
-
Processing by ApplicationController#home as HTML
|
936
|
-
Parameters: {"activated"=>"true"}
|
937
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
938
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
939
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
940
|
-
|
941
|
-
|
942
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:57 +0100
|
943
|
-
Processing by ApplicationController#home as HTML
|
944
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
945
|
-
Rendered pages/home.html.haml within layouts/application (1.1ms)
|
946
|
-
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
947
|
-
|
948
|
-
|
949
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:57 +0100
|
950
|
-
Processing by ApplicationController#home as HTML
|
951
|
-
Parameters: {"activated"=>"true"}
|
952
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
953
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
954
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
955
|
-
|
956
|
-
|
957
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:58 +0100
|
958
|
-
Processing by ApplicationController#home as HTML
|
959
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
960
|
-
Rendered pages/home.html.haml within layouts/application (1.3ms)
|
961
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
962
|
-
|
963
|
-
|
964
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:14:58 +0100
|
965
|
-
Processing by ApplicationController#home as HTML
|
966
|
-
Parameters: {"activated"=>"true"}
|
967
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
968
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
969
|
-
Completed 200 OK in 33ms (Views: 32.3ms | ActiveRecord: 0.0ms)
|
970
|
-
|
971
|
-
|
972
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:14:59 +0100
|
973
|
-
Processing by ApplicationController#home as HTML
|
974
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
975
|
-
Rendered pages/home.html.haml within layouts/application (1.4ms)
|
976
|
-
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
977
|
-
|
978
|
-
|
979
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:00 +0100
|
980
|
-
Processing by ApplicationController#home as HTML
|
981
|
-
Parameters: {"activated"=>"true"}
|
982
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
983
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
984
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
985
|
-
|
986
|
-
|
987
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:04 +0100
|
988
|
-
Processing by ApplicationController#home as HTML
|
989
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
990
|
-
Rendered pages/home.html.haml within layouts/application (1.2ms)
|
991
|
-
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
992
|
-
|
993
|
-
|
994
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:05 +0100
|
995
|
-
Processing by ApplicationController#home as HTML
|
996
|
-
Parameters: {"activated"=>"true"}
|
997
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
998
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
999
|
-
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
1000
|
-
|
1001
|
-
|
1002
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:55 +0100
|
1003
|
-
Processing by ApplicationController#home as HTML
|
1004
|
-
Parameters: {"activated"=>"true"}
|
1005
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
|
1006
|
-
Rendered pages/home.html.haml within layouts/application (9.3ms)
|
1007
|
-
Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
1008
|
-
|
1009
|
-
|
1010
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:57 +0100
|
1011
|
-
Processing by ApplicationController#home as HTML
|
1012
|
-
Parameters: {"activated"=>"true"}
|
1013
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
1014
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1015
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1016
|
-
|
1017
|
-
|
1018
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:57 +0100
|
1019
|
-
Processing by ApplicationController#home as HTML
|
1020
|
-
Parameters: {"activated"=>"true"}
|
1021
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.1ms)
|
1022
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1023
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
1024
|
-
|
1025
|
-
|
1026
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:57 +0100
|
1027
|
-
Processing by ApplicationController#home as HTML
|
1028
|
-
Parameters: {"activated"=>"true"}
|
1029
|
-
Rendered app/contexts/test/views/shared/_partial1.html.haml (0.0ms)
|
1030
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1031
|
-
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
1032
|
-
|
1033
|
-
|
1034
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:41 +0100
|
1035
|
-
Processing by ApplicationController#home as HTML
|
1036
|
-
Rendered shared/_partial1.html.haml (0.8ms)
|
1037
|
-
Rendered pages/home.html.haml within layouts/application (9.5ms)
|
1038
|
-
Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
1039
|
-
|
1040
|
-
|
1041
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:43 +0100
|
1042
|
-
Processing by ApplicationController#home as HTML
|
1043
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
1044
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1045
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1046
|
-
|
1047
|
-
|
1048
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:45 +0100
|
1049
|
-
Processing by ApplicationController#home as HTML
|
1050
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1051
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1052
|
-
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1053
|
-
|
1054
|
-
|
1055
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:48 +0100
|
1056
|
-
Processing by ApplicationController#home as HTML
|
1057
|
-
Parameters: {"activated"=>"true"}
|
1058
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
|
1059
|
-
Rendered pages/home.html.haml within layouts/application (2.8ms)
|
1060
|
-
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
1061
|
-
|
1062
|
-
|
1063
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:49 +0100
|
1064
|
-
Processing by ApplicationController#home as HTML
|
1065
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
1066
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1067
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
1068
|
-
|
1069
|
-
|
1070
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:50 +0100
|
1071
|
-
Processing by ApplicationController#home as HTML
|
1072
|
-
Parameters: {"activated"=>"true"}
|
1073
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.1ms)
|
1074
|
-
Rendered pages/home.html.haml within layouts/application (2.1ms)
|
1075
|
-
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
1076
|
-
|
1077
|
-
|
1078
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:50 +0100
|
1079
|
-
Processing by ApplicationController#home as HTML
|
1080
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1081
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1082
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1083
|
-
|
1084
|
-
|
1085
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:51 +0100
|
1086
|
-
Processing by ApplicationController#home as HTML
|
1087
|
-
Parameters: {"activated"=>"true"}
|
1088
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1089
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1090
|
-
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
1091
|
-
|
1092
|
-
|
1093
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:52 +0100
|
1094
|
-
Processing by ApplicationController#home as HTML
|
1095
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1096
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1097
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1098
|
-
|
1099
|
-
|
1100
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:52 +0100
|
1101
|
-
Processing by ApplicationController#home as HTML
|
1102
|
-
Parameters: {"activated"=>"true"}
|
1103
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1104
|
-
Rendered pages/home.html.haml within layouts/application (1.9ms)
|
1105
|
-
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
1106
|
-
|
1107
|
-
|
1108
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:53 +0100
|
1109
|
-
Processing by ApplicationController#home as HTML
|
1110
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
1111
|
-
Rendered pages/home.html.haml within layouts/application (2.5ms)
|
1112
|
-
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
1113
|
-
|
1114
|
-
|
1115
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:53 +0100
|
1116
|
-
Processing by ApplicationController#home as HTML
|
1117
|
-
Parameters: {"activated"=>"true"}
|
1118
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.1ms)
|
1119
|
-
Rendered pages/home.html.haml within layouts/application (31.2ms)
|
1120
|
-
Completed 200 OK in 35ms (Views: 34.3ms | ActiveRecord: 0.0ms)
|
1121
|
-
|
1122
|
-
|
1123
|
-
Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:54 +0100
|
1124
|
-
Processing by ApplicationController#home as HTML
|
1125
|
-
Rendered shared/_partial1.html.haml (0.1ms)
|
1126
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1127
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1128
|
-
|
1129
|
-
|
1130
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:54 +0100
|
1131
|
-
Processing by ApplicationController#home as HTML
|
1132
|
-
Parameters: {"activated"=>"true"}
|
1133
|
-
Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.1ms)
|
1134
|
-
Rendered pages/home.html.haml within layouts/application (2.0ms)
|
1135
|
-
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
1136
|
-
|
1137
|
-
|
1138
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:49:53 +0200
|
1139
|
-
Processing by ApplicationController#home as HTML
|
1140
|
-
Parameters: {"activated"=>"true"}
|
1141
|
-
Rendered shared/_partial1.html.haml (0.5ms)
|
1142
|
-
Rendered pages/home.html.haml within layouts/application (11.5ms)
|
1143
|
-
Completed 500 Internal Server Error in 34ms
|
1144
|
-
|
1145
|
-
ActionView::Template::Error (Missing partial shared/partial2 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
1146
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/phenomenal"
|
1147
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/app/views"
|
1148
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/app/views"
|
1149
|
-
):
|
1150
|
-
21: %br
|
1151
|
-
22: =render "shared/partial1"
|
1152
|
-
23: %br
|
1153
|
-
24: =render "shared/partial2"
|
1154
|
-
25: %br
|
1155
|
-
26: %br
|
1156
|
-
27:
|
1157
|
-
app/views/pages/home.html.haml:24:in `_app_views_pages_home_html_haml___3476481925329455204_21324400'
|
1158
|
-
app/controllers/application_controller.rb:6:in `home'
|
1159
|
-
|
1160
|
-
|
1161
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
|
1162
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1163
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
|
1164
|
-
|
1165
|
-
|
1166
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:49:57 +0200
|
1167
|
-
Processing by ApplicationController#home as HTML
|
1168
|
-
Parameters: {"activated"=>"true"}
|
1169
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1170
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1171
|
-
Completed 500 Internal Server Error in 2ms
|
1172
|
-
|
1173
|
-
ActionView::Template::Error (Missing partial shared/partial2 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
1174
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/phenomenal"
|
1175
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/app/views"
|
1176
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/app/views"
|
1177
|
-
):
|
1178
|
-
21: %br
|
1179
|
-
22: =render "shared/partial1"
|
1180
|
-
23: %br
|
1181
|
-
24: =render "shared/partial2"
|
1182
|
-
25: %br
|
1183
|
-
26: %br
|
1184
|
-
27:
|
1185
|
-
app/views/pages/home.html.haml:24:in `_app_views_pages_home_html_haml___3476481925329455204_21324400'
|
1186
|
-
app/controllers/application_controller.rb:6:in `home'
|
1187
|
-
|
1188
|
-
|
1189
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
|
1190
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
1191
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
|
1192
|
-
|
1193
|
-
|
1194
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:51:46 +0200
|
1195
|
-
Processing by ApplicationController#home as HTML
|
1196
|
-
Parameters: {"activated"=>"true"}
|
1197
|
-
Rendered shared/_partial1.html.haml (0.5ms)
|
1198
|
-
Rendered pages/home.html.haml within layouts/application (11.6ms)
|
1199
|
-
Completed 500 Internal Server Error in 34ms
|
1200
|
-
|
1201
|
-
ActionView::Template::Error (Missing partial shared/partial2 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
1202
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/phenomenal"
|
1203
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/app/views"
|
1204
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/app/views"
|
1205
|
-
):
|
1206
|
-
21: %br
|
1207
|
-
22: =render "shared/partial1"
|
1208
|
-
23: %br
|
1209
|
-
24: =render "shared/partial2"
|
1210
|
-
25: %br
|
1211
|
-
26: %br
|
1212
|
-
27:
|
1213
|
-
app/views/pages/home.html.haml:24:in `_app_views_pages_home_html_haml__4281775607708514417_19805240'
|
1214
|
-
app/controllers/application_controller.rb:6:in `home'
|
1215
|
-
|
1216
|
-
|
1217
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
|
1218
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1219
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
|
1220
|
-
|
1221
|
-
|
1222
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:51:50 +0200
|
1223
|
-
Processing by ApplicationController#home as HTML
|
1224
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1225
|
-
Rendered pages/home.html.haml within layouts/application (1.5ms)
|
1226
|
-
Completed 500 Internal Server Error in 2ms
|
1227
|
-
|
1228
|
-
ActionView::Template::Error (Missing partial shared/partial2 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
|
1229
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/phenomenal"
|
1230
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/spec/dummy/app/views"
|
1231
|
-
* "/home/thibault/RoRworkspace/phenomenal_rails/app/views"
|
1232
|
-
):
|
1233
|
-
21: %br
|
1234
|
-
22: =render "shared/partial1"
|
1235
|
-
23: %br
|
1236
|
-
24: =render "shared/partial2"
|
1237
|
-
25: %br
|
1238
|
-
26: %br
|
1239
|
-
27:
|
1240
|
-
app/views/pages/home.html.haml:24:in `_app_views_pages_home_html_haml__4281775607708514417_19805240'
|
1241
|
-
app/controllers/application_controller.rb:6:in `home'
|
1242
|
-
|
1243
|
-
|
1244
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
|
1245
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
1246
|
-
Rendered /usr/lib/ruby/gems/1.9.2/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
|
1247
|
-
|
1248
|
-
|
1249
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:52:55 +0200
|
1250
|
-
Processing by ApplicationController#home as HTML
|
1251
|
-
Rendered shared/_partial1.html.haml (0.7ms)
|
1252
|
-
Rendered text template (0.0ms)
|
1253
|
-
Rendered pages/home.html.haml within layouts/application (54.3ms)
|
1254
|
-
Completed 200 OK in 79ms (Views: 78.8ms | ActiveRecord: 0.0ms)
|
1255
|
-
|
1256
|
-
|
1257
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:52:57 +0200
|
1258
|
-
Processing by ApplicationController#home as HTML
|
1259
|
-
Parameters: {"activated"=>"true"}
|
1260
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.6ms)
|
1261
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.5ms)
|
1262
|
-
Rendered pages/home.html.haml within layouts/application (2.8ms)
|
1263
|
-
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
1264
|
-
|
1265
|
-
|
1266
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:52:58 +0200
|
1267
|
-
Processing by ApplicationController#home as HTML
|
1268
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1269
|
-
Rendered text template (0.0ms)
|
1270
|
-
Rendered pages/home.html.haml within layouts/application (1.9ms)
|
1271
|
-
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
1272
|
-
|
1273
|
-
|
1274
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:52:59 +0200
|
1275
|
-
Processing by ApplicationController#home as HTML
|
1276
|
-
Parameters: {"activated"=>"true"}
|
1277
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1278
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.0ms)
|
1279
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1280
|
-
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
1281
|
-
|
1282
|
-
|
1283
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:53:02 +0200
|
1284
|
-
Processing by ApplicationController#home as HTML
|
1285
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1286
|
-
Rendered text template (0.0ms)
|
1287
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
1288
|
-
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1289
|
-
|
1290
|
-
|
1291
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:53:03 +0200
|
1292
|
-
Processing by ApplicationController#home as HTML
|
1293
|
-
Parameters: {"activated"=>"true"}
|
1294
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1295
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.0ms)
|
1296
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1297
|
-
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1298
|
-
|
1299
|
-
|
1300
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:53:04 +0200
|
1301
|
-
Processing by ApplicationController#home as HTML
|
1302
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1303
|
-
Rendered text template (0.0ms)
|
1304
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1305
|
-
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1306
|
-
|
1307
|
-
|
1308
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:53:05 +0200
|
1309
|
-
Processing by ApplicationController#home as HTML
|
1310
|
-
Parameters: {"activated"=>"true"}
|
1311
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1312
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.0ms)
|
1313
|
-
Rendered pages/home.html.haml within layouts/application (1.7ms)
|
1314
|
-
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
1315
|
-
|
1316
|
-
|
1317
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:53:05 +0200
|
1318
|
-
Processing by ApplicationController#home as HTML
|
1319
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1320
|
-
Rendered text template (0.0ms)
|
1321
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
1322
|
-
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1323
|
-
|
1324
|
-
|
1325
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:53:06 +0200
|
1326
|
-
Processing by ApplicationController#home as HTML
|
1327
|
-
Parameters: {"activated"=>"true"}
|
1328
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1329
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.0ms)
|
1330
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1331
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
1332
|
-
|
1333
|
-
|
1334
|
-
Started GET "/" for 127.0.0.1 at 2012-04-17 16:53:12 +0200
|
1335
|
-
Processing by ApplicationController#home as HTML
|
1336
|
-
Rendered shared/_partial1.html.haml (0.0ms)
|
1337
|
-
Rendered text template (0.0ms)
|
1338
|
-
Rendered pages/home.html.haml within layouts/application (1.8ms)
|
1339
|
-
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1340
|
-
|
1341
|
-
|
1342
|
-
Started GET "/?activated=true" for 127.0.0.1 at 2012-04-17 16:53:20 +0200
|
1343
|
-
Processing by ApplicationController#home as HTML
|
1344
|
-
Parameters: {"activated"=>"true"}
|
1345
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial1.html.haml (0.0ms)
|
1346
|
-
Rendered phenomenal/persistent_feature/test_context/views/shared/_partial2.html.haml (0.0ms)
|
1347
|
-
Rendered pages/home.html.haml within layouts/application (1.6ms)
|
1348
|
-
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|