phenomenal_rails 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/LICENSE +179 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +5 -0
  4. data/app/assets/javascripts/phenomenal_rails/application.js +9 -0
  5. data/app/assets/stylesheets/phenomenal_rails/application.css +7 -0
  6. data/app/controllers/phenomenal_rails/application_controller.rb +4 -0
  7. data/app/views/layouts/phenomenal_rails/application.html.erb +14 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/phenomenal_rails/context.rb +22 -0
  10. data/lib/phenomenal_rails/engine.rb +12 -0
  11. data/lib/phenomenal_rails/middleware.rb +15 -0
  12. data/lib/phenomenal_rails/resolver.rb +58 -0
  13. data/lib/phenomenal_rails/version.rb +3 -0
  14. data/lib/phenomenal_rails.rb +43 -0
  15. data/lib/tasks/phenomenal_rails_tasks.rake +4 -0
  16. data/spec/dummy/Rakefile +7 -0
  17. data/spec/dummy/app/assets/javascripts/application.js +9 -0
  18. data/spec/dummy/app/contexts/persistent_feature/persistent_feature.rb +12 -0
  19. data/spec/dummy/app/contexts/persistent_feature/test_context/test_context.rb +9 -0
  20. data/spec/dummy/app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml +1 -0
  21. data/spec/dummy/app/controllers/application_controller.rb +8 -0
  22. data/spec/dummy/app/helpers/application_helper.rb +5 -0
  23. data/spec/dummy/app/views/layouts/application.html.erb +12 -0
  24. data/spec/dummy/app/views/pages/home.html.haml +26 -0
  25. data/spec/dummy/app/views/shared/_partial1.html.haml +1 -0
  26. data/spec/dummy/config/application.rb +48 -0
  27. data/spec/dummy/config/boot.rb +10 -0
  28. data/spec/dummy/config/database.yml +25 -0
  29. data/spec/dummy/config/environment.rb +4 -0
  30. data/spec/dummy/config/environments/development.rb +30 -0
  31. data/spec/dummy/config/environments/production.rb +60 -0
  32. data/spec/dummy/config/environments/test.rb +39 -0
  33. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  34. data/spec/dummy/config/initializers/inflections.rb +11 -0
  35. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  36. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  37. data/spec/dummy/config/initializers/session_store.rb +8 -0
  38. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  39. data/spec/dummy/config/locales/en.yml +5 -0
  40. data/spec/dummy/config/routes.rb +5 -0
  41. data/spec/dummy/config.ru +4 -0
  42. data/spec/dummy/db/development.sqlite3 +0 -0
  43. data/spec/dummy/db/production.sqlite3 +0 -0
  44. data/spec/dummy/db/test.sqlite3 +0 -0
  45. data/spec/dummy/log/development.log +2184 -0
  46. data/spec/dummy/log/production.log +1135 -0
  47. data/spec/dummy/public/404.html +26 -0
  48. data/spec/dummy/public/422.html +26 -0
  49. data/spec/dummy/public/500.html +26 -0
  50. data/spec/dummy/public/favicon.ico +0 -0
  51. data/spec/dummy/script/rails +6 -0
  52. data/spec/spec_helper.rb +32 -0
  53. metadata +166 -0
