app-yml-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. data/CHANGELOG.md +8 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +64 -0
  4. data/Rakefile +11 -0
  5. data/lib/app_yml.rb +6 -0
  6. data/lib/app_yml/application_controller_ext.rb +20 -0
  7. data/lib/app_yml/core_ext.rb +45 -0
  8. data/lib/app_yml/version.rb +3 -0
  9. data/lib/generators/app_yml/install/install_generator.rb +25 -0
  10. data/lib/generators/app_yml/install/templates/app.rb +39 -0
  11. data/lib/generators/app_yml/install/templates/app.yml +42 -0
  12. data/test/app_yml_test.rb +5 -0
  13. data/test/core_ext_test.rb +47 -0
  14. data/test/dummy/README.rdoc +261 -0
  15. data/test/dummy/Rakefile +7 -0
  16. data/test/dummy/app/assets/javascripts/application.js +13 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  18. data/test/dummy/app/controllers/application_controller.rb +5 -0
  19. data/test/dummy/app/controllers/landing_controller.rb +6 -0
  20. data/test/dummy/app/views/landing/index.html.erb +15 -0
  21. data/test/dummy/app/views/landing/missing_initializer.html.erb +6 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +12 -0
  23. data/test/dummy/config.ru +4 -0
  24. data/test/dummy/config/app.yml +42 -0
  25. data/test/dummy/config/application.rb +62 -0
  26. data/test/dummy/config/boot.rb +10 -0
  27. data/test/dummy/config/environment.rb +5 -0
  28. data/test/dummy/config/environments/development.rb +30 -0
  29. data/test/dummy/config/environments/production.rb +63 -0
  30. data/test/dummy/config/environments/test.rb +34 -0
  31. data/test/dummy/config/initializers/app.rb +39 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/inflections.rb +15 -0
  34. data/test/dummy/config/initializers/mime_types.rb +5 -0
  35. data/test/dummy/config/initializers/secret_token.rb +7 -0
  36. data/test/dummy/config/initializers/session_store.rb +8 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +10 -0
  38. data/test/dummy/config/routes.rb +3 -0
  39. data/test/dummy/log/development.log +1740 -0
  40. data/test/dummy/log/test.log +0 -0
  41. data/test/dummy/public/404.html +26 -0
  42. data/test/dummy/public/422.html +26 -0
  43. data/test/dummy/public/500.html +25 -0
  44. data/test/dummy/public/favicon.ico +0 -0
  45. data/test/dummy/script/rails +6 -0
  46. data/test/dummy/tmp/pids/server.pid +1 -0
  47. data/test/test_helper.rb +15 -0
  48. metadata +141 -0