@@ -0,0 +1,2184 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-02-15 17:04:00 +0100
4
+
5
+ SQLite3::CantOpenException (unable to open database file):
6
+
7
+
8
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
9
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (25.2ms)
10
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.1ms)
11
+
12
+
13
+ Started GET "/" for 127.0.0.1 at 2012-02-15 17:04:01 +0100
14
+
15
+ SQLite3::CantOpenException (unable to open database file):
16
+
17
+
18
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
19
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
20
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.0ms)
21
+
22
+
23
+ Started GET "/" for 127.0.0.1 at 2012-02-15 17:05:03 +0100
24
+ Processing by ApplicationController#home as HTML
25
+ Rendered pages/home.html.erb within layouts/application (3.1ms)
26
+ Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.0ms)
27
+
28
+
29
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-02-15 17:05:04 +0100
30
+ Served asset /application.js - 404 Not Found (7ms)
31
+
32
+ ActionController::RoutingError (No route matches [GET] "/assets/application.js"):
33
+
34
+
35
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
36
+
37
+
38
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-15 17:05:04 +0100
39
+ Served asset /application.css - 404 Not Found (5ms)
40
+
41
+ ActionController::RoutingError (No route matches [GET] "/assets/application.css"):
42
+
43
+
44
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
45
+
46
+
47
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-02-15 17:05:04 +0100
48
+ Served asset /application.css - 404 Not Found (2ms)
49
+
50
+ ActionController::RoutingError (No route matches [GET] "/assets/application.css"):
51
+
52
+
53
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
54
+
55
+
56
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:34:25 +0100
57
+ Processing by ApplicationController#home as HTML
58
+ Rendered pages/home.html.erb within layouts/application (2.7ms)
59
+ Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
60
+
61
+
62
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:34:57 +0100
63
+ Processing by ApplicationController#home as HTML
64
+ Rendered pages/home.html.erb within layouts/application (0.3ms)
65
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:35:04 +0100
69
+ Processing by ApplicationController#home as HTML
70
+ Rendered pages/home.html.erb within layouts/application (0.2ms)
71
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
72
+
73
+
74
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:39:28 +0100
75
+ Processing by ApplicationController#home as HTML
76
+ Rendered pages/home.html.erb within layouts/application (2.7ms)
77
+ Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
78
+
79
+
80
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:39:31 +0100
81
+ Processing by ApplicationController#home as HTML
82
+ Rendered pages/home.html.erb within layouts/application (0.2ms)
83
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
84
+
85
+
86
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:39:32 +0100
87
+ Processing by ApplicationController#home as HTML
88
+ Rendered pages/home.html.erb within layouts/application (0.2ms)
89
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
90
+
91
+
92
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:40:08 +0100
93
+ Processing by ApplicationController#home as HTML
94
+ Rendered pages/home.html.erb within layouts/application (0.2ms)
95
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
96
+
97
+
98
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:41:21 +0100
99
+ Processing by ApplicationController#home as HTML
100
+ Rendered pages/home.html.erb within layouts/application (2.3ms)
101
+ Completed 200 OK in 37ms (Views: 36.6ms | ActiveRecord: 0.0ms)
102
+
103
+
104
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:41:30 +0100
105
+
106
+ Phenomenal::Error (Unknown context Firefox):
107
+ app/contexts/test/test.rb:7:in `block (2 levels) in <top (required)>'
108
+
109
+
110
+ 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.0ms)
111
+ 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 (2.9ms)
112
+ 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.7ms)
113
+
114
+
115
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:41:30 +0100
116
+
117
+ Phenomenal::Error (Unknown context Firefox):
118
+ app/contexts/test/test.rb:7:in `block (2 levels) in <top (required)>'
119
+
120
+
121
+ 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 (2.7ms)
122
+ 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)
123
+ 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 (10.8ms)
124
+
125
+
126
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:41:45 +0100
127
+ Processing by ApplicationController#home as HTML
128
+ Rendered pages/home.html.erb within layouts/application (0.7ms)
129
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
130
+
131
+
132
+ Started GET "/" for 127.0.0.1 at 2012-03-02 15:42:02 +0100
133
+ Processing by ApplicationController#home as HTML
134
+ Rendered pages/home.html.erb within layouts/application (0.2ms)
135
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
136
+
137
+
138
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:11:05 +0100
139
+ Processing by ApplicationController#home as HTML
140
+ Rendered pages/home.html.erb within layouts/application (3.0ms)
141
+ Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms)
142
+
143
+
144
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:15:06 +0100
145
+ Processing by ApplicationController#home as HTML
146
+ Completed 500 Internal Server Error in 32ms
147
+
148
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
149
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
150
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
151
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
152
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
153
+ * "/"
154
+ ):
155
+ app/controllers/application_controller.rb:6:in `home'
156
+
157
+
158
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
159
+
160
+
161
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:15:06 +0100
162
+ Processing by ApplicationController#home as */*
163
+ Completed 500 Internal Server Error in 10ms
164
+
165
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
166
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
167
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
168
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
169
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
170
+ * "/"
171
+ ):
172
+ app/controllers/application_controller.rb:6:in `home'
173
+
174
+
175
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
176
+
177
+
178
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:16:32 +0100
179
+ Processing by ApplicationController#home as HTML
180
+ Completed 500 Internal Server Error in 2ms
181
+
182
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
183
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
184
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
185
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
186
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
187
+ * "/"
188
+ ):
189
+ app/controllers/application_controller.rb:6:in `home'
190
+
191
+
192
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
193
+
194
+
195
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:16:32 +0100
196
+ Processing by ApplicationController#home as */*
197
+ Completed 500 Internal Server Error in 11ms
198
+
199
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
200
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
201
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
202
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
203
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
204
+ * "/"
205
+ ):
206
+ app/controllers/application_controller.rb:6:in `home'
207
+
208
+
209
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
210
+
211
+
212
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:22:25 +0100
213
+ Processing by ApplicationController#home as HTML
214
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.0ms)
215
+ Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
216
+
217
+
218
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:23:16 +0100
219
+ Processing by ApplicationController#home as HTML
220
+ Rendered pages/home.html.haml within layouts/application (2.3ms)
221
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
222
+
223
+
224
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:24:20 +0100
225
+ Processing by ApplicationController#home as HTML
226
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
227
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
228
+
229
+
230
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:24:33 +0100
231
+ Processing by ApplicationController#home as HTML
232
+ Rendered pages/home.html.haml within layouts/application (2.9ms)
233
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
234
+
235
+
236
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:24:36 +0100
237
+ Processing by ApplicationController#home as HTML
238
+ Rendered pages/home.html.haml within layouts/application (0.3ms)
239
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
240
+
241
+
242
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:25:06 +0100
243
+ Processing by ApplicationController#home as HTML
244
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
245
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
246
+
247
+
248
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:25:21 +0100
249
+ Processing by ApplicationController#home as HTML
250
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
251
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
252
+
253
+
254
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:25:30 +0100
255
+ Processing by ApplicationController#home as HTML
256
+ Rendered pages/home.html.haml within layouts/application (2.9ms)
257
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
258
+
259
+
260
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:29:03 +0100
261
+ Processing by ApplicationController#home as HTML
262
+ Completed 500 Internal Server Error in 13ms
263
+
264
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
265
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
266
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
267
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
268
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
269
+ * "/"
270
+ ):
271
+ app/controllers/application_controller.rb:6:in `home'
272
+
273
+
274
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (3.5ms)
275
+
276
+
277
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:29:04 +0100
278
+ Processing by ApplicationController#home as */*
279
+ Completed 500 Internal Server Error in 8ms
280
+
281
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
282
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
283
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
284
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
285
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
286
+ * "/"
287
+ ):
288
+ app/controllers/application_controller.rb:6:in `home'
289
+
290
+
291
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
292
+
293
+
294
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:30:42 +0100
295
+ Processing by ApplicationController#home as HTML
296
+ Completed 500 Internal Server Error in 13ms
297
+
298
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
299
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
300
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
301
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
302
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
303
+ * "/"
304
+ ):
305
+ app/controllers/application_controller.rb:6:in `home'
306
+
307
+
308
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.3ms)
309
+
310
+
311
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:30:43 +0100
312
+ Processing by ApplicationController#home as */*
313
+ Completed 500 Internal Server Error in 7ms
314
+
315
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
316
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
317
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
318
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
319
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
320
+ * "/"
321
+ ):
322
+ app/controllers/application_controller.rb:6:in `home'
323
+
324
+
325
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
326
+
327
+
328
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:31:03 +0100
329
+ Processing by ApplicationController#home as HTML
330
+ Completed 500 Internal Server Error in 13ms
331
+
332
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
333
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
334
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
335
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
336
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
337
+ * "/"
338
+ ):
339
+ app/controllers/application_controller.rb:6:in `home'
340
+
341
+
342
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.5ms)
343
+
344
+
345
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:31:03 +0100
346
+ Processing by ApplicationController#home as */*
347
+ Completed 500 Internal Server Error in 7ms
348
+
349
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
350
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
351
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
352
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
353
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
354
+ * "/"
355
+ ):
356
+ app/controllers/application_controller.rb:6:in `home'
357
+
358
+
359
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
360
+
361
+
362
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:32:19 +0100
363
+ Processing by ApplicationController#home as HTML
364
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
365
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
366
+
367
+
368
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:01 +0100
369
+ Processing by ApplicationController#home as HTML
370
+ Completed 500 Internal Server Error in 12ms
371
+
372
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
373
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
374
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
375
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
376
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
377
+ * "/"
378
+ ):
379
+ app/controllers/application_controller.rb:6:in `home'
380
+
381
+
382
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.3ms)
383
+
384
+
385
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:02 +0100
386
+ Processing by ApplicationController#home as */*
387
+ Completed 500 Internal Server Error in 7ms
388
+
389
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
390
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
391
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
392
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
393
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
394
+ * "/"
395
+ ):
396
+ app/controllers/application_controller.rb:6:in `home'
397
+
398
+
399
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
400
+
401
+
402
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:36 +0100
403
+ Processing by ApplicationController#home as HTML
404
+ Completed 500 Internal Server Error in 14ms
405
+
406
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
407
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
408
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
409
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
410
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
411
+ * "/"
412
+ ):
413
+ app/controllers/application_controller.rb:6:in `home'
414
+
415
+
416
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
417
+
418
+
419
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:37 +0100
420
+ Processing by ApplicationController#home as */*
421
+ Completed 500 Internal Server Error in 6ms
422
+
423
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
424
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
425
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
426
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
427
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
428
+ * "/"
429
+ ):
430
+ app/controllers/application_controller.rb:6:in `home'
431
+
432
+
433
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
434
+
435
+
436
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:38 +0100
437
+ Processing by ApplicationController#home as HTML
438
+ Completed 500 Internal Server Error in 2ms
439
+
440
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
441
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
442
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
443
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
444
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
445
+ * "/"
446
+ ):
447
+ app/controllers/application_controller.rb:6:in `home'
448
+
449
+
450
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
451
+
452
+
453
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:38 +0100
454
+ Processing by ApplicationController#home as */*
455
+ Completed 500 Internal Server Error in 7ms
456
+
457
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
458
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
459
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
460
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
461
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
462
+ * "/"
463
+ ):
464
+ app/controllers/application_controller.rb:6:in `home'
465
+
466
+
467
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
468
+
469
+
470
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:39 +0100
471
+ Processing by ApplicationController#home as HTML
472
+ Completed 500 Internal Server Error in 2ms
473
+
474
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
475
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
476
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
477
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
478
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
479
+ * "/"
480
+ ):
481
+ app/controllers/application_controller.rb:6:in `home'
482
+
483
+
484
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
485
+
486
+
487
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:37:39 +0100
488
+ Processing by ApplicationController#home as */*
489
+ Completed 500 Internal Server Error in 7ms
490
+
491
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
492
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
493
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
494
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
495
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
496
+ * "/"
497
+ ):
498
+ app/controllers/application_controller.rb:6:in `home'
499
+
500
+
501
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
502
+
503
+
504
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:39:12 +0100
505
+ Processing by ApplicationController#home as HTML
506
+ Completed 500 Internal Server Error in 14ms
507
+
508
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
509
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
510
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
511
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
512
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
513
+ * "/"
514
+ ):
515
+ app/controllers/application_controller.rb:6:in `home'
516
+
517
+
518
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
519
+
520
+
521
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:39:12 +0100
522
+ Processing by ApplicationController#home as */*
523
+ Completed 500 Internal Server Error in 7ms
524
+
525
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
526
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
527
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
528
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
529
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
530
+ * "/"
531
+ ):
532
+ app/controllers/application_controller.rb:6:in `home'
533
+
534
+
535
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
536
+
537
+
538
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:39:14 +0100
539
+ Processing by ApplicationController#home as HTML
540
+ Completed 500 Internal Server Error in 2ms
541
+
542
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
543
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
544
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
545
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
546
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
547
+ * "/"
548
+ ):
549
+ app/controllers/application_controller.rb:6:in `home'
550
+
551
+
552
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
553
+
554
+
555
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:39:14 +0100
556
+ Processing by ApplicationController#home as */*
557
+ Completed 500 Internal Server Error in 11ms
558
+
559
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
560
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
561
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
562
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
563
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
564
+ * "/"
565
+ ):
566
+ app/controllers/application_controller.rb:6:in `home'
567
+
568
+
569
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.6ms)
570
+
571
+
572
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:42:03 +0100
573
+ Processing by ApplicationController#home as HTML
574
+ Completed 500 Internal Server Error in 14ms
575
+
576
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
577
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
578
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
579
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
580
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
581
+ * "/"
582
+ ):
583
+ app/controllers/application_controller.rb:6:in `home'
584
+
585
+
586
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (4.0ms)
587
+
588
+
589
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:42:04 +0100
590
+ Processing by ApplicationController#home as */*
591
+ Completed 500 Internal Server Error in 7ms
592
+
593
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
594
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
595
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
596
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
597
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
598
+ * "/"
599
+ ):
600
+ app/controllers/application_controller.rb:6:in `home'
601
+
602
+
603
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
604
+
605
+
606
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:42:45 +0100
607
+ Processing by ApplicationController#home as HTML
608
+ Rendered pages/home.html.haml within layouts/application (4.2ms)
609
+ Completed 200 OK in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms)
610
+
611
+
612
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:42:58 +0100
613
+ Processing by ApplicationController#home as HTML
614
+ Rendered pages/home.html.haml within layouts/application (5.7ms)
615
+ Completed 500 Internal Server Error in 8ms
616
+
617
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::RAILS_ENV):
618
+ 14:
619
+ 15: = ActionController::Base.view_paths.paths
620
+ 16: %br
621
+ 17: =RAILS_ENV
622
+ app/views/pages/home.html.haml:17:in `_app_views_pages_home_html_haml___1829336968728128694_70160534814940'
623
+ app/controllers/application_controller.rb:6:in `home'
624
+
625
+
626
+ 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.8ms)
627
+ 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)
628
+ 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 (62.6ms)
629
+
630
+
631
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:42:58 +0100
632
+ Processing by ApplicationController#home as */*
633
+ Rendered pages/home.html.haml within layouts/application (5.7ms)
634
+ Completed 500 Internal Server Error in 10ms
635
+
636
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::RAILS_ENV):
637
+ 14:
638
+ 15: = ActionController::Base.view_paths.paths
639
+ 16: %br
640
+ 17: =RAILS_ENV
641
+ app/views/pages/home.html.haml:17:in `_app_views_pages_home_html_haml___1829336968728128694_70160542371620'
642
+ app/controllers/application_controller.rb:6:in `home'
643
+
644
+
645
+ 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.7ms)
646
+ 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.2ms)
647
+ 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 (15.2ms)
648
+
649
+
650
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:43:07 +0100
651
+ Processing by ApplicationController#home as HTML
652
+ Rendered pages/home.html.haml within layouts/application (2.9ms)
653
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.0ms)
654
+
655
+
656
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:43:40 +0100
657
+ Processing by ApplicationController#home as HTML
658
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
659
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
660
+
661
+
662
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:43:52 +0100
663
+ Processing by ApplicationController#home as HTML
664
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
665
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
666
+
667
+
668
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:01 +0100
669
+ Processing by ApplicationController#home as HTML
670
+ Completed 500 Internal Server Error in 12ms
671
+
672
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
673
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
674
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
675
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
676
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
677
+ * "/"
678
+ ):
679
+ app/controllers/application_controller.rb:6:in `home'
680
+
681
+
682
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
683
+
684
+
685
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:01 +0100
686
+ Processing by ApplicationController#home as */*
687
+ Completed 500 Internal Server Error in 6ms
688
+
689
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
690
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
691
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
692
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
693
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
694
+ * "/"
695
+ ):
696
+ app/controllers/application_controller.rb:6:in `home'
697
+
698
+
699
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
700
+
701
+
702
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:39 +0100
703
+ Processing by ApplicationController#home as HTML
704
+ Completed 500 Internal Server Error in 12ms
705
+
706
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
707
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
708
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
709
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
710
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
711
+ * "/"
712
+ ):
713
+ app/controllers/application_controller.rb:6:in `home'
714
+
715
+
716
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.4ms)
717
+
718
+
719
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:40 +0100
720
+ Processing by ApplicationController#home as */*
721
+ Completed 500 Internal Server Error in 6ms
722
+
723
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
724
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
725
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
726
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
727
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
728
+ * "/"
729
+ ):
730
+ app/controllers/application_controller.rb:6:in `home'
731
+
732
+
733
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
734
+
735
+
736
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:41 +0100
737
+ Processing by ApplicationController#home as HTML
738
+ Completed 500 Internal Server Error in 2ms
739
+
740
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
741
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
742
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
743
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
744
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
745
+ * "/"
746
+ ):
747
+ app/controllers/application_controller.rb:6:in `home'
748
+
749
+
750
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
751
+
752
+
753
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:45:42 +0100
754
+ Processing by ApplicationController#home as */*
755
+ Completed 500 Internal Server Error in 6ms
756
+
757
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
758
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
759
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
760
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
761
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
762
+ * "/"
763
+ ):
764
+ app/controllers/application_controller.rb:6:in `home'
765
+
766
+
767
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
768
+
769
+
770
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:47:03 +0100
771
+ Processing by ApplicationController#home as HTML
772
+ Completed 500 Internal Server Error in 2ms
773
+
774
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
775
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
776
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
777
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
778
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
779
+ * "/"
780
+ ):
781
+ app/controllers/application_controller.rb:6:in `home'
782
+
783
+
784
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
785
+
786
+
787
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:47:04 +0100
788
+ Processing by ApplicationController#home as */*
789
+ Completed 500 Internal Server Error in 7ms
790
+
791
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
792
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
793
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
794
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
795
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
796
+ * "/"
797
+ ):
798
+ app/controllers/application_controller.rb:6:in `home'
799
+
800
+
801
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
802
+
803
+
804
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:14 +0100
805
+ Processing by ApplicationController#home as HTML
806
+ Completed 500 Internal Server Error in 12ms
807
+
808
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
809
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
810
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
811
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
812
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
813
+ * "/"
814
+ ):
815
+ app/controllers/application_controller.rb:6:in `home'
816
+
817
+
818
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.5ms)
819
+
820
+
821
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:14 +0100
822
+ Processing by ApplicationController#home as */*
823
+ Completed 500 Internal Server Error in 7ms
824
+
825
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
826
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
827
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
828
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
829
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
830
+ * "/"
831
+ ):
832
+ app/controllers/application_controller.rb:6:in `home'
833
+
834
+
835
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
836
+
837
+
838
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:15 +0100
839
+ Processing by ApplicationController#home as HTML
840
+ Completed 500 Internal Server Error in 5ms
841
+
842
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
843
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
844
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
845
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
846
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
847
+ * "/"
848
+ ):
849
+ app/controllers/application_controller.rb:6:in `home'
850
+
851
+
852
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
853
+
854
+
855
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:16 +0100
856
+ Processing by ApplicationController#home as */*
857
+ Completed 500 Internal Server Error in 7ms
858
+
859
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
860
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
861
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
862
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
863
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
864
+ * "/"
865
+ ):
866
+ app/controllers/application_controller.rb:6:in `home'
867
+
868
+
869
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.8ms)
870
+
871
+
872
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:43 +0100
873
+ Processing by ApplicationController#home as HTML
874
+ Completed 500 Internal Server Error in 2ms
875
+
876
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
877
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
878
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
879
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
880
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
881
+ * "/"
882
+ ):
883
+ app/controllers/application_controller.rb:6:in `home'
884
+
885
+
886
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
887
+
888
+
889
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:52:43 +0100
890
+ Processing by ApplicationController#home as */*
891
+ Completed 500 Internal Server Error in 7ms
892
+
893
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
894
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
895
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
896
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
897
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
898
+ * "/"
899
+ ):
900
+ app/controllers/application_controller.rb:6:in `home'
901
+
902
+
903
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
904
+
905
+
906
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:53:28 +0100
907
+ Processing by ApplicationController#home as HTML
908
+ Completed 500 Internal Server Error in 12ms
909
+
910
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
911
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
912
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
913
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
914
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
915
+ * "/"
916
+ ):
917
+ app/controllers/application_controller.rb:6:in `home'
918
+
919
+
920
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.6ms)
921
+
922
+
923
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:53:29 +0100
924
+ Processing by ApplicationController#home as */*
925
+ Completed 500 Internal Server Error in 6ms
926
+
927
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
928
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
929
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
930
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
931
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
932
+ * "/"
933
+ ):
934
+ app/controllers/application_controller.rb:6:in `home'
935
+
936
+
937
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
938
+
939
+
940
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:54:23 +0100
941
+ Processing by ApplicationController#home as HTML
942
+ Completed 500 Internal Server Error in 2ms
943
+
944
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
945
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
946
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
947
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
948
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
949
+ * "/"
950
+ ):
951
+ app/controllers/application_controller.rb:6:in `home'
952
+
953
+
954
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
955
+
956
+
957
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:54:23 +0100
958
+ Processing by ApplicationController#home as */*
959
+ Completed 500 Internal Server Error in 6ms
960
+
961
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
962
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
963
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
964
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
965
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
966
+ * "/"
967
+ ):
968
+ app/controllers/application_controller.rb:6:in `home'
969
+
970
+
971
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
972
+
973
+
974
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:55:17 +0100
975
+ Processing by ApplicationController#home as HTML
976
+ Completed 500 Internal Server Error in 13ms
977
+
978
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
979
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
980
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
981
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
982
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
983
+ * "/"
984
+ ):
985
+ app/controllers/application_controller.rb:6:in `home'
986
+
987
+
988
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.3ms)
989
+
990
+
991
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:55:17 +0100
992
+ Processing by ApplicationController#home as */*
993
+ Completed 500 Internal Server Error in 7ms
994
+
995
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
996
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
997
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
998
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
999
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
1000
+ * "/"
1001
+ ):
1002
+ app/controllers/application_controller.rb:6:in `home'
1003
+
1004
+
1005
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
1006
+
1007
+
1008
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:55:18 +0100
1009
+ Processing by ApplicationController#home as HTML
1010
+ Completed 500 Internal Server Error in 2ms
1011
+
1012
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1013
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
1014
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
1015
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
1016
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
1017
+ * "/"
1018
+ ):
1019
+ app/controllers/application_controller.rb:6:in `home'
1020
+
1021
+
1022
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
1023
+
1024
+
1025
+ Started GET "/" for 127.0.0.1 at 2012-03-03 21:55:18 +0100
1026
+ Processing by ApplicationController#home as */*
1027
+ Completed 500 Internal Server Error in 8ms
1028
+
1029
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
1030
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/contexts"
1031
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy/app/views"
1032
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/app/views"
1033
+ * "/Users/loo/Documents/Ruby/phenomenal_rails/test/dummy"
1034
+ * "/"
1035
+ ):
1036
+ app/controllers/application_controller.rb:6:in `home'
1037
+
1038
+
1039
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@phenomenal-rails/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1040
+
1041
+
1042
+ Started GET "/" for 127.0.0.1 at 2012-03-03 22:09:43 +0100
1043
+ Processing by ApplicationController#home as HTML
1044
+ Rendered pages/home.html.haml within layouts/application (3.3ms)
1045
+ Completed 200 OK in 38ms (Views: 37.8ms | ActiveRecord: 0.0ms)
1046
+
1047
+
1048
+ Started GET "/" for 127.0.0.1 at 2012-03-03 22:10:31 +0100
1049
+ Processing by ApplicationController#home as HTML
1050
+ Rendered pages/home.html.haml within layouts/application (0.3ms)
1051
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1052
+
1053
+
1054
+ Started GET "/" for 127.0.0.1 at 2012-03-04 00:22:00 +0100
1055
+ Processing by ApplicationController#home as HTML
1056
+ Completed 500 Internal Server Error in 13ms
1057
+
1058
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1059
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/contexts"
1060
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/views"
1061
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/app/views"
1062
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy"
1063
+ * "/"
1064
+ ):
1065
+ app/controllers/application_controller.rb:6:in `home'
1066
+
1067
+
1068
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@benubo/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.5ms)
1069
+
1070
+
1071
+ Started GET "/" for 127.0.0.1 at 2012-03-04 00:22:00 +0100
1072
+ Processing by ApplicationController#home as */*
1073
+ Completed 500 Internal Server Error in 8ms
1074
+
1075
+ ActionView::MissingTemplate (Missing template pages/home with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip], :handlers=>[:erb, :builder]}. Searched in:
1076
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/contexts"
1077
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/views"
1078
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/app/views"
1079
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy"
1080
+ * "/"
1081
+ ):
1082
+ app/controllers/application_controller.rb:6:in `home'
1083
+
1084
+
1085
+ Rendered /Users/loo/.rvm/gems/ruby-1.9.3-p0@benubo/gems/actionpack-3.2.2/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
1086
+
1087
+
1088
+ Started GET "/" for 127.0.0.1 at 2012-03-04 00:22:38 +0100
1089
+ Processing by ApplicationController#home as HTML
1090
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1091
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
1092
+
1093
+
1094
+ Started GET "/" for 127.0.0.1 at 2012-03-04 00:24:44 +0100
1095
+ Processing by ApplicationController#home as HTML
1096
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
1097
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1098
+
1099
+
1100
+ Started GET "/" for 127.0.0.1 at 2012-03-07 18:38:50 +0100
1101
+ Processing by ApplicationController#home as HTML
1102
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.1ms)
1103
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
1104
+
1105
+
1106
+ Started GET "/" for 127.0.0.1 at 2012-03-07 18:39:09 +0100
1107
+ Processing by ApplicationController#home as HTML
1108
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1109
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1110
+
1111
+
1112
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:08:36 +0100
1113
+ Processing by ApplicationController#home as HTML
1114
+ Parameters: {"activated"=>"true"}
1115
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (1.2ms)
1116
+ Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
1117
+
1118
+
1119
+ Started GET "/" for 127.0.0.1 at 2012-03-07 21:08:41 +0100
1120
+ Processing by ApplicationController#home as HTML
1121
+ Rendered pages/home.html.haml within layouts/application (3.9ms)
1122
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1123
+
1124
+
1125
+ Started GET "/" for 127.0.0.1 at 2012-03-07 21:10:29 +0100
1126
+ Processing by ApplicationController#home as HTML
1127
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1128
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
1129
+
1130
+
1131
+ Started GET "/" for 127.0.0.1 at 2012-03-07 21:41:33 +0100
1132
+ Processing by ApplicationController#home as HTML
1133
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1134
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
1135
+
1136
+
1137
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:41:37 +0100
1138
+ Processing by ApplicationController#home as HTML
1139
+ Parameters: {"activated"=>"true"}
1140
+ Completed 500 Internal Server Error in 3ms
1141
+
1142
+ NameError (uninitialized constant Phenomenal::Resolver::Template):
1143
+ app/controllers/application_controller.rb:11:in `home'
1144
+
1145
+
1146
+ 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.8ms)
1147
+ 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)
1148
+ 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 (17.2ms)
1149
+
1150
+
1151
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:42:50 +0100
1152
+ Processing by ApplicationController#home as HTML
1153
+ Parameters: {"activated"=>"true"}
1154
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.9ms)
1155
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
1156
+
1157
+
1158
+ Started GET "/" for 127.0.0.1 at 2012-03-07 21:42:53 +0100
1159
+ Processing by ApplicationController#home as HTML
1160
+ Rendered pages/home.html.haml within layouts/application (4.0ms)
1161
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1162
+
1163
+
1164
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 21:42:57 +0100
1165
+ Processing by ApplicationController#home as HTML
1166
+ Parameters: {"activated"=>"true"}
1167
+ Rendered app/contexts/test/views/pages/home.html.haml within layouts/application (0.8ms)
1168
+ Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
1169
+
1170
+
1171
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:48 +0100
1172
+ Processing by ApplicationController#home as HTML
1173
+ Rendered shared/_partial1.html.haml (0.8ms)
1174
+ Rendered pages/home.html.haml within layouts/application (9.3ms)
1175
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1176
+
1177
+
1178
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:49 +0100
1179
+ Processing by ApplicationController#home as HTML
1180
+ Parameters: {"activated"=>"true"}
1181
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1182
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
1183
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1184
+
1185
+
1186
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:51 +0100
1187
+ Processing by ApplicationController#home as HTML
1188
+ Rendered shared/_partial1.html.haml (0.0ms)
1189
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
1190
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1191
+
1192
+
1193
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:51 +0100
1194
+ Processing by ApplicationController#home as HTML
1195
+ Parameters: {"activated"=>"true"}
1196
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1197
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
1198
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1199
+
1200
+
1201
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:52 +0100
1202
+ Processing by ApplicationController#home as HTML
1203
+ Rendered shared/_partial1.html.haml (0.1ms)
1204
+ Rendered pages/home.html.haml within layouts/application (1.7ms)
1205
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
1206
+
1207
+
1208
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:53 +0100
1209
+ Processing by ApplicationController#home as HTML
1210
+ Parameters: {"activated"=>"true"}
1211
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1212
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
1213
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1214
+
1215
+
1216
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:53 +0100
1217
+ Processing by ApplicationController#home as HTML
1218
+ Rendered shared/_partial1.html.haml (0.1ms)
1219
+ Rendered pages/home.html.haml within layouts/application (1.8ms)
1220
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1221
+
1222
+
1223
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:54 +0100
1224
+ Processing by ApplicationController#home as HTML
1225
+ Parameters: {"activated"=>"true"}
1226
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.7ms)
1227
+ Rendered pages/home.html.haml within layouts/application (5.8ms)
1228
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
1229
+
1230
+
1231
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:54 +0100
1232
+ Processing by ApplicationController#home as HTML
1233
+ Rendered shared/_partial1.html.haml (0.0ms)
1234
+ Rendered pages/home.html.haml within layouts/application (1.8ms)
1235
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1236
+
1237
+
1238
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:15:55 +0100
1239
+ Processing by ApplicationController#home as HTML
1240
+ Parameters: {"activated"=>"true"}
1241
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1242
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
1243
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
1244
+
1245
+
1246
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:15:56 +0100
1247
+ Processing by ApplicationController#home as HTML
1248
+ Rendered shared/_partial1.html.haml (0.1ms)
1249
+ Rendered pages/home.html.haml within layouts/application (1.7ms)
1250
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1251
+
1252
+
1253
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:17:49 +0100
1254
+ Processing by ApplicationController#home as HTML
1255
+ Rendered shared/_partial1.html.haml (0.9ms)
1256
+ Rendered pages/home.html.haml within layouts/application (9.2ms)
1257
+ Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
1258
+
1259
+
1260
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:17:57 +0100
1261
+ Processing by ApplicationController#home as HTML
1262
+ Rendered shared/_partial1.html.haml (0.1ms)
1263
+ Rendered pages/home.html.haml within layouts/application (2.0ms)
1264
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
1265
+
1266
+
1267
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:18:11 +0100
1268
+ Processing by ApplicationController#home as HTML
1269
+ Rendered shared/_partial1.html.haml (0.9ms)
1270
+ Rendered pages/home.html.haml within layouts/application (9.4ms)
1271
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
1272
+
1273
+
1274
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:13 +0100
1275
+ Processing by ApplicationController#home as HTML
1276
+ Parameters: {"activated"=>"true"}
1277
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1278
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
1279
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1280
+
1281
+
1282
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:18:13 +0100
1283
+ Processing by ApplicationController#home as HTML
1284
+ Rendered shared/_partial1.html.haml (0.0ms)
1285
+ Rendered pages/home.html.haml within layouts/application (1.7ms)
1286
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1287
+
1288
+
1289
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:18:35 +0100
1290
+ Processing by ApplicationController#home as HTML
1291
+ Rendered shared/_partial1.html.haml (0.8ms)
1292
+ Rendered pages/home.html.haml within layouts/application (9.8ms)
1293
+ Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
1294
+
1295
+
1296
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:18:41 +0100
1297
+ Processing by ApplicationController#home as HTML
1298
+ Rendered shared/_partial1.html.haml (0.1ms)
1299
+ Rendered pages/home.html.haml within layouts/application (1.7ms)
1300
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1301
+
1302
+
1303
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:44 +0100
1304
+ Processing by ApplicationController#home as HTML
1305
+ Parameters: {"activated"=>"true"}
1306
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1307
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
1308
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1309
+
1310
+
1311
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:49 +0100
1312
+ Processing by ApplicationController#home as HTML
1313
+ Parameters: {"activated"=>"true"}
1314
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1315
+ Rendered pages/home.html.haml within layouts/application (2.9ms)
1316
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1317
+
1318
+
1319
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:50 +0100
1320
+ Processing by ApplicationController#home as HTML
1321
+ Parameters: {"activated"=>"true"}
1322
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1323
+ Rendered pages/home.html.haml within layouts/application (4.2ms)
1324
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
1325
+
1326
+
1327
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:50 +0100
1328
+ Processing by ApplicationController#home as HTML
1329
+ Parameters: {"activated"=>"true"}
1330
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1331
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
1332
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1333
+
1334
+
1335
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:50 +0100
1336
+ Processing by ApplicationController#home as HTML
1337
+ Parameters: {"activated"=>"true"}
1338
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1339
+ Rendered pages/home.html.haml within layouts/application (3.3ms)
1340
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
1341
+
1342
+
1343
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:18:50 +0100
1344
+ Processing by ApplicationController#home as HTML
1345
+ Parameters: {"activated"=>"true"}
1346
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1347
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1348
+ Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
1349
+
1350
+
1351
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:19:09 +0100
1352
+ Processing by ApplicationController#home as HTML
1353
+ Parameters: {"activated"=>"true"}
1354
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1355
+ Rendered pages/home.html.haml within layouts/application (8.9ms)
1356
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
1357
+
1358
+
1359
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:19:10 +0100
1360
+ Processing by ApplicationController#home as HTML
1361
+ Parameters: {"activated"=>"true"}
1362
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1363
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
1364
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1365
+
1366
+
1367
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:19:11 +0100
1368
+ Processing by ApplicationController#home as HTML
1369
+ Parameters: {"activated"=>"true"}
1370
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1371
+ Rendered pages/home.html.haml within layouts/application (3.8ms)
1372
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1373
+
1374
+
1375
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:19:11 +0100
1376
+ Processing by ApplicationController#home as HTML
1377
+ Parameters: {"activated"=>"true"}
1378
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1379
+ Rendered pages/home.html.haml within layouts/application (4.0ms)
1380
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
1381
+
1382
+
1383
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:20:02 +0100
1384
+ Processing by ApplicationController#home as HTML
1385
+ Parameters: {"activated"=>"true"}
1386
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.2ms)
1387
+ Rendered pages/home.html.haml within layouts/application (9.8ms)
1388
+ Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
1389
+
1390
+
1391
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:20:26 +0100
1392
+ Processing by ApplicationController#home as HTML
1393
+ Parameters: {"activated"=>"true"}
1394
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1395
+ Rendered pages/home.html.haml within layouts/application (10.9ms)
1396
+ Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
1397
+
1398
+
1399
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:21:07 +0100
1400
+ Processing by ApplicationController#home as HTML
1401
+ Parameters: {"activated"=>"true"}
1402
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1403
+ Rendered pages/home.html.haml within layouts/application (10.6ms)
1404
+ Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms)
1405
+
1406
+
1407
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:21:10 +0100
1408
+ Processing by ApplicationController#home as HTML
1409
+ Parameters: {"activated"=>"true"}
1410
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1411
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
1412
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1413
+
1414
+
1415
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:21:10 +0100
1416
+ Processing by ApplicationController#home as HTML
1417
+ Parameters: {"activated"=>"true"}
1418
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.0ms)
1419
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
1420
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1421
+
1422
+
1423
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:21:10 +0100
1424
+ Processing by ApplicationController#home as HTML
1425
+ Parameters: {"activated"=>"true"}
1426
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1427
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1428
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1429
+
1430
+
1431
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:21:35 +0100
1432
+ Processing by ApplicationController#home as HTML
1433
+ Parameters: {"activated"=>"true"}
1434
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1435
+ Rendered pages/home.html.haml within layouts/application (9.3ms)
1436
+ Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
1437
+
1438
+
1439
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:16 +0100
1440
+ Processing by ApplicationController#home as HTML
1441
+ Parameters: {"activated"=>"true"}
1442
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1443
+ Rendered pages/home.html.haml within layouts/application (9.4ms)
1444
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
1445
+
1446
+
1447
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:22:21 +0100
1448
+ Processing by ApplicationController#home as HTML
1449
+ Parameters: {"activated"=>"true"}
1450
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1451
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1452
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1453
+
1454
+
1455
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:23:25 +0100
1456
+ Processing by ApplicationController#home as HTML
1457
+ Parameters: {"activated"=>"true"}
1458
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1459
+ Rendered pages/home.html.haml within layouts/application (8.7ms)
1460
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
1461
+
1462
+
1463
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:23:27 +0100
1464
+ Processing by ApplicationController#home as HTML
1465
+ Parameters: {"activated"=>"true"}
1466
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1467
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
1468
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1469
+
1470
+
1471
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:23:28 +0100
1472
+ Processing by ApplicationController#home as HTML
1473
+ Parameters: {"activated"=>"true"}
1474
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (1.5ms)
1475
+ Rendered pages/home.html.haml within layouts/application (3.4ms)
1476
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
1477
+
1478
+
1479
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:24:53 +0100
1480
+ Processing by ApplicationController#home as HTML
1481
+ Parameters: {"activated"=>"true"}
1482
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1483
+ Rendered pages/home.html.haml within layouts/application (8.9ms)
1484
+ Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
1485
+
1486
+
1487
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:24:54 +0100
1488
+ Processing by ApplicationController#home as HTML
1489
+ Parameters: {"activated"=>"true"}
1490
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1491
+ Rendered pages/home.html.haml within layouts/application (3.3ms)
1492
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1493
+
1494
+
1495
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:26:26 +0100
1496
+ Processing by ApplicationController#home as HTML
1497
+ Parameters: {"activated"=>"true"}
1498
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1499
+ Rendered pages/home.html.haml within layouts/application (8.6ms)
1500
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
1501
+
1502
+
1503
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:26:28 +0100
1504
+ Processing by ApplicationController#home as HTML
1505
+ Parameters: {"activated"=>"true"}
1506
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1507
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
1508
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1509
+
1510
+
1511
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:28:21 +0100
1512
+ Processing by ApplicationController#home as HTML
1513
+ Parameters: {"activated"=>"true"}
1514
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.9ms)
1515
+ Rendered pages/home.html.haml within layouts/application (9.7ms)
1516
+ Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
1517
+
1518
+
1519
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:28:23 +0100
1520
+ Processing by ApplicationController#home as HTML
1521
+ Parameters: {"activated"=>"true"}
1522
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1523
+ Rendered pages/home.html.haml within layouts/application (2.6ms)
1524
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1525
+
1526
+
1527
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:28:23 +0100
1528
+ Processing by ApplicationController#home as HTML
1529
+ Parameters: {"activated"=>"true"}
1530
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1531
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
1532
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1533
+
1534
+
1535
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:28:36 +0100
1536
+ Processing by ApplicationController#home as HTML
1537
+ Parameters: {"activated"=>"true"}
1538
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1539
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1540
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1541
+
1542
+
1543
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:28:44 +0100
1544
+ Processing by ApplicationController#home as HTML
1545
+ Parameters: {"activated"=>"true"}
1546
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1547
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
1548
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1549
+
1550
+
1551
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:29:04 +0100
1552
+ Processing by ApplicationController#home as HTML
1553
+ Parameters: {"activated"=>"true"}
1554
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1555
+ Rendered pages/home.html.haml within layouts/application (8.7ms)
1556
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
1557
+
1558
+
1559
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:30:01 +0100
1560
+ Processing by ApplicationController#home as HTML
1561
+ Parameters: {"activated"=>"true"}
1562
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1563
+ Rendered pages/home.html.haml within layouts/application (8.8ms)
1564
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
1565
+
1566
+
1567
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:30:02 +0100
1568
+ Processing by ApplicationController#home as HTML
1569
+ Parameters: {"activated"=>"true"}
1570
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1571
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
1572
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1573
+
1574
+
1575
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:30:49 +0100
1576
+ Processing by ApplicationController#home as HTML
1577
+ Rendered shared/_partial1.html.haml (1.2ms)
1578
+ Rendered pages/home.html.haml within layouts/application (12.9ms)
1579
+ Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
1580
+
1581
+
1582
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:30:55 +0100
1583
+ Processing by ApplicationController#home as HTML
1584
+ Parameters: {"activated"=>"true"}
1585
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1586
+ Rendered pages/home.html.haml within layouts/application (3.2ms)
1587
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1588
+
1589
+
1590
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:30:55 +0100
1591
+ Processing by ApplicationController#home as HTML
1592
+ Parameters: {"activated"=>"true"}
1593
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (9.1ms)
1594
+ Rendered pages/home.html.haml within layouts/application (11.6ms)
1595
+ Completed 200 OK in 15ms (Views: 15.1ms | ActiveRecord: 0.0ms)
1596
+
1597
+
1598
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:30:58 +0100
1599
+ Processing by ApplicationController#home as HTML
1600
+ Parameters: {"activated"=>"true"}
1601
+ Rendered app/contexts/test/views/shared/_partial1.html.haml (0.8ms)
1602
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
1603
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1604
+
1605
+
1606
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:37:26 +0100
1607
+ Processing by ApplicationController#home as HTML
1608
+ Rendered shared/_partial1.html.haml (0.8ms)
1609
+ Rendered pages/home.html.haml within layouts/application (10.4ms)
1610
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
1611
+
1612
+
1613
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:37:28 +0100
1614
+ Processing by ApplicationController#home as HTML
1615
+ Parameters: {"activated"=>"true"}
1616
+ Rendered shared/_partial1.html.haml (0.1ms)
1617
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1618
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1619
+
1620
+
1621
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:37:31 +0100
1622
+ Processing by ApplicationController#home as HTML
1623
+ Parameters: {"activated"=>"true"}
1624
+ Rendered shared/_partial1.html.haml (0.1ms)
1625
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
1626
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1627
+
1628
+
1629
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:37:32 +0100
1630
+ Processing by ApplicationController#home as HTML
1631
+ Parameters: {"activated"=>"true"}
1632
+ Rendered shared/_partial1.html.haml (0.1ms)
1633
+ Rendered pages/home.html.haml within layouts/application (3.5ms)
1634
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
1635
+
1636
+
1637
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:38:18 +0100
1638
+ Processing by ApplicationController#home as HTML
1639
+ Parameters: {"activated"=>"true"}
1640
+ Rendered shared/_partial1.html.haml (0.8ms)
1641
+ Rendered pages/home.html.haml within layouts/application (9.9ms)
1642
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
1643
+
1644
+
1645
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:38:31 +0100
1646
+ Processing by ApplicationController#home as HTML
1647
+ Parameters: {"activated"=>"true"}
1648
+ Rendered shared/_partial1.html.haml (0.8ms)
1649
+ Rendered pages/home.html.haml within layouts/application (9.4ms)
1650
+ Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
1651
+
1652
+
1653
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:39:31 +0100
1654
+ Processing by ApplicationController#home as HTML
1655
+ Parameters: {"activated"=>"true"}
1656
+ Rendered shared/_partial1.html.haml (0.8ms)
1657
+ Rendered pages/home.html.haml within layouts/application (10.1ms)
1658
+ Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
1659
+
1660
+
1661
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:39:53 +0100
1662
+ Processing by ApplicationController#home as HTML
1663
+ Parameters: {"activated"=>"true"}
1664
+ Rendered shared/_partial1.html.haml (0.8ms)
1665
+ Rendered pages/home.html.haml within layouts/application (9.8ms)
1666
+ Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
1667
+
1668
+
1669
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:39:55 +0100
1670
+ Processing by ApplicationController#home as HTML
1671
+ Parameters: {"activated"=>"true"}
1672
+ Rendered shared/_partial1.html.haml (0.1ms)
1673
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
1674
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1675
+
1676
+
1677
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:39:56 +0100
1678
+ Processing by ApplicationController#home as HTML
1679
+ Parameters: {"activated"=>"true"}
1680
+ Rendered shared/_partial1.html.haml (0.1ms)
1681
+ Rendered pages/home.html.haml within layouts/application (2.3ms)
1682
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1683
+
1684
+
1685
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:39:56 +0100
1686
+ Processing by ApplicationController#home as HTML
1687
+ Parameters: {"activated"=>"true"}
1688
+ Rendered shared/_partial1.html.haml (0.1ms)
1689
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
1690
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1691
+
1692
+
1693
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:11 +0100
1694
+ Processing by ApplicationController#home as HTML
1695
+ Parameters: {"activated"=>"true"}
1696
+ Rendered shared/_partial1.html.haml (0.1ms)
1697
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
1698
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1699
+
1700
+
1701
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:12 +0100
1702
+ Processing by ApplicationController#home as HTML
1703
+ Parameters: {"activated"=>"true"}
1704
+ Rendered shared/_partial1.html.haml (0.1ms)
1705
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1706
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1707
+
1708
+
1709
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:12 +0100
1710
+ Processing by ApplicationController#home as HTML
1711
+ Parameters: {"activated"=>"true"}
1712
+ Rendered shared/_partial1.html.haml (0.1ms)
1713
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
1714
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1715
+
1716
+
1717
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:12 +0100
1718
+ Processing by ApplicationController#home as HTML
1719
+ Parameters: {"activated"=>"true"}
1720
+ Rendered shared/_partial1.html.haml (0.1ms)
1721
+ Rendered pages/home.html.haml within layouts/application (2.3ms)
1722
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1723
+
1724
+
1725
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:38 +0100
1726
+ Processing by ApplicationController#home as HTML
1727
+ Parameters: {"activated"=>"true"}
1728
+ Rendered shared/_partial1.html.haml (0.8ms)
1729
+ Rendered pages/home.html.haml within layouts/application (9.2ms)
1730
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1731
+
1732
+
1733
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:39 +0100
1734
+ Processing by ApplicationController#home as HTML
1735
+ Parameters: {"activated"=>"true"}
1736
+ Rendered shared/_partial1.html.haml (0.1ms)
1737
+ Rendered pages/home.html.haml within layouts/application (2.3ms)
1738
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1739
+
1740
+
1741
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:40:43 +0100
1742
+ Processing by ApplicationController#home as HTML
1743
+ Parameters: {"activated"=>"true"}
1744
+ Rendered shared/_partial1.html.haml (0.2ms)
1745
+ Rendered pages/home.html.haml within layouts/application (3.6ms)
1746
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1747
+
1748
+
1749
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:40:49 +0100
1750
+ Processing by ApplicationController#home as HTML
1751
+ Rendered shared/_partial1.html.haml (0.1ms)
1752
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1753
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1754
+
1755
+
1756
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:41:18 +0100
1757
+ Processing by ApplicationController#home as HTML
1758
+ Rendered shared/_partial1.html.haml (0.0ms)
1759
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1760
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1761
+
1762
+
1763
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:41:22 +0100
1764
+ Processing by ApplicationController#home as HTML
1765
+ Parameters: {"activated"=>"true"}
1766
+ Rendered shared/_partial1.html.haml (0.1ms)
1767
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
1768
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1769
+
1770
+
1771
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:08 +0100
1772
+ Processing by ApplicationController#home as HTML
1773
+ Parameters: {"activated"=>"true"}
1774
+ Rendered shared/_partial1.html.haml (0.9ms)
1775
+ Rendered pages/home.html.haml within layouts/application (9.5ms)
1776
+ Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
1777
+
1778
+
1779
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:42:10 +0100
1780
+ Processing by ApplicationController#home as HTML
1781
+ Rendered shared/_partial1.html.haml (0.1ms)
1782
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
1783
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1784
+
1785
+
1786
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:11 +0100
1787
+ Processing by ApplicationController#home as HTML
1788
+ Parameters: {"activated"=>"true"}
1789
+ Rendered shared/_partial1.html.haml (0.1ms)
1790
+ Rendered pages/home.html.haml within layouts/application (3.1ms)
1791
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
1792
+
1793
+
1794
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:42:11 +0100
1795
+ Processing by ApplicationController#home as HTML
1796
+ Rendered shared/_partial1.html.haml (0.1ms)
1797
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1798
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1799
+
1800
+
1801
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:12 +0100
1802
+ Processing by ApplicationController#home as HTML
1803
+ Parameters: {"activated"=>"true"}
1804
+ Rendered shared/_partial1.html.haml (0.1ms)
1805
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
1806
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1807
+
1808
+
1809
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:42:13 +0100
1810
+ Processing by ApplicationController#home as HTML
1811
+ Rendered shared/_partial1.html.haml (0.1ms)
1812
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1813
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1814
+
1815
+
1816
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:13 +0100
1817
+ Processing by ApplicationController#home as HTML
1818
+ Parameters: {"activated"=>"true"}
1819
+ Rendered shared/_partial1.html.haml (0.1ms)
1820
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
1821
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1822
+
1823
+
1824
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:42:14 +0100
1825
+ Processing by ApplicationController#home as HTML
1826
+ Rendered shared/_partial1.html.haml (0.1ms)
1827
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
1828
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
1829
+
1830
+
1831
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:44 +0100
1832
+ Processing by ApplicationController#home as HTML
1833
+ Parameters: {"activated"=>"true"}
1834
+ Rendered pages/home.html.haml within layouts/application (7.0ms)
1835
+ Completed 500 Internal Server Error in 10ms
1836
+
1837
+ ActionView::Template::Error (Missing partial test_context/shared/partial1 with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :haml]}. Searched in:
1838
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/contexts"
1839
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/spec/dummy/app/views"
1840
+ * "/Users/loo/Documents/Ruby/phenomenal-rails/app/views"
1841
+ ):
1842
+ 17: %td=context.active?
1843
+ 18:
1844
+ 19: %br
1845
+ 20: =render "test_context/shared/partial1"
1846
+ 21: %br
1847
+ 22:
1848
+ 23: = ActionController::Base.view_paths.paths
1849
+ app/views/pages/home.html.haml:20:in `_app_views_pages_home_html_haml___1965256586746170700_70163544690820'
1850
+ app/controllers/application_controller.rb:6:in `home'
1851
+
1852
+
1853
+ 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.9ms)
1854
+ 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)
1855
+ 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 (18.1ms)
1856
+
1857
+
1858
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:55 +0100
1859
+ Processing by ApplicationController#home as HTML
1860
+ Parameters: {"activated"=>"true"}
1861
+ Rendered shared/_partial1.html.haml (0.1ms)
1862
+ Rendered pages/home.html.haml within layouts/application (6.5ms)
1863
+ Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
1864
+
1865
+
1866
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:42:57 +0100
1867
+ Processing by ApplicationController#home as HTML
1868
+ Parameters: {"activated"=>"true"}
1869
+ Rendered shared/_partial1.html.haml (0.1ms)
1870
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
1871
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
1872
+
1873
+
1874
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:44:40 +0100
1875
+ Processing by ApplicationController#home as HTML
1876
+ Parameters: {"activated"=>"true"}
1877
+ Rendered shared/_partial1.html.haml (0.1ms)
1878
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
1879
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1880
+
1881
+
1882
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:44:59 +0100
1883
+ Processing by ApplicationController#home as HTML
1884
+ Parameters: {"activated"=>"true"}
1885
+ Rendered shared/_partial1.html.haml (1.1ms)
1886
+ Rendered pages/home.html.haml within layouts/application (15.1ms)
1887
+ Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.0ms)
1888
+
1889
+
1890
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:45:00 +0100
1891
+ Processing by ApplicationController#home as HTML
1892
+ Parameters: {"activated"=>"true"}
1893
+ Rendered shared/_partial1.html.haml (0.1ms)
1894
+ Rendered pages/home.html.haml within layouts/application (3.2ms)
1895
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
1896
+
1897
+
1898
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:45:55 +0100
1899
+ Processing by ApplicationController#home as HTML
1900
+ Parameters: {"activated"=>"true"}
1901
+ Rendered shared/_partial1.html.haml (0.9ms)
1902
+ Rendered pages/home.html.haml within layouts/application (14.3ms)
1903
+ Completed 200 OK in 30ms (Views: 29.5ms | ActiveRecord: 0.0ms)
1904
+
1905
+
1906
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:46:08 +0100
1907
+ Processing by ApplicationController#home as HTML
1908
+ Parameters: {"activated"=>"true"}
1909
+ Rendered shared/_partial1.html.haml (1.0ms)
1910
+ Rendered pages/home.html.haml within layouts/application (10.3ms)
1911
+ Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
1912
+
1913
+
1914
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:46:33 +0100
1915
+ Processing by ApplicationController#home as HTML
1916
+ Parameters: {"activated"=>"true"}
1917
+ Rendered shared/_partial1.html.haml (1.0ms)
1918
+ Rendered pages/home.html.haml within layouts/application (10.4ms)
1919
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
1920
+
1921
+
1922
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:50:22 +0100
1923
+ Processing by ApplicationController#home as HTML
1924
+ Parameters: {"activated"=>"true"}
1925
+ Rendered shared/_partial1.html.haml (4.0ms)
1926
+ Rendered pages/home.html.haml within layouts/application (19.6ms)
1927
+ Completed 200 OK in 32ms (Views: 31.6ms | ActiveRecord: 0.0ms)
1928
+
1929
+
1930
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:50:58 +0100
1931
+ Processing by ApplicationController#home as HTML
1932
+ Parameters: {"activated"=>"true"}
1933
+ Rendered shared/_partial1.html.haml (1.3ms)
1934
+ Rendered pages/home.html.haml within layouts/application (13.7ms)
1935
+ Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
1936
+
1937
+
1938
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:52:02 +0100
1939
+ Processing by ApplicationController#home as HTML
1940
+ Parameters: {"activated"=>"true"}
1941
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (1.7ms)
1942
+ Rendered pages/home.html.haml within layouts/application (12.4ms)
1943
+ Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
1944
+
1945
+
1946
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:52:04 +0100
1947
+ Processing by ApplicationController#home as HTML
1948
+ Rendered shared/_partial1.html.haml (0.8ms)
1949
+ Rendered pages/home.html.haml within layouts/application (4.0ms)
1950
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
1951
+
1952
+
1953
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:52:05 +0100
1954
+ Processing by ApplicationController#home as HTML
1955
+ Parameters: {"activated"=>"true"}
1956
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.9ms)
1957
+ Rendered pages/home.html.haml within layouts/application (4.2ms)
1958
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1959
+
1960
+
1961
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:52:06 +0100
1962
+ Processing by ApplicationController#home as HTML
1963
+ Rendered shared/_partial1.html.haml (0.1ms)
1964
+ Rendered pages/home.html.haml within layouts/application (3.5ms)
1965
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
1966
+
1967
+
1968
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:52:07 +0100
1969
+ Processing by ApplicationController#home as HTML
1970
+ Parameters: {"activated"=>"true"}
1971
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
1972
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
1973
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1974
+
1975
+
1976
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:52:09 +0100
1977
+ Processing by ApplicationController#home as HTML
1978
+ Rendered shared/_partial1.html.haml (0.1ms)
1979
+ Rendered pages/home.html.haml within layouts/application (2.9ms)
1980
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1981
+
1982
+
1983
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:52:10 +0100
1984
+ Processing by ApplicationController#home as HTML
1985
+ Parameters: {"activated"=>"true"}
1986
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
1987
+ Rendered pages/home.html.haml within layouts/application (3.7ms)
1988
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
1989
+
1990
+
1991
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:52:11 +0100
1992
+ Processing by ApplicationController#home as HTML
1993
+ Rendered shared/_partial1.html.haml (0.1ms)
1994
+ Rendered pages/home.html.haml within layouts/application (4.1ms)
1995
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1996
+
1997
+
1998
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:55:30 +0100
1999
+ Processing by ApplicationController#home as HTML
2000
+ Rendered shared/_partial1.html.haml (0.8ms)
2001
+ Rendered pages/home.html.haml within layouts/application (8.9ms)
2002
+ Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms)
2003
+
2004
+
2005
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:55:32 +0100
2006
+ Processing by ApplicationController#home as HTML
2007
+ Parameters: {"activated"=>"true"}
2008
+ Rendered shared/_partial1.html.haml (0.1ms)
2009
+ Rendered pages/home.html.haml within layouts/application (1.9ms)
2010
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2011
+
2012
+
2013
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:55:34 +0100
2014
+ Processing by ApplicationController#home as HTML
2015
+ Parameters: {"activated"=>"true"}
2016
+ Rendered shared/_partial1.html.haml (0.1ms)
2017
+ Rendered pages/home.html.haml within layouts/application (1.9ms)
2018
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
2019
+
2020
+
2021
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:55:34 +0100
2022
+ Processing by ApplicationController#home as HTML
2023
+ Rendered shared/_partial1.html.haml (0.1ms)
2024
+ Rendered pages/home.html.haml within layouts/application (1.7ms)
2025
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
2026
+
2027
+
2028
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:56:05 +0100
2029
+ Processing by ApplicationController#home as HTML
2030
+ Rendered shared/_partial1.html.haml (0.8ms)
2031
+ Rendered pages/home.html.haml within layouts/application (9.4ms)
2032
+ Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
2033
+
2034
+
2035
+ Started GET "/" for 127.0.0.1 at 2012-03-07 22:57:33 +0100
2036
+ Processing by ApplicationController#home as HTML
2037
+ Rendered shared/_partial1.html.haml (0.8ms)
2038
+ Rendered pages/home.html.haml within layouts/application (8.8ms)
2039
+ Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms)
2040
+
2041
+
2042
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:57:39 +0100
2043
+ Processing by ApplicationController#home as HTML
2044
+ Parameters: {"activated"=>"true"}
2045
+ Rendered shared/_partial1.html.haml (0.1ms)
2046
+ Rendered pages/home.html.haml within layouts/application (2.5ms)
2047
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2048
+
2049
+
2050
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:57:39 +0100
2051
+ Processing by ApplicationController#home as HTML
2052
+ Parameters: {"activated"=>"true"}
2053
+ Rendered shared/_partial1.html.haml (0.1ms)
2054
+ Rendered pages/home.html.haml within layouts/application (2.3ms)
2055
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2056
+
2057
+
2058
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:58:24 +0100
2059
+ Processing by ApplicationController#home as HTML
2060
+ Parameters: {"activated"=>"true"}
2061
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.9ms)
2062
+ Rendered pages/home.html.haml within layouts/application (10.6ms)
2063
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
2064
+
2065
+
2066
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 22:58:53 +0100
2067
+ Processing by ApplicationController#home as HTML
2068
+ Parameters: {"activated"=>"true"}
2069
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2070
+ Rendered pages/home.html.haml within layouts/application (9.6ms)
2071
+ Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
2072
+
2073
+
2074
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:16 +0100
2075
+ Processing by ApplicationController#home as HTML
2076
+ Parameters: {"activated"=>"true"}
2077
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2078
+ Rendered pages/home.html.haml within layouts/application (9.2ms)
2079
+ Completed 200 OK in 22ms (Views: 22.0ms | ActiveRecord: 0.0ms)
2080
+
2081
+
2082
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:18 +0100
2083
+ Processing by ApplicationController#home as HTML
2084
+ Parameters: {"activated"=>"true"}
2085
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.9ms)
2086
+ Rendered pages/home.html.haml within layouts/application (3.2ms)
2087
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
2088
+
2089
+
2090
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:19 +0100
2091
+ Processing by ApplicationController#home as HTML
2092
+ Rendered shared/_partial1.html.haml (0.9ms)
2093
+ Rendered pages/home.html.haml within layouts/application (3.2ms)
2094
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
2095
+
2096
+
2097
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:21 +0100
2098
+ Processing by ApplicationController#home as HTML
2099
+ Parameters: {"activated"=>"true"}
2100
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2101
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
2102
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
2103
+
2104
+
2105
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:22 +0100
2106
+ Processing by ApplicationController#home as HTML
2107
+ Rendered shared/_partial1.html.haml (0.1ms)
2108
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
2109
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2110
+
2111
+
2112
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:23 +0100
2113
+ Processing by ApplicationController#home as HTML
2114
+ Parameters: {"activated"=>"true"}
2115
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2116
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
2117
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2118
+
2119
+
2120
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:25 +0100
2121
+ Processing by ApplicationController#home as HTML
2122
+ Rendered shared/_partial1.html.haml (0.1ms)
2123
+ Rendered pages/home.html.haml within layouts/application (2.7ms)
2124
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
2125
+
2126
+
2127
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:26 +0100
2128
+ Processing by ApplicationController#home as HTML
2129
+ Parameters: {"activated"=>"true"}
2130
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2131
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
2132
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
2133
+
2134
+
2135
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:27 +0100
2136
+ Processing by ApplicationController#home as HTML
2137
+ Rendered shared/_partial1.html.haml (0.1ms)
2138
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
2139
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
2140
+
2141
+
2142
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:28 +0100
2143
+ Processing by ApplicationController#home as HTML
2144
+ Parameters: {"activated"=>"true"}
2145
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.9ms)
2146
+ Rendered pages/home.html.haml within layouts/application (3.0ms)
2147
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2148
+
2149
+
2150
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:28 +0100
2151
+ Processing by ApplicationController#home as HTML
2152
+ Rendered shared/_partial1.html.haml (0.1ms)
2153
+ Rendered pages/home.html.haml within layouts/application (2.2ms)
2154
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
2155
+
2156
+
2157
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:29 +0100
2158
+ Processing by ApplicationController#home as HTML
2159
+ Parameters: {"activated"=>"true"}
2160
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (1.0ms)
2161
+ Rendered pages/home.html.haml within layouts/application (3.1ms)
2162
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2163
+
2164
+
2165
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:29 +0100
2166
+ Processing by ApplicationController#home as HTML
2167
+ Rendered shared/_partial1.html.haml (0.1ms)
2168
+ Rendered pages/home.html.haml within layouts/application (2.4ms)
2169
+ Completed 200 OK in 34ms (Views: 34.1ms | ActiveRecord: 0.0ms)
2170
+
2171
+
2172
+ Started GET "/?activated=true" for 127.0.0.1 at 2012-03-07 23:01:30 +0100
2173
+ Processing by ApplicationController#home as HTML
2174
+ Parameters: {"activated"=>"true"}
2175
+ Rendered app/contexts/persistent_feature/test_context/views/shared/_partial1.html.haml (0.8ms)
2176
+ Rendered pages/home.html.haml within layouts/application (2.8ms)
2177
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2178
+
2179
+
2180
+ Started GET "/" for 127.0.0.1 at 2012-03-07 23:01:31 +0100
2181
+ Processing by ApplicationController#home as HTML
2182
+ Rendered shared/_partial1.html.haml (0.1ms)
2183
+ Rendered pages/home.html.haml within layouts/application (2.1ms)
2184
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)