@@ -0,0 +1,3 @@
1
+ Dummy::Application.routes.draw do
2
+ root :to => 'landing#index'
3
+ end
@@ -0,0 +1,1740 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:37:44 -0600
4
+ Processing by LandingController#index as HTML
5
+ Rendered landing/index.html.erb within layouts/application (1.9ms)
6
+ Completed 200 OK in 12ms (Views: 12.0ms)
7
+
8
+
9
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-04-29 11:37:45 -0600
10
+
11
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
12
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
14
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
15
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
16
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
17
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
18
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
19
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
20
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
21
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
22
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
23
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
24
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
25
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
26
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
27
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
28
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
29
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
30
+
31
+
32
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
33
+
34
+
35
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-04-29 11:37:45 -0600
36
+
37
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
38
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
39
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
40
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
41
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
42
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
43
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
44
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
45
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
46
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
47
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
48
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
49
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
50
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
51
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
52
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
53
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
54
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
55
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
56
+
57
+
58
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
59
+
60
+
61
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:38:02 -0600
62
+ Processing by LandingController#index as HTML
63
+ Rendered landing/index.html.erb within layouts/application (0.0ms)
64
+ Completed 200 OK in 3ms (Views: 2.6ms)
65
+
66
+
67
+ Started GET "/stylesheets/application.css" for 127.0.0.1 at 2012-04-29 11:38:02 -0600
68
+
69
+ ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
70
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
71
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
72
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
73
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
74
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
75
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
76
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
77
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
79
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
80
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
81
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
82
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
83
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
84
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
85
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
86
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
87
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
88
+
89
+
90
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
91
+
92
+
93
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2012-04-29 11:38:02 -0600
94
+
95
+ ActionController::RoutingError (No route matches [GET] "/javascripts/application.js"):
96
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
97
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
98
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
99
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
100
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
101
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
102
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
103
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
104
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
105
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
106
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
107
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
108
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
109
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
110
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
111
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
112
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
113
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
114
+
115
+
116
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
117
+
118
+
119
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:38:44 -0600
120
+ Processing by LandingController#index as HTML
121
+ Rendered landing/index.html.erb within layouts/application (0.0ms)
122
+ Completed 200 OK in 3ms (Views: 2.6ms)
123
+
124
+
125
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:39:45 -0600
126
+ Processing by LandingController#index as HTML
127
+ Completed 500 Internal Server Error in 1ms
128
+
129
+ NameError (uninitialized constant LandingController::App):
130
+ app/controllers/landing_controller.rb:4:in `index'
131
+
132
+
133
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
134
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
135
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
136
+
137
+
138
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:40:17 -0600
139
+ Processing by LandingController#index as HTML
140
+ Completed 500 Internal Server Error in 1ms
141
+
142
+ NameError (uninitialized constant LandingController::App):
143
+ app/controllers/landing_controller.rb:4:in `index'
144
+
145
+
146
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
147
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
148
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
149
+
150
+
151
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:41:40 -0600
152
+ Processing by LandingController#index as HTML
153
+ Rendered landing/index.html.erb within layouts/application (6.3ms)
154
+ Completed 500 Internal Server Error in 8ms
155
+
156
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::PP):
157
+ 1: <h1>Welcome to the app.yml testing page!</h1>
158
+ 2: <p>
159
+ 3: <strong>The App.emails hash:</strong><br />
160
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
161
+ 5: </p>
162
+ 6:
163
+ 7: <p>
164
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
165
+
166
+
167
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
168
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
169
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
170
+
171
+
172
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:42:14 -0600
173
+ Processing by LandingController#index as HTML
174
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
175
+ Completed 500 Internal Server Error in 2ms
176
+
177
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
178
+ 1: <h1>Welcome to the app.yml testing page!</h1>
179
+ 2: <p>
180
+ 3: <strong>The App.emails hash:</strong><br />
181
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
182
+ 5: </p>
183
+ 6:
184
+ 7: <p>
185
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
186
+
187
+
188
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
189
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
190
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
191
+
192
+
193
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:42:26 -0600
194
+ Processing by LandingController#index as HTML
195
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
196
+ Completed 500 Internal Server Error in 2ms
197
+
198
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
199
+ 1: <h1>Welcome to the app.yml testing page!</h1>
200
+ 2: <p>
201
+ 3: <strong>The App.emails hash:</strong><br />
202
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
203
+ 5: </p>
204
+ 6:
205
+ 7: <p>
206
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
207
+
208
+
209
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
210
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
211
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.5ms)
212
+
213
+
214
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:44 -0600
215
+ Processing by LandingController#index as HTML
216
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
217
+ Completed 500 Internal Server Error in 3ms
218
+
219
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
220
+ 1: <h1>Welcome to the app.yml testing page!</h1>
221
+ 2: <p>
222
+ 3: <strong>The App.emails hash:</strong><br />
223
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
224
+ 5: </p>
225
+ 6:
226
+ 7: <p>
227
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
228
+
229
+
230
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.1ms)
231
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
232
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
233
+
234
+
235
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:46 -0600
236
+ Processing by LandingController#index as HTML
237
+ Rendered landing/index.html.erb within layouts/application (0.7ms)
238
+ Completed 500 Internal Server Error in 2ms
239
+
240
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
241
+ 1: <h1>Welcome to the app.yml testing page!</h1>
242
+ 2: <p>
243
+ 3: <strong>The App.emails hash:</strong><br />
244
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
245
+ 5: </p>
246
+ 6:
247
+ 7: <p>
248
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
249
+
250
+
251
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
252
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
253
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.0ms)
254
+
255
+
256
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:47 -0600
257
+ Processing by LandingController#index as HTML
258
+ Rendered landing/index.html.erb within layouts/application (0.7ms)
259
+ Completed 500 Internal Server Error in 3ms
260
+
261
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
262
+ 1: <h1>Welcome to the app.yml testing page!</h1>
263
+ 2: <p>
264
+ 3: <strong>The App.emails hash:</strong><br />
265
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
266
+ 5: </p>
267
+ 6:
268
+ 7: <p>
269
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
270
+
271
+
272
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
273
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
274
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms)
275
+
276
+
277
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:47 -0600
278
+ Processing by LandingController#index as HTML
279
+ Rendered landing/index.html.erb within layouts/application (0.7ms)
280
+ Completed 500 Internal Server Error in 2ms
281
+
282
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
283
+ 1: <h1>Welcome to the app.yml testing page!</h1>
284
+ 2: <p>
285
+ 3: <strong>The App.emails hash:</strong><br />
286
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
287
+ 5: </p>
288
+ 6:
289
+ 7: <p>
290
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
291
+
292
+
293
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.8ms)
294
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
295
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
296
+
297
+
298
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:47 -0600
299
+ Processing by LandingController#index as HTML
300
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
301
+ Completed 500 Internal Server Error in 2ms
302
+
303
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
304
+ 1: <h1>Welcome to the app.yml testing page!</h1>
305
+ 2: <p>
306
+ 3: <strong>The App.emails hash:</strong><br />
307
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
308
+ 5: </p>
309
+ 6:
310
+ 7: <p>
311
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
312
+
313
+
314
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.7ms)
315
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
316
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (15.3ms)
317
+
318
+
319
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:47 -0600
320
+ Processing by LandingController#index as HTML
321
+ Rendered landing/index.html.erb within layouts/application (0.7ms)
322
+ Completed 500 Internal Server Error in 2ms
323
+
324
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
325
+ 1: <h1>Welcome to the app.yml testing page!</h1>
326
+ 2: <p>
327
+ 3: <strong>The App.emails hash:</strong><br />
328
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
329
+ 5: </p>
330
+ 6:
331
+ 7: <p>
332
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
333
+
334
+
335
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.4ms)
336
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.1ms)
337
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.7ms)
338
+
339
+
340
+ Started GET "/" for 127.0.0.1 at 2012-04-29 11:43:48 -0600
341
+ Processing by LandingController#index as HTML
342
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
343
+ Completed 500 Internal Server Error in 3ms
344
+
345
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
346
+ 1: <h1>Welcome to the app.yml testing page!</h1>
347
+ 2: <p>
348
+ 3: <strong>The App.emails hash:</strong><br />
349
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
350
+ 5: </p>
351
+ 6:
352
+ 7: <p>
353
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb__4311759420699908773_70340201739160'
354
+
355
+
356
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
357
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
358
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
359
+
360
+
361
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:28:29 -0600
362
+ Processing by LandingController#index as HTML
363
+ Rendered landing/index.html.erb within layouts/application (2.3ms)
364
+ Completed 200 OK in 26ms (Views: 25.4ms)
365
+
366
+
367
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:29:03 -0600
368
+ Processing by LandingController#index as HTML
369
+ Completed 500 Internal Server Error in 0ms
370
+
371
+ NoMethodError (undefined method `pry' for #<Binding:0x007fa3f585e440>):
372
+ app/controllers/landing_controller.rb:5:in `index'
373
+
374
+
375
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
376
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
377
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
378
+
379
+
380
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:30:07 -0600
381
+ Processing by LandingController#index as HTML
382
+ Completed 500 Internal Server Error in 0ms
383
+
384
+ NoMethodError (undefined method `pry' for #<Binding:0x007fa3f5b5e5a0>):
385
+ app/controllers/landing_controller.rb:5:in `index'
386
+
387
+
388
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.9ms)
389
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
390
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
391
+
392
+
393
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:30:15 -0600
394
+ Processing by LandingController#index as HTML
395
+ Completed 500 Internal Server Error in 0ms
396
+
397
+ NoMethodError (undefined method `pry' for #<Binding:0x007fdb85d0f210>):
398
+ app/controllers/landing_controller.rb:5:in `index'
399
+
400
+
401
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
402
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
403
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
404
+
405
+
406
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:31:04 -0600
407
+ Processing by LandingController#index as HTML
408
+ Rendered landing/index.html.erb within layouts/application (2.1ms)
409
+ Completed 200 OK in 17552ms (Views: 30.9ms)
410
+
411
+
412
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:32:44 -0600
413
+ Processing by LandingController#index as HTML
414
+ Rendered landing/index.html.erb within layouts/application (3.0ms)
415
+ Completed 200 OK in 2683ms (Views: 13.2ms)
416
+
417
+
418
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:04 -0600
419
+ Processing by LandingController#index as HTML
420
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
421
+ Completed 200 OK in 2ms (Views: 1.7ms)
422
+
423
+
424
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:04 -0600
425
+ Processing by LandingController#index as HTML
426
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
427
+ Completed 200 OK in 2ms (Views: 1.6ms)
428
+
429
+
430
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:11 -0600
431
+ Processing by LandingController#index as HTML
432
+ Rendered landing/index.html.erb within layouts/application (16.7ms)
433
+ Completed 200 OK in 28ms (Views: 27.2ms)
434
+
435
+
436
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:14 -0600
437
+ Processing by LandingController#index as HTML
438
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
439
+ Completed 200 OK in 3ms (Views: 2.5ms)
440
+
441
+
442
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:40 -0600
443
+ Processing by LandingController#index as HTML
444
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
445
+ Completed 200 OK in 2ms (Views: 1.8ms)
446
+
447
+
448
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:34:41 -0600
449
+ Processing by LandingController#index as HTML
450
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
451
+ Completed 200 OK in 2ms (Views: 2.0ms)
452
+
453
+
454
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:35:14 -0600
455
+ Processing by LandingController#index as HTML
456
+ Rendered landing/index.html.erb within layouts/application (2.0ms)
457
+ Completed 200 OK in 24ms (Views: 23.6ms)
458
+
459
+
460
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:36:24 -0600
461
+ Inside app's ApplicationController
462
+ Processing by LandingController#index as HTML
463
+ Inside app's LandingController#index
464
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
465
+ Completed 200 OK in 2ms (Views: 1.7ms)
466
+
467
+
468
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:41:02 -0600
469
+ Processing by LandingController#index as HTML
470
+ Inside app's LandingController#index
471
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
472
+ Completed 200 OK in 2ms (Views: 1.5ms)
473
+
474
+
475
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:41:17 -0600
476
+ Inside app's ApplicationController
477
+ Processing by LandingController#index as HTML
478
+ Inside gem's ActionController
479
+ Inside app's LandingController#index
480
+ Rendered landing/index.html.erb within layouts/application (1.8ms)
481
+ Completed 200 OK in 11ms (Views: 10.5ms)
482
+
483
+
484
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:42:20 -0600
485
+ Inside app's ApplicationController
486
+ Processing by LandingController#index as HTML
487
+ Inside gem's ActionController#_reload_app_yml
488
+ Inside app's LandingController#index
489
+ Rendered landing/index.html.erb within layouts/application (1.6ms)
490
+ Completed 200 OK in 9ms (Views: 9.0ms)
491
+
492
+
493
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:42:47 -0600
494
+ Inside app's ApplicationController
495
+ Processing by LandingController#index as HTML
496
+ Inside app's LandingController#index
497
+ Rendered landing/index.html.erb within layouts/application (2.3ms)
498
+ Completed 200 OK in 11ms (Views: 10.5ms)
499
+
500
+
501
+ Started GET "/" for 127.0.0.1 at 2012-04-29 12:43:06 -0600
502
+ Inside app's ApplicationController
503
+ Processing by LandingController#index as HTML
504
+ Inside gem's ActionController#_reload_app_yml
505
+ Inside app's LandingController#index
506
+ Rendered landing/index.html.erb within layouts/application (3.4ms)
507
+ Completed 200 OK in 11ms (Views: 10.8ms)
508
+
509
+
510
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:18:03 -0600
511
+ Processing by LandingController#index as HTML
512
+ Inside gem's ActionController#_reload_app_yml
513
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
514
+ Completed 200 OK in 2ms (Views: 1.7ms)
515
+
516
+
517
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:18:16 -0600
518
+ Processing by LandingController#index as HTML
519
+ Rendered landing/index.html.erb within layouts/application (5.7ms)
520
+ Completed 500 Internal Server Error in 20ms
521
+
522
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
523
+ 1: <h1>Welcome to the app.yml testing page!</h1>
524
+ 2: <p>
525
+ 3: <strong>The App.emails hash:</strong><br />
526
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
527
+ 5: </p>
528
+ 6:
529
+ 7: <p>
530
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb___4373619269532216258_70339628797560'
531
+
532
+
533
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
534
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
535
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.9ms)
536
+
537
+
538
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:19:35 -0600
539
+ Processing by LandingController#index as HTML
540
+ Rendered landing/index.html.erb within layouts/application (14.7ms)
541
+ Completed 500 Internal Server Error in 16ms
542
+
543
+ ActionView::Template::Error (undefined method `emails' for AppYml:Module):
544
+ 1: <h1>Welcome to the app.yml testing page!</h1>
545
+ 2: <p>
546
+ 3: <strong>The App.emails hash:</strong><br />
547
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
548
+ 5: </p>
549
+ 6:
550
+ 7: <p>
551
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb___4373619269532216258_70339628797560'
552
+
553
+
554
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
555
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
556
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.3ms)
557
+
558
+
559
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:19:45 -0600
560
+ Processing by LandingController#index as HTML
561
+ Rendered landing/index.html.erb within layouts/application (1.9ms)
562
+ Completed 200 OK in 15ms (Views: 14.4ms)
563
+
564
+
565
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:03 -0600
566
+ Processing by LandingController#index as HTML
567
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
568
+ Completed 200 OK in 2ms (Views: 2.0ms)
569
+
570
+
571
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:10 -0600
572
+ Processing by LandingController#index as HTML
573
+ Rendered landing/index.html.erb within layouts/application (1.7ms)
574
+ Completed 200 OK in 9ms (Views: 9.0ms)
575
+
576
+
577
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:11 -0600
578
+ Processing by LandingController#index as HTML
579
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
580
+ Completed 200 OK in 2ms (Views: 1.8ms)
581
+
582
+
583
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:11 -0600
584
+ Processing by LandingController#index as HTML
585
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
586
+ Completed 200 OK in 2ms (Views: 2.0ms)
587
+
588
+
589
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:12 -0600
590
+ Processing by LandingController#index as HTML
591
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
592
+ Completed 200 OK in 2ms (Views: 2.1ms)
593
+
594
+
595
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:12 -0600
596
+ Processing by LandingController#index as HTML
597
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
598
+ Completed 200 OK in 2ms (Views: 2.0ms)
599
+
600
+
601
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:12 -0600
602
+ Processing by LandingController#index as HTML
603
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
604
+ Completed 200 OK in 2ms (Views: 1.6ms)
605
+
606
+
607
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:12 -0600
608
+ Processing by LandingController#index as HTML
609
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
610
+ Completed 200 OK in 2ms (Views: 2.1ms)
611
+
612
+
613
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:12 -0600
614
+ Processing by LandingController#index as HTML
615
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
616
+ Completed 200 OK in 2ms (Views: 1.6ms)
617
+
618
+
619
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:13 -0600
620
+ Processing by LandingController#index as HTML
621
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
622
+ Completed 200 OK in 2ms (Views: 1.5ms)
623
+
624
+
625
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:13 -0600
626
+ Processing by LandingController#index as HTML
627
+ Rendered landing/index.html.erb within layouts/application (0.1ms)
628
+ Completed 200 OK in 2ms (Views: 1.5ms)
629
+
630
+
631
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:20:13 -0600
632
+ Processing by LandingController#index as HTML
633
+ Rendered landing/index.html.erb within layouts/application (0.2ms)
634
+ Completed 200 OK in 2ms (Views: 2.0ms)
635
+
636
+
637
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:21:45 -0600
638
+ Processing by LandingController#index as HTML
639
+ Rendered landing/index.html.erb within layouts/application (2.5ms)
640
+ Completed 200 OK in 11ms (Views: 10.6ms)
641
+
642
+
643
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:25:41 -0600
644
+ Processing by LandingController#index as HTML
645
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
646
+ Completed 200 OK in 2ms (Views: 2.0ms)
647
+
648
+
649
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:25:41 -0600
650
+ Processing by LandingController#index as HTML
651
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
652
+ Completed 200 OK in 2ms (Views: 2.2ms)
653
+
654
+
655
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:25:57 -0600
656
+ Processing by LandingController#index as HTML
657
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
658
+ Completed 200 OK in 2ms (Views: 2.1ms)
659
+
660
+
661
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:25:57 -0600
662
+ Processing by LandingController#index as HTML
663
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
664
+ Completed 200 OK in 2ms (Views: 2.1ms)
665
+
666
+
667
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:25:58 -0600
668
+ Processing by LandingController#index as HTML
669
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
670
+ Completed 200 OK in 2ms (Views: 2.1ms)
671
+
672
+
673
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:26:03 -0600
674
+ Processing by LandingController#index as HTML
675
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
676
+ Completed 200 OK in 2ms (Views: 2.3ms)
677
+
678
+
679
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:26:03 -0600
680
+ Processing by LandingController#index as HTML
681
+ Rendered landing/index.html.erb within layouts/application (0.9ms)
682
+ Completed 200 OK in 3ms (Views: 2.9ms)
683
+
684
+
685
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:39:30 -0600
686
+ Processing by LandingController#index as HTML
687
+ Rendered landing/index.html.erb within layouts/application (2.2ms)
688
+ Completed 200 OK in 12ms (Views: 10.5ms)
689
+
690
+
691
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:39:38 -0600
692
+ Processing by LandingController#index as HTML
693
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
694
+ Completed 200 OK in 3ms (Views: 1.9ms)
695
+
696
+
697
+ Started GET "/" for 127.0.0.1 at 2012-04-29 13:39:42 -0600
698
+ Processing by LandingController#index as HTML
699
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
700
+ Completed 200 OK in 3ms (Views: 1.8ms)
701
+
702
+
703
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:07 -0600
704
+ Processing by LandingController#index as HTML
705
+ Rendered landing/index.html.erb within layouts/application (6.4ms)
706
+ Completed 200 OK in 25ms (Views: 23.6ms)
707
+
708
+
709
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:08 -0600
710
+ Processing by LandingController#index as HTML
711
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
712
+ Completed 200 OK in 3ms (Views: 1.8ms)
713
+
714
+
715
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:09 -0600
716
+ Processing by LandingController#index as HTML
717
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
718
+ Completed 200 OK in 4ms (Views: 2.4ms)
719
+
720
+
721
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:09 -0600
722
+ Processing by LandingController#index as HTML
723
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
724
+ Completed 200 OK in 3ms (Views: 2.1ms)
725
+
726
+
727
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:10 -0600
728
+ Processing by LandingController#index as HTML
729
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
730
+ Completed 200 OK in 3ms (Views: 1.7ms)
731
+
732
+
733
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:10 -0600
734
+ Processing by LandingController#index as HTML
735
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
736
+ Completed 200 OK in 3ms (Views: 1.8ms)
737
+
738
+
739
+ Started GET "/" for 127.0.0.1 at 2012-04-30 00:19:10 -0600
740
+ Processing by LandingController#index as HTML
741
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
742
+ Completed 200 OK in 4ms (Views: 2.5ms)
743
+
744
+
745
+ Started GET "/" for 127.0.0.1 at 2012-04-30 07:35:31 -0600
746
+ Processing by LandingController#index as HTML
747
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
748
+ Completed 200 OK in 5ms (Views: 3.4ms)
749
+
750
+
751
+ Started GET "/" for 127.0.0.1 at 2012-04-30 10:38:32 -0600
752
+ Processing by LandingController#index as HTML
753
+ Rendered landing/index.html.erb within layouts/application (0.8ms)
754
+ Completed 200 OK in 4ms (Views: 3.1ms)
755
+
756
+
757
+ Started GET "/" for 127.0.0.1 at 2012-04-30 10:38:36 -0600
758
+ Processing by LandingController#index as HTML
759
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
760
+ Completed 200 OK in 4ms (Views: 2.0ms)
761
+
762
+
763
+ Started GET "/" for 127.0.0.1 at 2012-04-30 10:45:41 -0600
764
+ Processing by LandingController#index as HTML
765
+ Rendered landing/index.html.erb within layouts/application (0.4ms)
766
+ Completed 200 OK in 2ms (Views: 1.5ms)
767
+
768
+
769
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:44 -0600
770
+ Processing by LandingController#index as HTML
771
+ Completed 500 Internal Server Error in 0ms
772
+
773
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
774
+ config/initializers/app.rb:19:in `read'
775
+ config/initializers/app.rb:19:in `build_settings_hash'
776
+
777
+
778
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
779
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
780
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.2ms)
781
+
782
+
783
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:47 -0600
784
+ Processing by LandingController#index as HTML
785
+ Completed 500 Internal Server Error in 0ms
786
+
787
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
788
+ config/initializers/app.rb:19:in `read'
789
+ config/initializers/app.rb:19:in `build_settings_hash'
790
+
791
+
792
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
793
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
794
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
795
+
796
+
797
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:47 -0600
798
+ Processing by LandingController#index as HTML
799
+ Completed 500 Internal Server Error in 0ms
800
+
801
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
802
+ config/initializers/app.rb:19:in `read'
803
+ config/initializers/app.rb:19:in `build_settings_hash'
804
+
805
+
806
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
807
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
808
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
809
+
810
+
811
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:48 -0600
812
+ Processing by LandingController#index as HTML
813
+ Completed 500 Internal Server Error in 0ms
814
+
815
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
816
+ config/initializers/app.rb:19:in `read'
817
+ config/initializers/app.rb:19:in `build_settings_hash'
818
+
819
+
820
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (22.0ms)
821
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
822
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.7ms)
823
+
824
+
825
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:48 -0600
826
+ Processing by LandingController#index as HTML
827
+ Completed 500 Internal Server Error in 1ms
828
+
829
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
830
+ config/initializers/app.rb:19:in `read'
831
+ config/initializers/app.rb:19:in `build_settings_hash'
832
+
833
+
834
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
835
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
836
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms)
837
+
838
+
839
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:48 -0600
840
+ Processing by LandingController#index as HTML
841
+ Completed 500 Internal Server Error in 0ms
842
+
843
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
844
+ config/initializers/app.rb:19:in `read'
845
+ config/initializers/app.rb:19:in `build_settings_hash'
846
+
847
+
848
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
849
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
850
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
851
+
852
+
853
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:49 -0600
854
+ Processing by LandingController#index as HTML
855
+ Completed 500 Internal Server Error in 1ms
856
+
857
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
858
+ config/initializers/app.rb:19:in `read'
859
+ config/initializers/app.rb:19:in `build_settings_hash'
860
+
861
+
862
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
863
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
864
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
865
+
866
+
867
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:49 -0600
868
+ Processing by LandingController#index as HTML
869
+ Completed 500 Internal Server Error in 1ms
870
+
871
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
872
+ config/initializers/app.rb:19:in `read'
873
+ config/initializers/app.rb:19:in `build_settings_hash'
874
+
875
+
876
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
877
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
878
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
879
+
880
+
881
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:49 -0600
882
+ Processing by LandingController#index as HTML
883
+ Completed 500 Internal Server Error in 0ms
884
+
885
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
886
+ config/initializers/app.rb:19:in `read'
887
+ config/initializers/app.rb:19:in `build_settings_hash'
888
+
889
+
890
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
891
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
892
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
893
+
894
+
895
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:50 -0600
896
+ Processing by LandingController#index as HTML
897
+ Completed 500 Internal Server Error in 0ms
898
+
899
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
900
+ config/initializers/app.rb:19:in `read'
901
+ config/initializers/app.rb:19:in `build_settings_hash'
902
+
903
+
904
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
905
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
906
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
907
+
908
+
909
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:50 -0600
910
+ Processing by LandingController#index as HTML
911
+ Completed 500 Internal Server Error in 0ms
912
+
913
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
914
+ config/initializers/app.rb:19:in `read'
915
+ config/initializers/app.rb:19:in `build_settings_hash'
916
+
917
+
918
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (13.7ms)
919
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
920
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.6ms)
921
+
922
+
923
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:50 -0600
924
+ Processing by LandingController#index as HTML
925
+ Completed 500 Internal Server Error in 0ms
926
+
927
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
928
+ config/initializers/app.rb:19:in `read'
929
+ config/initializers/app.rb:19:in `build_settings_hash'
930
+
931
+
932
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
933
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.7ms)
934
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms)
935
+
936
+
937
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:50 -0600
938
+ Processing by LandingController#index as HTML
939
+ Completed 500 Internal Server Error in 0ms
940
+
941
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
942
+ config/initializers/app.rb:19:in `read'
943
+ config/initializers/app.rb:19:in `build_settings_hash'
944
+
945
+
946
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
947
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.9ms)
948
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.7ms)
949
+
950
+
951
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:51 -0600
952
+ Processing by LandingController#index as HTML
953
+ Completed 500 Internal Server Error in 0ms
954
+
955
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
956
+ config/initializers/app.rb:19:in `read'
957
+ config/initializers/app.rb:19:in `build_settings_hash'
958
+
959
+
960
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.6ms)
961
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
962
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
963
+
964
+
965
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:51 -0600
966
+ Processing by LandingController#index as HTML
967
+ Completed 500 Internal Server Error in 0ms
968
+
969
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
970
+ config/initializers/app.rb:19:in `read'
971
+ config/initializers/app.rb:19:in `build_settings_hash'
972
+
973
+
974
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
975
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
976
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
977
+
978
+
979
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:51 -0600
980
+ Processing by LandingController#index as HTML
981
+ Completed 500 Internal Server Error in 1ms
982
+
983
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
984
+ config/initializers/app.rb:19:in `read'
985
+ config/initializers/app.rb:19:in `build_settings_hash'
986
+
987
+
988
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
989
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
990
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
991
+
992
+
993
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:52 -0600
994
+ Processing by LandingController#index as HTML
995
+ Completed 500 Internal Server Error in 0ms
996
+
997
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
998
+ config/initializers/app.rb:19:in `read'
999
+ config/initializers/app.rb:19:in `build_settings_hash'
1000
+
1001
+
1002
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
1003
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1004
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
1005
+
1006
+
1007
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:26:52 -0600
1008
+ Processing by LandingController#index as HTML
1009
+ Completed 500 Internal Server Error in 0ms
1010
+
1011
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
1012
+ config/initializers/app.rb:19:in `read'
1013
+ config/initializers/app.rb:19:in `build_settings_hash'
1014
+
1015
+
1016
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.6ms)
1017
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1018
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.2ms)
1019
+
1020
+
1021
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:32:39 -0600
1022
+ Processing by LandingController#index as HTML
1023
+ Completed 500 Internal Server Error in 0ms
1024
+
1025
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
1026
+ config/initializers/app.rb:19:in `read'
1027
+ config/initializers/app.rb:19:in `build_settings_hash'
1028
+
1029
+
1030
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1031
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (15.2ms)
1032
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.8ms)
1033
+
1034
+
1035
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:32:53 -0600
1036
+ Processing by LandingController#index as HTML
1037
+ Completed 500 Internal Server Error in 0ms
1038
+
1039
+ NoMethodError (undefined method `build_settings_hash' for AppYml:Module):
1040
+ /Users/Swanny/Sites/app_yml/lib/app_yml/core_ext.rb:61:in `_reload_app_yml'
1041
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__4382003947187475154__process_action__3993894886979936256__callbacks'
1042
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1043
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1044
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1045
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1046
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1047
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1048
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1049
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1050
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1051
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1052
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1053
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1054
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1055
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1056
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1057
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1058
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1059
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1060
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1061
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1062
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1063
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1064
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1065
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1066
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1067
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1068
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1069
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1070
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1071
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1072
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1073
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1074
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1075
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__2849129969320965189__call__1491178105103498247__callbacks'
1076
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1077
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1078
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1079
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1080
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1081
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1082
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1083
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1084
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1085
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1086
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1087
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1088
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1089
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1090
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1091
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1092
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1093
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1094
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1095
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1096
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1097
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1098
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1099
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1100
+
1101
+
1102
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1103
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1104
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
1105
+
1106
+
1107
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:52:00 -0600
1108
+ Processing by LandingController#index as HTML
1109
+ Completed 500 Internal Server Error in 0ms
1110
+
1111
+ NoMethodError (undefined method `build_settings_hash' for AppYml:Module):
1112
+ /Users/Swanny/Sites/app_yml/lib/app_yml/core_ext.rb:61:in `_reload_app_yml'
1113
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__4382003947187475154__process_action__3993894886979936256__callbacks'
1114
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1115
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1116
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1117
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1118
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1119
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1120
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1121
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1122
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1123
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1124
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1125
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1126
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1127
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1128
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1129
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1130
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1131
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1132
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1133
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1134
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1135
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1136
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1137
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1138
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1139
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1140
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1141
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1142
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1143
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1144
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1145
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1146
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1147
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__2849129969320965189__call__1491178105103498247__callbacks'
1148
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1149
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1150
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1151
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1152
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1153
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1154
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1155
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1156
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1157
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1158
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1159
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1160
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1161
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1162
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1163
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1164
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1165
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1166
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1167
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1168
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1169
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1170
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1171
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1172
+
1173
+
1174
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1175
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1176
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
1177
+
1178
+
1179
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:52:08 -0600
1180
+ Processing by LandingController#index as HTML
1181
+ Completed 500 Internal Server Error in 0ms
1182
+
1183
+ NoMethodError (undefined method `build_settings_hash' for AppYml:Module):
1184
+ /Users/Swanny/Sites/app_yml/lib/app_yml/core_ext.rb:61:in `_reload_app_yml'
1185
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__2445800558039014616__process_action__609103309385313073__callbacks'
1186
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1187
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1188
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1189
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1190
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1191
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1192
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1193
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1194
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1195
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1196
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1197
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1198
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1199
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1200
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1201
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1202
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1203
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1204
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1205
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1206
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1207
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1208
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1209
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1210
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1211
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1212
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1213
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1214
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1215
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1216
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1217
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1218
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1219
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__390605594683406889__call__643423941242912126__callbacks'
1220
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1221
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1222
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1223
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1224
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1225
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1226
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1227
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1228
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1229
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1230
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1231
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1232
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1233
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1234
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1235
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1236
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1237
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1238
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1239
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1240
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1241
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1242
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1243
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1244
+
1245
+
1246
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
1247
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1248
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
1249
+
1250
+
1251
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:53:35 -0600
1252
+ Processing by LandingController#index as HTML
1253
+ Completed 500 Internal Server Error in 0ms
1254
+
1255
+ NoMethodError (undefined method `build_settings_hash' for AppYml:Module):
1256
+ /Users/Swanny/Sites/app_yml/lib/app_yml/core_ext.rb:61:in `_reload_app_yml'
1257
+ activesupport (3.2.3) lib/active_support/callbacks.rb:418:in `_run__2445800558039014616__process_action__609103309385313073__callbacks'
1258
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1259
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
1260
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1261
+ actionpack (3.2.3) lib/abstract_controller/callbacks.rb:17:in `process_action'
1262
+ actionpack (3.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
1263
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
1264
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `block in instrument'
1265
+ activesupport (3.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1266
+ activesupport (3.2.3) lib/active_support/notifications.rb:123:in `instrument'
1267
+ actionpack (3.2.3) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
1268
+ actionpack (3.2.3) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
1269
+ actionpack (3.2.3) lib/abstract_controller/base.rb:121:in `process'
1270
+ actionpack (3.2.3) lib/abstract_controller/rendering.rb:45:in `process'
1271
+ actionpack (3.2.3) lib/action_controller/metal.rb:203:in `dispatch'
1272
+ actionpack (3.2.3) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1273
+ actionpack (3.2.3) lib/action_controller/metal.rb:246:in `block in action'
1274
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `call'
1275
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1276
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:36:in `call'
1277
+ journey (1.0.3) lib/journey/router.rb:68:in `block in call'
1278
+ journey (1.0.3) lib/journey/router.rb:56:in `each'
1279
+ journey (1.0.3) lib/journey/router.rb:56:in `call'
1280
+ actionpack (3.2.3) lib/action_dispatch/routing/route_set.rb:600:in `call'
1281
+ actionpack (3.2.3) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1282
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1283
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1284
+ actionpack (3.2.3) lib/action_dispatch/middleware/head.rb:14:in `call'
1285
+ actionpack (3.2.3) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1286
+ actionpack (3.2.3) lib/action_dispatch/middleware/flash.rb:242:in `call'
1287
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1288
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1289
+ actionpack (3.2.3) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1290
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1291
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `_run__390605594683406889__call__643423941242912126__callbacks'
1292
+ activesupport (3.2.3) lib/active_support/callbacks.rb:405:in `__run_callback'
1293
+ activesupport (3.2.3) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1294
+ activesupport (3.2.3) lib/active_support/callbacks.rb:81:in `run_callbacks'
1295
+ actionpack (3.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1296
+ actionpack (3.2.3) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1297
+ actionpack (3.2.3) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1298
+ actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1299
+ actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1300
+ railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
1301
+ railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
1302
+ actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1303
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1304
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1305
+ activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1306
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1307
+ actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
1308
+ railties (3.2.3) lib/rails/engine.rb:479:in `call'
1309
+ railties (3.2.3) lib/rails/application.rb:220:in `call'
1310
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1311
+ railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
1312
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1313
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1314
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1315
+ /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1316
+
1317
+
1318
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms)
1319
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1320
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
1321
+
1322
+
1323
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:53:41 -0600
1324
+ Processing by LandingController#index as HTML
1325
+ Completed 500 Internal Server Error in 1ms
1326
+
1327
+ NameError (uninitialized constant LandingController::App):
1328
+ app/controllers/landing_controller.rb:4:in `index'
1329
+
1330
+
1331
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
1332
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
1333
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
1334
+
1335
+
1336
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:54:06 -0600
1337
+ Processing by LandingController#index as HTML
1338
+ Rendered landing/index.html.erb within layouts/application (22.1ms)
1339
+ Completed 500 Internal Server Error in 25ms
1340
+
1341
+ ActionView::Template::Error (undefined method `emails' for nil:NilClass):
1342
+ 1: <h1>Welcome to the app.yml testing page!</h1>
1343
+ 2: <p>
1344
+ 3: <strong>The App.emails hash:</strong><br />
1345
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
1346
+ 5: </p>
1347
+ 6:
1348
+ 7: <p>
1349
+ app/views/landing/index.html.erb:4:in `_app_views_landing_index_html_erb___2646892266538866088_70358534248700'
1350
+
1351
+
1352
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.1ms)
1353
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1354
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.4ms)
1355
+
1356
+
1357
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:54:15 -0600
1358
+ Processing by LandingController#index as HTML
1359
+ Completed 500 Internal Server Error in 1ms
1360
+
1361
+ NameError (uninitialized constant LandingController::App):
1362
+ app/controllers/landing_controller.rb:4:in `index'
1363
+
1364
+
1365
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
1366
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1367
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
1368
+
1369
+
1370
+ Started GET "/" for 127.0.0.1 at 2012-04-30 11:57:37 -0600
1371
+ Processing by LandingController#index as HTML
1372
+ Completed 500 Internal Server Error in 1ms
1373
+
1374
+ ActionView::MissingTemplate (Missing template landing/no_initializer, application/no_initializer with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
1375
+ * "/Users/Swanny/Sites/app_yml/test/dummy/app/views"
1376
+ ):
1377
+ app/controllers/landing_controller.rb:7:in `index'
1378
+
1379
+
1380
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms)
1381
+
1382
+
1383
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:00:35 -0600
1384
+ Processing by LandingController#index as HTML
1385
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.9ms)
1386
+ Completed 500 Internal Server Error in 3ms
1387
+
1388
+ ActionView::Template::Error (undefined method `emails' for nil:NilClass):
1389
+ 1: <h1>Welcome to the app.yml testing page!</h1>
1390
+ 2: <p>
1391
+ 3: <strong>The App.emails hash:</strong><br />
1392
+ 4: <pre><%= PP.pp @app.emails, '' %></pre>
1393
+ 5: </p>
1394
+ 6:
1395
+ 7: <p>
1396
+ app/views/landing/missing_initializer.html.erb:4:in `_app_views_landing_missing_initializer_html_erb__2713907079752148985_70358534768580'
1397
+ app/controllers/landing_controller.rb:7:in `index'
1398
+
1399
+
1400
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
1401
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (17.5ms)
1402
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.7ms)
1403
+
1404
+
1405
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:07:38 -0600
1406
+ Processing by LandingController#index as HTML
1407
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1408
+ Completed 200 OK in 2ms (Views: 2.1ms)
1409
+
1410
+
1411
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:07:48 -0600
1412
+ Processing by LandingController#index as HTML
1413
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1414
+ Completed 200 OK in 2ms (Views: 2.0ms)
1415
+
1416
+
1417
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:08:03 -0600
1418
+ Processing by LandingController#index as HTML
1419
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1420
+ Completed 200 OK in 1ms (Views: 1.3ms)
1421
+
1422
+
1423
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:08:03 -0600
1424
+ Processing by LandingController#index as HTML
1425
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1426
+ Completed 200 OK in 1ms (Views: 1.2ms)
1427
+
1428
+
1429
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:08:03 -0600
1430
+ Processing by LandingController#index as HTML
1431
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1432
+ Completed 200 OK in 1ms (Views: 1.4ms)
1433
+
1434
+
1435
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:08:04 -0600
1436
+ Processing by LandingController#index as HTML
1437
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1438
+ Completed 200 OK in 1ms (Views: 1.3ms)
1439
+
1440
+
1441
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:08:09 -0600
1442
+ Processing by LandingController#index as HTML
1443
+ Rendered landing/index.html.erb within layouts/application (2.1ms)
1444
+ Completed 200 OK in 10ms (Views: 9.1ms)
1445
+
1446
+
1447
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:14:53 -0600
1448
+ Processing by LandingController#index as HTML
1449
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1450
+ Completed 200 OK in 3ms (Views: 2.1ms)
1451
+
1452
+
1453
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:39:52 -0600
1454
+ Processing by LandingController#index as HTML
1455
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1456
+ Completed 200 OK in 3ms (Views: 2.1ms)
1457
+
1458
+
1459
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:39:52 -0600
1460
+ Processing by LandingController#index as HTML
1461
+ Rendered landing/index.html.erb within layouts/application (0.4ms)
1462
+ Completed 200 OK in 2ms (Views: 1.6ms)
1463
+
1464
+
1465
+ Started GET "/" for 127.0.0.1 at 2012-04-30 12:40:28 -0600
1466
+ Processing by LandingController#index as HTML
1467
+ Completed 500 Internal Server Error in 0ms
1468
+
1469
+ Errno::ENOENT (No such file or directory - /Users/Swanny/Sites/app_yml/test/dummy/config/app.yml):
1470
+ config/initializers/app.rb:19:in `read'
1471
+ config/initializers/app.rb:19:in `build_settings_hash'
1472
+
1473
+
1474
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
1475
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
1476
+ Rendered /usr/local/Cellar/ruby/1.9.3-p125/lib/ruby/gems/1.9.1/gems/actionpack-3.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
1477
+
1478
+
1479
+ Started GET "/" for 127.0.0.1 at 2012-04-30 13:14:21 -0600
1480
+ Processing by LandingController#index as HTML
1481
+ Rendered landing/missing_initializer.html.erb within layouts/application (2.1ms)
1482
+ Completed 200 OK in 12ms (Views: 11.8ms)
1483
+
1484
+
1485
+ Started GET "/" for 127.0.0.1 at 2012-04-30 13:46:19 -0600
1486
+ Processing by LandingController#index as HTML
1487
+ Rendered landing/missing_initializer.html.erb within layouts/application (1.6ms)
1488
+ Completed 200 OK in 11ms (Views: 10.4ms)
1489
+
1490
+
1491
+ Started GET "/" for 127.0.0.1 at 2012-04-30 13:46:41 -0600
1492
+ Processing by LandingController#index as HTML
1493
+ Rendered landing/index.html.erb within layouts/application (2.7ms)
1494
+ Completed 200 OK in 11ms (Views: 9.9ms)
1495
+
1496
+
1497
+ Started GET "/" for 127.0.0.1 at 2012-04-30 13:46:56 -0600
1498
+ Processing by LandingController#index as HTML
1499
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1500
+ Completed 200 OK in 3ms (Views: 2.3ms)
1501
+
1502
+
1503
+ Started GET "/" for 127.0.0.1 at 2012-04-30 13:47:00 -0600
1504
+ Processing by LandingController#index as HTML
1505
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1506
+ Completed 200 OK in 3ms (Views: 2.0ms)
1507
+
1508
+
1509
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:27 -0600
1510
+ Processing by LandingController#index as HTML
1511
+ Rendered landing/index.html.erb within layouts/application (2.0ms)
1512
+ Completed 200 OK in 10ms (Views: 8.5ms)
1513
+
1514
+
1515
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:28 -0600
1516
+ Processing by LandingController#index as HTML
1517
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1518
+ Completed 200 OK in 3ms (Views: 1.9ms)
1519
+
1520
+
1521
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:33 -0600
1522
+ Processing by LandingController#index as HTML
1523
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1524
+ Completed 200 OK in 4ms (Views: 2.1ms)
1525
+
1526
+
1527
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:42 -0600
1528
+ Processing by LandingController#index as HTML
1529
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1530
+ Completed 200 OK in 4ms (Views: 2.1ms)
1531
+
1532
+
1533
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:43 -0600
1534
+ Processing by LandingController#index as HTML
1535
+ Rendered landing/index.html.erb within layouts/application (0.8ms)
1536
+ Completed 200 OK in 4ms (Views: 2.8ms)
1537
+
1538
+
1539
+ Started GET "/" for 127.0.0.1 at 2012-04-30 14:03:44 -0600
1540
+ Processing by LandingController#index as HTML
1541
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1542
+ Completed 200 OK in 3ms (Views: 1.8ms)
1543
+
1544
+
1545
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:19:05 -0600
1546
+ Processing by LandingController#index as HTML
1547
+ Rendered landing/missing_initializer.html.erb within layouts/application (2.0ms)
1548
+ Completed 200 OK in 12ms (Views: 11.6ms)
1549
+
1550
+
1551
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:19:21 -0600
1552
+ Processing by LandingController#index as HTML
1553
+ Rendered landing/index.html.erb within layouts/application (2.0ms)
1554
+ Completed 200 OK in 10ms (Views: 8.9ms)
1555
+
1556
+
1557
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:19:38 -0600
1558
+ Processing by LandingController#index as HTML
1559
+ Rendered landing/index.html.erb within layouts/application (0.7ms)
1560
+ Completed 200 OK in 4ms (Views: 2.5ms)
1561
+
1562
+
1563
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:19:42 -0600
1564
+ Processing by LandingController#index as HTML
1565
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1566
+ Completed 200 OK in 3ms (Views: 1.6ms)
1567
+
1568
+
1569
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:24:46 -0600
1570
+ Processing by LandingController#index as HTML
1571
+ Rendered landing/index.html.erb within layouts/application (0.9ms)
1572
+ Completed 200 OK in 4ms (Views: 2.4ms)
1573
+
1574
+
1575
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:24:47 -0600
1576
+ Processing by LandingController#index as HTML
1577
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1578
+ Completed 200 OK in 3ms (Views: 1.7ms)
1579
+
1580
+
1581
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:26 -0600
1582
+ Processing by LandingController#index as HTML
1583
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1584
+ Completed 200 OK in 3ms (Views: 2.0ms)
1585
+
1586
+
1587
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:27 -0600
1588
+ Processing by LandingController#index as HTML
1589
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1590
+ Completed 200 OK in 3ms (Views: 1.9ms)
1591
+
1592
+
1593
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:27 -0600
1594
+ Processing by LandingController#index as HTML
1595
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1596
+ Completed 200 OK in 3ms (Views: 1.7ms)
1597
+
1598
+
1599
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:27 -0600
1600
+ Processing by LandingController#index as HTML
1601
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1602
+ Completed 200 OK in 3ms (Views: 1.6ms)
1603
+
1604
+
1605
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:27 -0600
1606
+ Processing by LandingController#index as HTML
1607
+ Rendered landing/index.html.erb within layouts/application (0.9ms)
1608
+ Completed 200 OK in 4ms (Views: 2.7ms)
1609
+
1610
+
1611
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:28 -0600
1612
+ Processing by LandingController#index as HTML
1613
+ Rendered landing/index.html.erb within layouts/application (1.0ms)
1614
+ Completed 200 OK in 4ms (Views: 2.9ms)
1615
+
1616
+
1617
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:28 -0600
1618
+ Processing by LandingController#index as HTML
1619
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1620
+ Completed 200 OK in 4ms (Views: 2.6ms)
1621
+
1622
+
1623
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:28 -0600
1624
+ Processing by LandingController#index as HTML
1625
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1626
+ Completed 200 OK in 3ms (Views: 1.8ms)
1627
+
1628
+
1629
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:42 -0600
1630
+ Processing by LandingController#index as HTML
1631
+ Rendered landing/missing_initializer.html.erb within layouts/application (1.8ms)
1632
+ Completed 200 OK in 10ms (Views: 9.3ms)
1633
+
1634
+
1635
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:42 -0600
1636
+ Processing by LandingController#index as HTML
1637
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1638
+ Completed 200 OK in 2ms (Views: 1.5ms)
1639
+
1640
+
1641
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:44 -0600
1642
+ Processing by LandingController#index as HTML
1643
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1644
+ Completed 200 OK in 2ms (Views: 1.9ms)
1645
+
1646
+
1647
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:54 -0600
1648
+ Processing by LandingController#index as HTML
1649
+ Rendered landing/index.html.erb within layouts/application (1.9ms)
1650
+ Completed 200 OK in 10ms (Views: 8.8ms)
1651
+
1652
+
1653
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:25:55 -0600
1654
+ Processing by LandingController#index as HTML
1655
+ Rendered landing/index.html.erb within layouts/application (0.5ms)
1656
+ Completed 200 OK in 3ms (Views: 1.8ms)
1657
+
1658
+
1659
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:26:59 -0600
1660
+ Processing by LandingController#index as HTML
1661
+ Rendered landing/missing_initializer.html.erb within layouts/application (1.5ms)
1662
+ Completed 200 OK in 9ms (Views: 8.6ms)
1663
+
1664
+
1665
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:26:59 -0600
1666
+ Processing by LandingController#index as HTML
1667
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1668
+ Completed 200 OK in 2ms (Views: 1.4ms)
1669
+
1670
+
1671
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:27:00 -0600
1672
+ Processing by LandingController#index as HTML
1673
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1674
+ Completed 200 OK in 1ms (Views: 1.4ms)
1675
+
1676
+
1677
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:27:00 -0600
1678
+ Processing by LandingController#index as HTML
1679
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1680
+ Completed 200 OK in 2ms (Views: 1.8ms)
1681
+
1682
+
1683
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:27:26 -0600
1684
+ Processing by LandingController#index as HTML
1685
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1686
+ Completed 200 OK in 2ms (Views: 1.8ms)
1687
+
1688
+
1689
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:28:12 -0600
1690
+ Processing by LandingController#index as HTML
1691
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1692
+ Completed 200 OK in 2ms (Views: 1.8ms)
1693
+
1694
+
1695
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:28:30 -0600
1696
+ Processing by LandingController#index as HTML
1697
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1698
+ Completed 200 OK in 2ms (Views: 1.9ms)
1699
+
1700
+
1701
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:28:37 -0600
1702
+ Processing by LandingController#index as HTML
1703
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1704
+ Completed 200 OK in 2ms (Views: 1.8ms)
1705
+
1706
+
1707
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:28:51 -0600
1708
+ Processing by LandingController#index as HTML
1709
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.3ms)
1710
+ Completed 200 OK in 2ms (Views: 2.2ms)
1711
+
1712
+
1713
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:34:40 -0600
1714
+ Processing by LandingController#index as HTML
1715
+ Rendered landing/missing_initializer.html.erb within layouts/application (1.8ms)
1716
+ Completed 200 OK in 25ms (Views: 24.8ms)
1717
+
1718
+
1719
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:34:40 -0600
1720
+ Processing by LandingController#index as HTML
1721
+ Rendered landing/missing_initializer.html.erb within layouts/application (0.0ms)
1722
+ Completed 200 OK in 2ms (Views: 1.7ms)
1723
+
1724
+
1725
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:34:51 -0600
1726
+ Processing by LandingController#index as HTML
1727
+ Rendered landing/index.html.erb within layouts/application (1.9ms)
1728
+ Completed 200 OK in 9ms (Views: 8.2ms)
1729
+
1730
+
1731
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:34:52 -0600
1732
+ Processing by LandingController#index as HTML
1733
+ Rendered landing/index.html.erb within layouts/application (0.6ms)
1734
+ Completed 200 OK in 3ms (Views: 2.0ms)
1735
+
1736
+
1737
+ Started GET "/" for 127.0.0.1 at 2012-04-30 15:34:52 -0600
1738
+ Processing by LandingController#index as HTML
1739
+ Rendered landing/index.html.erb within layouts/application (0.8ms)
1740
+ Completed 200 OK in 3ms (Views: 2.3ms)