rails_dynamic_errors 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +31 -0
  4. data/app/controllers/rails_dynamic_errors/errors_controller.rb +52 -0
  5. data/app/views/rails_dynamic_errors/errors/show.html.erb +4 -0
  6. data/config/routes.rb +3 -0
  7. data/lib/engine_helper.rb +15 -0
  8. data/lib/generators/rails_dynamic_errors/install_generator.rb +38 -0
  9. data/lib/rails_dynamic_errors/engine.rb +32 -0
  10. data/lib/rails_dynamic_errors/middleware/dynamic_errors.rb +98 -0
  11. data/lib/rails_dynamic_errors/version.rb +4 -0
  12. data/lib/rails_dynamic_errors.rb +11 -0
  13. data/lib/tasks/rails_dynamic_errors_tasks.rake +4 -0
  14. data/spec/controllers/errors_controller_spec.rb +128 -0
  15. data/spec/dummy/README.rdoc +28 -0
  16. data/spec/dummy/Rakefile +6 -0
  17. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  18. data/spec/dummy/app/assets/javascripts/booms.js +2 -0
  19. data/spec/dummy/app/assets/javascripts/things.js +2 -0
  20. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  21. data/spec/dummy/app/assets/stylesheets/booms.css +4 -0
  22. data/spec/dummy/app/assets/stylesheets/scaffold.css +56 -0
  23. data/spec/dummy/app/assets/stylesheets/things.css +4 -0
  24. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  25. data/spec/dummy/app/controllers/booms_controller.rb +6 -0
  26. data/spec/dummy/app/controllers/things_controller.rb +58 -0
  27. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  28. data/spec/dummy/app/helpers/booms_helper.rb +2 -0
  29. data/spec/dummy/app/helpers/things_helper.rb +2 -0
  30. data/spec/dummy/app/models/thing.rb +2 -0
  31. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/spec/dummy/app/views/rails_dynamic_errors/errors/url_helpers.html.erb +2 -0
  33. data/spec/dummy/app/views/things/_form.html.erb +21 -0
  34. data/spec/dummy/app/views/things/edit.html.erb +6 -0
  35. data/spec/dummy/app/views/things/index.html.erb +27 -0
  36. data/spec/dummy/app/views/things/new.html.erb +5 -0
  37. data/spec/dummy/app/views/things/show.html.erb +9 -0
  38. data/spec/dummy/bin/bundle +3 -0
  39. data/spec/dummy/bin/rails +4 -0
  40. data/spec/dummy/bin/rake +4 -0
  41. data/spec/dummy/config/application.rb +43 -0
  42. data/spec/dummy/config/boot.rb +5 -0
  43. data/spec/dummy/config/database.yml +25 -0
  44. data/spec/dummy/config/environment.rb +5 -0
  45. data/spec/dummy/config/environments/development.rb +29 -0
  46. data/spec/dummy/config/environments/production.rb +80 -0
  47. data/spec/dummy/config/environments/test.rb +36 -0
  48. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  49. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  50. data/spec/dummy/config/initializers/inflections.rb +16 -0
  51. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  52. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  53. data/spec/dummy/config/initializers/session_store.rb +3 -0
  54. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  55. data/spec/dummy/config/locales/en.yml +23 -0
  56. data/spec/dummy/config/routes.rb +67 -0
  57. data/spec/dummy/config.ru +4 -0
  58. data/spec/dummy/db/development.sqlite3 +0 -0
  59. data/spec/dummy/db/migrate/20140620101702_create_things.rb +9 -0
  60. data/spec/dummy/db/production.sqlite3 +0 -0
  61. data/spec/dummy/db/schema.rb +22 -0
  62. data/spec/dummy/db/test.sqlite3 +0 -0
  63. data/spec/dummy/log/development.log +3309 -0
  64. data/spec/dummy/log/production.log +35 -0
  65. data/spec/dummy/log/test.log +30008 -0
  66. data/spec/dummy/public/404.html +58 -0
  67. data/spec/dummy/public/422.html +58 -0
  68. data/spec/dummy/public/500.html +57 -0
  69. data/spec/dummy/public/favicon.ico +0 -0
  70. data/spec/dummy/tmp/config/application.rb +11 -0
  71. data/spec/dummy/tmp/config/routes.rb +10 -0
  72. data/spec/features/application_link_helpers_spec.rb +14 -0
  73. data/spec/features/error_handling_spec.rb +167 -0
  74. data/spec/lib/generators/rails_dynamic_errors/install_generator_spec.rb +32 -0
  75. data/spec/lib/rails_dynamic_errors/engine_spec.rb +13 -0
  76. data/spec/lib/rails_dynamic_errors/middleware/dynamic_errors_spec.rb +171 -0
  77. data/spec/spec_helper.rb +43 -0
  78. data/spec/support/error.rb +19 -0
  79. data/spec/views/errors/show.html.erb_spec.rb +24 -0
  80. metadata +265 -0
@@ -0,0 +1,3309 @@
1
+
2
+
3
+ Started GET "/" for 192.168.56.1 at 2014-06-19 21:41:20 +0900
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.9ms)
6
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-19 21:45:13 +0900
10
+
11
+ ActionController::RoutingError (No route matches [GET] "/404"):
12
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
13
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
14
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
15
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
16
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
18
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
19
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
20
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
24
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
25
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
26
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
27
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
28
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
29
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
30
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
31
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
32
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
33
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
34
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
35
+
36
+
37
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
38
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
39
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (9.3ms)
40
+
41
+
42
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-19 21:45:49 +0900
43
+
44
+ ActionController::RoutingError (uninitialized constant ErrorsController):
45
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
46
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
47
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
48
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
49
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
50
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
51
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
52
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
53
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
54
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
55
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
56
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
57
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:48:in `generate_dynamic_error_page'
58
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:30:in `process_exception'
59
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:18:in `rescue in call'
60
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:11:in `call'
61
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
62
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
63
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
64
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
65
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
66
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
67
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
68
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
69
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
70
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
71
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
72
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
73
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__1653304076791416941__call__callbacks'
74
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
75
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
76
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
77
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
78
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
79
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
80
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
81
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
82
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
83
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
84
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
85
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
86
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
87
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
88
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
89
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
90
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
91
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
92
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
93
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
94
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
95
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
96
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
97
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
98
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
99
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
100
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
101
+
102
+
103
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
104
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
105
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
106
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.4ms)
107
+
108
+
109
+ Started GET "/" for 192.168.56.1 at 2014-06-20 11:37:26 +0900
110
+ Processing by Rails::WelcomeController#index as HTML
111
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
112
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
113
+
114
+
115
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:37:27 +0900
116
+
117
+ ActionController::RoutingError (uninitialized constant ErrorsController):
118
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
119
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
120
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
121
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
122
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
123
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
124
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
125
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
126
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
127
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
128
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
129
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
130
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
131
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
132
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
133
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
134
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
135
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
136
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
137
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
138
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
139
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
140
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
141
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
142
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
143
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
144
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
145
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
146
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__750266188385825635__call__callbacks'
147
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
148
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
149
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
150
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
151
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
152
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
153
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
154
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
155
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
156
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
157
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
158
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
159
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
160
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
161
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
162
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
163
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
164
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
165
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
166
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
167
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
168
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
169
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
170
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
171
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
172
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
173
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
174
+
175
+
176
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
177
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
178
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms)
179
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.4ms)
180
+
181
+
182
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:41:35 +0900
183
+
184
+ ActionController::RoutingError (uninitialized constant ErrorsController):
185
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
186
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
187
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
188
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
189
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
190
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
191
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
192
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
193
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
194
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
195
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
196
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
197
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
198
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
199
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
200
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
201
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
202
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
203
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
204
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
205
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
206
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
207
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
208
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
209
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
210
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
211
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
212
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
213
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3113928531474234121__call__callbacks'
214
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
215
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
216
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
217
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
218
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
219
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
220
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
221
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
222
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
223
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
224
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
225
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
226
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
227
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
228
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
229
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
230
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
231
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
232
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
233
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
234
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
235
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
236
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
237
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
238
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
239
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
240
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
241
+
242
+
243
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
244
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
245
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms)
246
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.6ms)
247
+
248
+
249
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:43:17 +0900
250
+
251
+ ActionController::RoutingError (uninitialized constant ErrorsController):
252
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
253
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
254
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
255
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
256
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
257
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
258
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
259
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
260
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
261
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
262
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
263
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
264
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
265
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
266
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
267
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
268
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
269
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
270
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
271
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
272
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
273
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
274
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
275
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
276
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
277
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
278
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
279
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
280
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__1512832510753449350__call__callbacks'
281
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
282
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
283
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
284
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
285
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
286
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
287
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
288
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
289
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
290
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
291
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
292
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
293
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
294
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
295
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
296
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
298
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
299
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
300
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
301
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
302
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
303
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
304
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
305
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
306
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
307
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
308
+
309
+
310
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
311
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
312
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
313
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.8ms)
314
+
315
+
316
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:44:42 +0900
317
+
318
+ ActionController::RoutingError (uninitialized constant ErrorsController):
319
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
320
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
321
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
322
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
323
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
324
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
325
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
326
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
327
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
328
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
329
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
330
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
331
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
332
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
333
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
334
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
335
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
336
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
337
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
338
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
339
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
340
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
341
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
342
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
343
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
344
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
345
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
346
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
347
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__1256751349085876654__call__callbacks'
348
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
349
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
350
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
351
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
352
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
353
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
354
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
355
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
356
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
357
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
358
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
359
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
360
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
361
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
362
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
363
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
364
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
365
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
366
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
367
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
368
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
369
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
370
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
371
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
372
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
373
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
374
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
375
+
376
+
377
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
378
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
379
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
380
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.2ms)
381
+
382
+
383
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:44:58 +0900
384
+
385
+ ActionController::RoutingError (uninitialized constant ErrorsController):
386
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
387
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
388
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
389
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
390
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
391
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
392
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
393
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
394
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
395
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
396
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
397
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
398
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
399
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
400
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
401
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
402
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
403
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
404
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
405
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
406
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
407
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
408
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
409
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
410
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
411
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
412
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
413
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
414
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__2478379988902414643__call__callbacks'
415
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
416
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
417
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
418
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
419
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
420
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
421
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
422
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
423
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
424
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
425
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
426
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
427
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
428
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
429
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
430
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
431
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
432
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
433
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
434
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
435
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
436
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
437
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
438
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
439
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
440
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
441
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
442
+
443
+
444
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
445
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
446
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
447
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.8ms)
448
+
449
+
450
+ Started GET "/" for 192.168.56.1 at 2014-06-20 11:54:42 +0900
451
+ Processing by Rails::WelcomeController#index as HTML
452
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.9ms)
453
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
454
+
455
+
456
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:54:44 +0900
457
+
458
+ ActionController::RoutingError (uninitialized constant ErrorsController):
459
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
460
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
461
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
462
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
463
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
464
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
465
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
466
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
467
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
468
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
469
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
470
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
471
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
472
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
473
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
474
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
475
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
476
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
477
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
478
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
479
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
480
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
481
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
482
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
483
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
484
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
485
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
486
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
487
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__2426429128386394965__call__callbacks'
488
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
489
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
490
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
491
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
492
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
493
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
494
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
495
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
496
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
497
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
498
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
499
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
500
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
501
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
502
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
503
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
504
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
505
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
506
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
507
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
508
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
509
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
510
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
511
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
512
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
513
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
514
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
515
+
516
+
517
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
518
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms)
519
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
520
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (17.8ms)
521
+
522
+
523
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:58:29 +0900
524
+
525
+ ActionController::RoutingError (uninitialized constant ErrorsController):
526
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
527
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
528
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
529
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
530
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
531
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
532
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
533
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
534
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
535
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
536
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
537
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
538
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
539
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
540
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
541
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
542
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
543
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
544
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
545
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
546
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
547
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
548
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
549
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
550
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
551
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
552
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
553
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
554
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3220580217626001046__call__callbacks'
555
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
556
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
557
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
558
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
559
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
560
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
561
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
562
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
563
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
564
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
565
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
566
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
567
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
568
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
569
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
570
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
571
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
572
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
573
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
574
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
575
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
576
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
577
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
578
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
579
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
580
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
581
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
582
+
583
+
584
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
585
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
586
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
587
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.1ms)
588
+
589
+
590
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:58:31 +0900
591
+
592
+ ActionController::RoutingError (uninitialized constant ErrorsController):
593
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `const_get'
594
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:226:in `block in constantize'
595
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
596
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
597
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
598
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
599
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
600
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
601
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
602
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
603
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
604
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
605
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:54:in `generate_dynamic_error_page'
606
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:36:in `process_exception'
607
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:20:in `rescue in call'
608
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
609
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
610
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
611
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
612
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
613
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
614
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
615
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
616
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
617
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
618
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
619
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
620
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
621
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3220580217626001046__call__callbacks'
622
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
623
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
624
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
625
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
626
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
627
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
628
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
629
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
630
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
631
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
632
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
633
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
634
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
635
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
636
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
637
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
638
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
639
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
640
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
641
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
642
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
643
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
644
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
645
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
646
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
647
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
648
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
649
+
650
+
651
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
652
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
653
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
654
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (8.8ms)
655
+
656
+
657
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 11:59:58 +0900
658
+
659
+ ActionController::RoutingError (No route matches [GET] "/errors/404"):
660
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
661
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
662
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
663
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
664
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
665
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
666
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
667
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
668
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
669
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
670
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
671
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
672
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
673
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
674
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
675
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
676
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
677
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
678
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
679
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
680
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
681
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
682
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
683
+
684
+
685
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
686
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
687
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
688
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.8ms)
689
+
690
+
691
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:12:06 +0900
692
+
693
+ ActionController::RoutingError (No route matches [GET] "/errors/404"):
694
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
695
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
696
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
697
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
698
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
699
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
700
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
701
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
702
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
703
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
704
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
705
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
706
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
707
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
708
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
709
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
710
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
711
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
712
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
713
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
714
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
715
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
716
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
717
+
718
+
719
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
720
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
721
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
722
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
723
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.1ms)
724
+
725
+
726
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:12:36 +0900
727
+
728
+ ActionController::RoutingError (uninitialized constant RailsDynamicErrors::RailsDynamicErrors):
729
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:241:in `const_get'
730
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:241:in `block in constantize'
731
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
732
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
733
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
734
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
735
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
736
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
737
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
738
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
739
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
740
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
741
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
742
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
743
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
744
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
745
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
746
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
747
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:53:in `generate_dynamic_error_page'
748
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:35:in `process_exception'
749
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:19:in `rescue in call'
750
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
751
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
752
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
753
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
754
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
755
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
756
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
757
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
758
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
759
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
760
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
761
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
762
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
763
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3515369486431382085__call__callbacks'
764
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
765
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
766
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
767
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
768
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
769
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
770
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
771
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
772
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
773
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
774
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
775
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
776
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
777
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
778
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
779
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
780
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
781
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
782
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
783
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
784
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
785
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
786
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
787
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
788
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
789
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
790
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
791
+
792
+
793
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
794
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
795
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
796
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.6ms)
797
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.4ms)
798
+
799
+
800
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:12:55 +0900
801
+
802
+ SyntaxError (/home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:8: syntax error, unexpected ',', expecting ':'
803
+ ...rrors", "layouts")) ? "errors", : "application"
804
+ ... ^):
805
+ activesupport (4.0.5) lib/active_support/dependencies.rb:424:in `load'
806
+ activesupport (4.0.5) lib/active_support/dependencies.rb:424:in `block in load_file'
807
+ activesupport (4.0.5) lib/active_support/dependencies.rb:616:in `new_constants_in'
808
+ activesupport (4.0.5) lib/active_support/dependencies.rb:423:in `load_file'
809
+ activesupport (4.0.5) lib/active_support/dependencies.rb:324:in `require_or_load'
810
+ activesupport (4.0.5) lib/active_support/dependencies.rb:463:in `load_missing_constant'
811
+ activesupport (4.0.5) lib/active_support/dependencies.rb:184:in `const_missing'
812
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:228:in `const_get'
813
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:228:in `block in constantize'
814
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `each'
815
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `inject'
816
+ activesupport (4.0.5) lib/active_support/inflector/methods.rb:224:in `constantize'
817
+ activesupport (4.0.5) lib/active_support/dependencies.rb:535:in `get'
818
+ activesupport (4.0.5) lib/active_support/dependencies.rb:566:in `constantize'
819
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
820
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:66:in `controller'
821
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:44:in `call'
822
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
823
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
824
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
825
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
826
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
827
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
828
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
829
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
830
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
831
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
832
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:53:in `generate_dynamic_error_page'
833
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:35:in `process_exception'
834
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:19:in `rescue in call'
835
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
836
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
837
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
838
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
839
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
840
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
841
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
842
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
843
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
844
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
845
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
846
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
847
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
848
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__686969000979000380__call__callbacks'
849
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
850
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
851
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
852
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
853
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
854
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
855
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
856
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
857
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
858
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
859
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
860
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
861
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
862
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
863
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
864
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
865
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
866
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
867
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
868
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
869
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
870
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
871
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
872
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
873
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
874
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
875
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
876
+
877
+
878
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.3ms)
879
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
880
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (11.8ms)
881
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.6ms)
882
+
883
+
884
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:14:30 +0900
885
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
886
+ Completed 500 Internal Server Error in 4ms
887
+
888
+ ActionView::MissingTemplate (Missing template rails_dynamic_errors/errors/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
889
+ * "/home/daniel/rails_dynamic_errors/spec/dummy/app/views"
890
+ * "/home/daniel/rails_dynamic_errors/app/views"
891
+ ):
892
+ actionpack (4.0.5) lib/action_view/path_set.rb:46:in `find'
893
+ actionpack (4.0.5) lib/action_view/lookup_context.rb:122:in `find'
894
+ actionpack (4.0.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
895
+ actionpack (4.0.5) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
896
+ actionpack (4.0.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
897
+ actionpack (4.0.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
898
+ actionpack (4.0.5) lib/action_view/renderer/renderer.rb:23:in `render'
899
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:127:in `_render_template'
900
+ actionpack (4.0.5) lib/action_controller/metal/streaming.rb:219:in `_render_template'
901
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:120:in `render_to_body'
902
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
903
+ actionpack (4.0.5) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
904
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:97:in `render'
905
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:16:in `render'
906
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
907
+ activesupport (4.0.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
908
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
909
+ activesupport (4.0.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
910
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
911
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
912
+ activerecord (4.0.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
913
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:40:in `render'
914
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:8:in `show'
915
+ actionpack (4.0.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
916
+ actionpack (4.0.5) lib/abstract_controller/base.rb:189:in `process_action'
917
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
918
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
919
+ activesupport (4.0.5) lib/active_support/callbacks.rb:383:in `_run__3723724232920506539__process_action__callbacks'
920
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
921
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:17:in `process_action'
922
+ actionpack (4.0.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
923
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
924
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `block in instrument'
925
+ activesupport (4.0.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
926
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `instrument'
927
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
928
+ actionpack (4.0.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
929
+ activerecord (4.0.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
930
+ actionpack (4.0.5) lib/abstract_controller/base.rb:136:in `process'
931
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:44:in `process'
932
+ actionpack (4.0.5) lib/action_controller/metal.rb:195:in `dispatch'
933
+ actionpack (4.0.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
934
+ actionpack (4.0.5) lib/action_controller/metal.rb:231:in `block in action'
935
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `call'
936
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
937
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:48:in `call'
938
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
939
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
940
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
941
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
942
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
943
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
944
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
945
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
946
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
947
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
948
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:53:in `generate_dynamic_error_page'
949
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:35:in `process_exception'
950
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:19:in `rescue in call'
951
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
952
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
953
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
954
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
955
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
956
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
957
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
958
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
959
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
960
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
961
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
962
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
963
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
964
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3242076012085132975__call__callbacks'
965
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
966
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
967
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
968
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
969
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
970
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
971
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
972
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
973
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
974
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
975
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
976
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
977
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
978
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
979
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
980
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
981
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
982
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
983
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
984
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
985
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
986
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
987
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
988
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
989
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
990
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
991
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
992
+
993
+
994
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
995
+
996
+
997
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:14:49 +0900
998
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
999
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.7ms)
1000
+ Completed 0 in 25ms (Views: 23.9ms | ActiveRecord: 0.0ms)
1001
+
1002
+
1003
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:14:49 +0900
1004
+
1005
+
1006
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:14:49 +0900
1007
+
1008
+
1009
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:14:51 +0900
1010
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1011
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.0ms)
1012
+ Completed 0 in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1013
+
1014
+
1015
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:14:51 +0900
1016
+
1017
+
1018
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:14:51 +0900
1019
+
1020
+
1021
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:15:19 +0900
1022
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1023
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1024
+ Completed 404 Not Found in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1025
+
1026
+
1027
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:15:19 +0900
1028
+
1029
+
1030
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:15:19 +0900
1031
+
1032
+
1033
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:31:58 +0900
1034
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1035
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1036
+ Completed 404 Not Found in 22ms (Views: 21.3ms | ActiveRecord: 0.0ms)
1037
+
1038
+
1039
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:31:59 +0900
1040
+
1041
+
1042
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:31:59 +0900
1043
+
1044
+
1045
+ Started GET "/" for 192.168.56.1 at 2014-06-20 12:32:01 +0900
1046
+ Processing by Rails::WelcomeController#index as HTML
1047
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.5ms)
1048
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1049
+
1050
+
1051
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:32:02 +0900
1052
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1053
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1054
+ Completed 404 Not Found in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1055
+
1056
+
1057
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:32:02 +0900
1058
+
1059
+
1060
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:32:02 +0900
1061
+
1062
+
1063
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:34:42 +0900
1064
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1065
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1066
+ Completed 404 Not Found in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
1067
+
1068
+
1069
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:34:42 +0900
1070
+
1071
+
1072
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:34:42 +0900
1073
+
1074
+
1075
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:34:43 +0900
1076
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1077
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1078
+ Completed 404 Not Found in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1079
+
1080
+
1081
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:34:43 +0900
1082
+
1083
+
1084
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:34:43 +0900
1085
+
1086
+
1087
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:37:29 +0900
1088
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1089
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1090
+ Completed 404 Not Found in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
1091
+
1092
+
1093
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:37:29 +0900
1094
+
1095
+
1096
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:37:29 +0900
1097
+
1098
+
1099
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:37:30 +0900
1100
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1101
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1102
+ Completed 404 Not Found in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1103
+
1104
+
1105
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:37:30 +0900
1106
+
1107
+
1108
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:37:30 +0900
1109
+
1110
+
1111
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:38:05 +0900
1112
+
1113
+ NoMethodError (undefined method `action' for RailsDynamicErrors::ErrorsController:Class):
1114
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1115
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:48:in `call'
1116
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
1117
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
1118
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
1119
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
1120
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1121
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
1122
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
1123
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
1124
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
1125
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
1126
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:53:in `generate_dynamic_error_page'
1127
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:35:in `process_exception'
1128
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:19:in `rescue in call'
1129
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1130
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1131
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1132
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1133
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1134
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1135
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1136
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1137
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1138
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1139
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1140
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1141
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1142
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__1214486669444999559__call__callbacks'
1143
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1144
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1145
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1146
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1147
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1148
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1149
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1150
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1151
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1152
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1153
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1154
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1155
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1156
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1157
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1158
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1159
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1160
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1161
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1162
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1163
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1164
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1165
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1166
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1167
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1168
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1169
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1170
+
1171
+
1172
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
1173
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.4ms)
1174
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (12.1ms)
1175
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.8ms)
1176
+
1177
+
1178
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:38:25 +0900
1179
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1180
+ Completed 500 Internal Server Error in 4ms
1181
+
1182
+ ActionView::MissingTemplate (Missing template rails_dynamic_errors/errors/nothing, application/nothing with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
1183
+ * "/home/daniel/rails_dynamic_errors/spec/dummy/app/views"
1184
+ * "/home/daniel/rails_dynamic_errors/app/views"
1185
+ ):
1186
+ app/controllers/errors_controller_decorator.rb:3:in `show'
1187
+
1188
+
1189
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
1190
+
1191
+
1192
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:44:52 +0900
1193
+
1194
+ ActionController::RoutingError (No route matches [GET] "/#<ActionDispatch::Journey::Path::Pattern:0x007fc4da0f0b30>/404"):
1195
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1196
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1197
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1198
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1199
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1200
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1201
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1202
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1203
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1204
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1205
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1206
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1207
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1208
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1209
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1210
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1211
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1212
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1213
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1214
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1215
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1216
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1217
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1218
+
1219
+
1220
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1221
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1222
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1223
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
1224
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.3ms)
1225
+
1226
+
1227
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:54:59 +0900
1228
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1229
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1230
+ Completed 404 Not Found in 21ms (Views: 19.8ms | ActiveRecord: 0.0ms)
1231
+
1232
+
1233
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:54:59 +0900
1234
+
1235
+
1236
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:54:59 +0900
1237
+
1238
+
1239
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:56:51 +0900
1240
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1241
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1242
+ Completed 0 in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1243
+
1244
+
1245
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:56:52 +0900
1246
+
1247
+
1248
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:56:52 +0900
1249
+
1250
+
1251
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:57:46 +0900
1252
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1253
+ Completed 500 Internal Server Error in 2ms
1254
+
1255
+ NameError (undefined local variable or method `path_prefix' for #<RailsDynamicErrors::ErrorsController:0x007fa20b8e3960>):
1256
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:25:in `get_status_code_from_path'
1257
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:21:in `status_code'
1258
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:17:in `template'
1259
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:8:in `show'
1260
+ actionpack (4.0.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1261
+ actionpack (4.0.5) lib/abstract_controller/base.rb:189:in `process_action'
1262
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
1263
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
1264
+ activesupport (4.0.5) lib/active_support/callbacks.rb:383:in `_run__3554300819163991651__process_action__callbacks'
1265
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1266
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:17:in `process_action'
1267
+ actionpack (4.0.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
1268
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1269
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `block in instrument'
1270
+ activesupport (4.0.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1271
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `instrument'
1272
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1273
+ actionpack (4.0.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1274
+ activerecord (4.0.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1275
+ actionpack (4.0.5) lib/abstract_controller/base.rb:136:in `process'
1276
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:44:in `process'
1277
+ actionpack (4.0.5) lib/action_controller/metal.rb:195:in `dispatch'
1278
+ actionpack (4.0.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1279
+ actionpack (4.0.5) lib/action_controller/metal.rb:231:in `block in action'
1280
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `call'
1281
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
1282
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:48:in `call'
1283
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
1284
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
1285
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
1286
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
1287
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1288
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
1289
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
1290
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
1291
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
1292
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
1293
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:53:in `generate_dynamic_error_page'
1294
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:35:in `process_exception'
1295
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:19:in `rescue in call'
1296
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1297
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1298
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1299
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1300
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1301
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1302
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1303
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1304
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1305
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1306
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1307
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1308
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1309
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__2376735955211535666__call__callbacks'
1310
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1311
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1312
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1313
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1314
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1315
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1316
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1317
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1318
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1319
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1320
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1321
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1322
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1323
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1324
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1325
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1326
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1327
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1328
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1329
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1330
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1331
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1332
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1333
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1334
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1335
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1336
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1337
+
1338
+
1339
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
1340
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1341
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
1342
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.0ms)
1343
+
1344
+
1345
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:57:57 +0900
1346
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1347
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1348
+ Completed 0 in 3ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1349
+
1350
+
1351
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:57:57 +0900
1352
+
1353
+
1354
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:57:57 +0900
1355
+
1356
+
1357
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:58:51 +0900
1358
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1359
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1360
+ Completed 0 in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1361
+
1362
+
1363
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:58:51 +0900
1364
+
1365
+
1366
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:58:51 +0900
1367
+
1368
+
1369
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 12:59:02 +0900
1370
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1371
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.7ms)
1372
+ Completed 0 in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
1373
+
1374
+
1375
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 12:59:02 +0900
1376
+
1377
+
1378
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 12:59:02 +0900
1379
+
1380
+
1381
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:00:07 +0900
1382
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1383
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (1.1ms)
1384
+ Completed 0 in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
1385
+
1386
+
1387
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:00:08 +0900
1388
+
1389
+
1390
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:00:08 +0900
1391
+
1392
+
1393
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:01:24 +0900
1394
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1395
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1396
+ Completed 404 Not Found in 21ms (Views: 20.1ms | ActiveRecord: 0.0ms)
1397
+
1398
+
1399
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:01:25 +0900
1400
+
1401
+
1402
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:01:25 +0900
1403
+
1404
+
1405
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:03:07 +0900
1406
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1407
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.3ms)
1408
+ Completed 404 Not Found in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1409
+
1410
+
1411
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:03:07 +0900
1412
+
1413
+
1414
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:03:07 +0900
1415
+
1416
+
1417
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:03:08 +0900
1418
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1419
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1420
+ Completed 404 Not Found in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1421
+
1422
+
1423
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:03:08 +0900
1424
+
1425
+
1426
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:03:08 +0900
1427
+
1428
+
1429
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:04:02 +0900
1430
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1431
+ Rendered rails_dynamic_errors/errors/show.html.erb within layouts/application (0.3ms)
1432
+ Completed 404 Not Found in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1433
+
1434
+
1435
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:04:03 +0900
1436
+
1437
+
1438
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:04:03 +0900
1439
+
1440
+
1441
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:04:47 +0900
1442
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1443
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1444
+ Completed 404 Not Found in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1445
+
1446
+
1447
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:04:48 +0900
1448
+
1449
+
1450
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:04:48 +0900
1451
+
1452
+
1453
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:08:44 +0900
1454
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1455
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
1456
+ Completed 404 Not Found in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1457
+
1458
+
1459
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:08:44 +0900
1460
+
1461
+
1462
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:08:44 +0900
1463
+
1464
+
1465
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:08:52 +0900
1466
+
1467
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1468
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1469
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1470
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1471
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1472
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1473
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1474
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1475
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1476
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1477
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1478
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1479
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1480
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1481
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__1492349172308238758__call__callbacks'
1482
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1483
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1484
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1485
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1486
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1487
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1488
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1489
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1490
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1491
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1492
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1493
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1494
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1495
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1496
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1497
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1498
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1499
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1500
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1501
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1502
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1503
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1504
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1505
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1506
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1507
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1508
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1509
+
1510
+
1511
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1512
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1513
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1514
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.6ms)
1515
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.0ms)
1516
+
1517
+
1518
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:11:21 +0900
1519
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1520
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1521
+ Completed 404 Not Found in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
1522
+
1523
+
1524
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:11:22 +0900
1525
+
1526
+
1527
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:11:22 +0900
1528
+
1529
+
1530
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:20:38 +0900
1531
+
1532
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1533
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1534
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1535
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1536
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1537
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1538
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1539
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1540
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1541
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1542
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1543
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1544
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1545
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1546
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__2978864973353547075__call__callbacks'
1547
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1548
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1549
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1550
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1551
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1552
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1553
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1554
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1555
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1556
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1557
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1558
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1559
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1560
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1561
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1562
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1563
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1564
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1565
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1566
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1567
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1568
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1569
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1570
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1571
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1572
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1573
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1574
+
1575
+
1576
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1577
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1578
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1579
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
1580
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.2ms)
1581
+
1582
+
1583
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:21:25 +0900
1584
+
1585
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1586
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1587
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1588
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1589
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1590
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1591
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1592
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1593
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1594
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1595
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1596
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1597
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1598
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1599
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__3724862528491200408__call__callbacks'
1600
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1601
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1602
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1603
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1604
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1605
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1606
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1607
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1608
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1609
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1610
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1611
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1612
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1613
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1614
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1615
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1616
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1617
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1618
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1619
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1620
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1621
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1622
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1623
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1624
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1625
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1626
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1627
+
1628
+
1629
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1630
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
1631
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1632
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
1633
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.3ms)
1634
+
1635
+
1636
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:22:42 +0900
1637
+
1638
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1639
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1640
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1641
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1642
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1643
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1644
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1645
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1646
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1647
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1648
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1649
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1650
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1651
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1652
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__672196328791015573__call__callbacks'
1653
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1654
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1655
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1656
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1657
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1658
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1659
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1660
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1661
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1662
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1663
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1664
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1665
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1666
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1667
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1668
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1669
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1670
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1671
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1672
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1673
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1674
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1675
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1676
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1677
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1678
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1679
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1680
+
1681
+
1682
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
1683
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
1684
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1685
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
1686
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.2ms)
1687
+
1688
+
1689
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:22:43 +0900
1690
+
1691
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1692
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1693
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1694
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1695
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1696
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1697
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1698
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1699
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1700
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1701
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1702
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1703
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1704
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1705
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__672196328791015573__call__callbacks'
1706
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1707
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1708
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1709
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1710
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1711
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1712
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1713
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1714
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1715
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1716
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1717
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1718
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1719
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1720
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1721
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1722
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1723
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1724
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1725
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1726
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1727
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1728
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1729
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1730
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1731
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1732
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1733
+
1734
+
1735
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1736
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
1737
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1738
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1739
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.8ms)
1740
+
1741
+
1742
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:23:15 +0900
1743
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1744
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.7ms)
1745
+ Completed 404 Not Found in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1746
+
1747
+
1748
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:23:15 +0900
1749
+
1750
+
1751
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:23:15 +0900
1752
+
1753
+
1754
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:23:26 +0900
1755
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1756
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1757
+ Completed 404 Not Found in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms)
1758
+
1759
+
1760
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:23:27 +0900
1761
+
1762
+
1763
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:23:27 +0900
1764
+
1765
+
1766
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:23:57 +0900
1767
+
1768
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1769
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1770
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1771
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1772
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1773
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1774
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1775
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1776
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1777
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1778
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1779
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1780
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1781
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1782
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__819077830121128560__call__callbacks'
1783
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1784
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1785
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1786
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1787
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1788
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1789
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1790
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1791
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1792
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1793
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1794
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1795
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1796
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1797
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1798
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1799
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1800
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1801
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1802
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1803
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1804
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1805
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1806
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1807
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1808
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1809
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1810
+
1811
+
1812
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1813
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
1814
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1815
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
1816
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.7ms)
1817
+
1818
+
1819
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:25:55 +0900
1820
+
1821
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1822
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:12:in `call'
1823
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1824
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1825
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1826
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1827
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
1828
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1829
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1830
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
1831
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
1832
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
1833
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
1834
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1835
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__819077830121128560__call__callbacks'
1836
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
1837
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1838
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1839
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1840
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1841
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1842
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1843
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1844
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1845
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1846
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1847
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1848
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1849
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1850
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1851
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1852
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1853
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1854
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1855
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1856
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1857
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1858
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1859
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1860
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1861
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1862
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1863
+
1864
+
1865
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1866
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
1867
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1868
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.6ms)
1869
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.4ms)
1870
+
1871
+
1872
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:25:59 +0900
1873
+
1874
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1875
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1876
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1877
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1878
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1879
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1880
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1881
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1882
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1883
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1884
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1885
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1886
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1887
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1888
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1889
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1890
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1891
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1892
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1893
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1894
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1895
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1896
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1897
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1898
+
1899
+
1900
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1901
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1902
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1903
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms)
1904
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.7ms)
1905
+
1906
+
1907
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:26:00 +0900
1908
+
1909
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1910
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1911
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1912
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1913
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1914
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1915
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1916
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1917
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1918
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1919
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1920
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1921
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1922
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1923
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1924
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1925
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1926
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1927
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1928
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1929
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1930
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1931
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1932
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1933
+
1934
+
1935
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
1936
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1937
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1938
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1939
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.3ms)
1940
+
1941
+
1942
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:26:01 +0900
1943
+
1944
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
1945
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1946
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1947
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
1948
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
1949
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1950
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
1951
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
1952
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
1953
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1954
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1955
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1956
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1957
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1958
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
1959
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1960
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
1961
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
1962
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1963
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1964
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1965
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1966
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1967
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1968
+
1969
+
1970
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
1971
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
1972
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
1973
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
1974
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.4ms)
1975
+
1976
+
1977
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:26:20 +0900
1978
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1979
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
1980
+ Completed 404 Not Found in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
1981
+
1982
+
1983
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:26:20 +0900
1984
+
1985
+
1986
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:26:20 +0900
1987
+
1988
+
1989
+ Started GET "/" for 192.168.56.1 at 2014-06-20 13:26:24 +0900
1990
+ Processing by Rails::WelcomeController#index as HTML
1991
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.9ms)
1992
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1993
+
1994
+
1995
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 13:26:26 +0900
1996
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
1997
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.3ms)
1998
+ Completed 404 Not Found in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1999
+
2000
+
2001
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 13:26:26 +0900
2002
+
2003
+
2004
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 13:26:26 +0900
2005
+
2006
+
2007
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:10:26 +0900
2008
+
2009
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2010
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2011
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2012
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2013
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2014
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2015
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2016
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2017
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2018
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2019
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2020
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2021
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2022
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2023
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2024
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2025
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2026
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2027
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2028
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2029
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2030
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2031
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2032
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2033
+
2034
+
2035
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2036
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
2037
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2038
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms)
2039
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.3ms)
2040
+
2041
+
2042
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:10:26 +0900
2043
+
2044
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2045
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2046
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2047
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2048
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2049
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2050
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2051
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2052
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2053
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2054
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2055
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2056
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2057
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2058
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2059
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2060
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2061
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2062
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2063
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2064
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2065
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2066
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2067
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2068
+
2069
+
2070
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2071
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2072
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2073
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
2074
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.4ms)
2075
+
2076
+
2077
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:12:07 +0900
2078
+
2079
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2080
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2081
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2082
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2083
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2084
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2085
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2086
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2087
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2088
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2089
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2090
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2091
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2092
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2093
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2094
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2095
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2096
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2097
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2098
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2099
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2100
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2101
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2102
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2103
+
2104
+
2105
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2106
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
2107
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2108
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
2109
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.4ms)
2110
+
2111
+
2112
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:12:09 +0900
2113
+
2114
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2115
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2116
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2117
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2118
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2119
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2120
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2121
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2122
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2123
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2124
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2125
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2126
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2127
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2128
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2129
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2130
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2131
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2132
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2133
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2134
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2135
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2136
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2137
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2138
+
2139
+
2140
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2141
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2142
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2143
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.6ms)
2144
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.1ms)
2145
+
2146
+
2147
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:12:17 +0900
2148
+
2149
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2150
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2151
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2152
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2153
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2154
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2155
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2156
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2157
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2158
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2159
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2160
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2161
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2162
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2163
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2164
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2165
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2166
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2167
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2168
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2169
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2170
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2171
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2172
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2173
+
2174
+
2175
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2176
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2177
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2178
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
2179
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.1ms)
2180
+
2181
+
2182
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:15:03 +0900
2183
+
2184
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2185
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2186
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2187
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2188
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2189
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2190
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2191
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2192
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2193
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2194
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2195
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2196
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2197
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2198
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2199
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2200
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2201
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2202
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2203
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2204
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2205
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2206
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2207
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2208
+
2209
+
2210
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2211
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2212
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2213
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms)
2214
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.6ms)
2215
+
2216
+
2217
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:15:31 +0900
2218
+
2219
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
2220
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2221
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2222
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2223
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2224
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2225
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2226
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2227
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2228
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2229
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2230
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2231
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2232
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2233
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2234
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2235
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2236
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2237
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2238
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2239
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2240
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2241
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2242
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2243
+
2244
+
2245
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2246
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
2247
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
2248
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
2249
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (9.8ms)
2250
+
2251
+
2252
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:15:34 +0900
2253
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2254
+ Parameters: {"code"=>"404"}
2255
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (1.2ms)
2256
+ Completed 404 Not Found in 21ms (Views: 19.9ms | ActiveRecord: 0.0ms)
2257
+
2258
+
2259
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:15:35 +0900
2260
+
2261
+
2262
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:15:35 +0900
2263
+
2264
+
2265
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:17:04 +0900
2266
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2267
+ Parameters: {"code"=>"404"}
2268
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.8ms)
2269
+ Completed 404 Not Found in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
2270
+
2271
+
2272
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:04 +0900
2273
+
2274
+
2275
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:04 +0900
2276
+
2277
+
2278
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 14:17:05 +0900
2279
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2280
+ Parameters: {"code"=>"404"}
2281
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2282
+ Completed 404 Not Found in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2283
+
2284
+
2285
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:05 +0900
2286
+
2287
+
2288
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:05 +0900
2289
+
2290
+
2291
+ Started GET "/errors/404" for 192.168.56.1 at 2014-06-20 14:17:08 +0900
2292
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2293
+ Parameters: {"code"=>"404"}
2294
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2295
+ Completed 404 Not Found in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2296
+
2297
+
2298
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:08 +0900
2299
+
2300
+
2301
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:08 +0900
2302
+
2303
+
2304
+ Started GET "/errors/1111" for 192.168.56.1 at 2014-06-20 14:17:10 +0900
2305
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2306
+ Parameters: {"code"=>"1111"}
2307
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2308
+ Completed 1111 in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2309
+
2310
+
2311
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:11 +0900
2312
+
2313
+
2314
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:11 +0900
2315
+
2316
+
2317
+ Started GET "/errors/404" for 192.168.56.1 at 2014-06-20 14:17:13 +0900
2318
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2319
+ Parameters: {"code"=>"404"}
2320
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2321
+ Completed 404 Not Found in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2322
+
2323
+
2324
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:13 +0900
2325
+
2326
+
2327
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:13 +0900
2328
+
2329
+
2330
+ Started GET "/errors" for 192.168.56.1 at 2014-06-20 14:17:16 +0900
2331
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2332
+ Parameters: {"code"=>"404"}
2333
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2334
+ Completed 404 Not Found in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2335
+
2336
+
2337
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 14:17:16 +0900
2338
+
2339
+
2340
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 14:17:16 +0900
2341
+
2342
+
2343
+ Started GET "/" for 192.168.56.1 at 2014-06-20 15:15:44 +0900
2344
+ Processing by Rails::WelcomeController#index as HTML
2345
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.9ms)
2346
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2347
+
2348
+
2349
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 15:15:45 +0900
2350
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2351
+ Parameters: {"code"=>"404"}
2352
+ Completed 500 Internal Server Error in 3ms
2353
+
2354
+ ActionView::MissingTemplate (Missing template rails_dynamic_errors/errors/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
2355
+ * "/home/daniel/rails_dynamic_errors/spec/dummy/app/views"
2356
+ * "/home/daniel/rails_dynamic_errors/app/views"
2357
+ ):
2358
+ actionpack (4.0.5) lib/action_view/path_set.rb:46:in `find'
2359
+ actionpack (4.0.5) lib/action_view/lookup_context.rb:122:in `find'
2360
+ actionpack (4.0.5) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
2361
+ actionpack (4.0.5) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
2362
+ actionpack (4.0.5) lib/action_view/renderer/template_renderer.rb:8:in `render'
2363
+ actionpack (4.0.5) lib/action_view/renderer/renderer.rb:42:in `render_template'
2364
+ actionpack (4.0.5) lib/action_view/renderer/renderer.rb:23:in `render'
2365
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:127:in `_render_template'
2366
+ actionpack (4.0.5) lib/action_controller/metal/streaming.rb:219:in `_render_template'
2367
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:120:in `render_to_body'
2368
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
2369
+ actionpack (4.0.5) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
2370
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:97:in `render'
2371
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:16:in `render'
2372
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2373
+ activesupport (4.0.5) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2374
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
2375
+ activesupport (4.0.5) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2376
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2377
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2378
+ activerecord (4.0.5) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2379
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:40:in `render'
2380
+ /home/daniel/rails_dynamic_errors/app/controllers/rails_dynamic_errors/errors_controller.rb:11:in `show'
2381
+ actionpack (4.0.5) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2382
+ actionpack (4.0.5) lib/abstract_controller/base.rb:189:in `process_action'
2383
+ actionpack (4.0.5) lib/action_controller/metal/rendering.rb:10:in `process_action'
2384
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2385
+ activesupport (4.0.5) lib/active_support/callbacks.rb:383:in `_run__3004337782246311790__process_action__callbacks'
2386
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
2387
+ actionpack (4.0.5) lib/abstract_controller/callbacks.rb:17:in `process_action'
2388
+ actionpack (4.0.5) lib/action_controller/metal/rescue.rb:29:in `process_action'
2389
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2390
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `block in instrument'
2391
+ activesupport (4.0.5) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2392
+ activesupport (4.0.5) lib/active_support/notifications.rb:159:in `instrument'
2393
+ actionpack (4.0.5) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2394
+ actionpack (4.0.5) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2395
+ activerecord (4.0.5) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2396
+ actionpack (4.0.5) lib/abstract_controller/base.rb:136:in `process'
2397
+ actionpack (4.0.5) lib/abstract_controller/rendering.rb:44:in `process'
2398
+ actionpack (4.0.5) lib/action_controller/metal.rb:195:in `dispatch'
2399
+ actionpack (4.0.5) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2400
+ actionpack (4.0.5) lib/action_controller/metal.rb:231:in `block in action'
2401
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `call'
2402
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2403
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:48:in `call'
2404
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
2405
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
2406
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
2407
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
2408
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2409
+ railties (4.0.5) lib/rails/railtie/configurable.rb:30:in `method_missing'
2410
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:71:in `block in call'
2411
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `each'
2412
+ actionpack (4.0.5) lib/action_dispatch/journey/router.rb:59:in `call'
2413
+ actionpack (4.0.5) lib/action_dispatch/routing/route_set.rb:674:in `call'
2414
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:59:in `generate_dynamic_error_page'
2415
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:41:in `process_exception'
2416
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:21:in `rescue in call'
2417
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:10:in `call'
2418
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2419
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2420
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2421
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2422
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
2423
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2424
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2425
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2426
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
2427
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2428
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
2429
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2430
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__735250744926696760__call__callbacks'
2431
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
2432
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2433
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2434
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2435
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2436
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2437
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2438
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2439
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2440
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2441
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2442
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2443
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2444
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2445
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2446
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2447
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2448
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2449
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2450
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2451
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2452
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2453
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2454
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2455
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2456
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2457
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2458
+
2459
+
2460
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
2461
+
2462
+
2463
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 15:16:18 +0900
2464
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2465
+ Parameters: {"code"=>"404"}
2466
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.2ms)
2467
+ Completed 404 Not Found in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms)
2468
+
2469
+
2470
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 15:16:18 +0900
2471
+
2472
+
2473
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 15:16:18 +0900
2474
+
2475
+
2476
+ Started GET "/errors/404" for 192.168.56.1 at 2014-06-20 15:23:12 +0900
2477
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2478
+ Parameters: {"code"=>"404"}
2479
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2480
+ Completed 404 Not Found in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2481
+
2482
+
2483
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 15:23:13 +0900
2484
+
2485
+
2486
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 15:23:13 +0900
2487
+
2488
+
2489
+ Started GET "/errors/aaaa" for 192.168.56.1 at 2014-06-20 15:23:16 +0900
2490
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2491
+ Parameters: {"code"=>"aaaa"}
2492
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2493
+ Completed 0 in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2494
+
2495
+
2496
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 15:23:17 +0900
2497
+
2498
+
2499
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 15:23:17 +0900
2500
+
2501
+
2502
+ Started GET "/errors/%3Ca%20href=%22%22%3E" for 192.168.56.1 at 2014-06-20 15:23:23 +0900
2503
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2504
+ Parameters: {"code"=>"<a href=\"\">"}
2505
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.2ms)
2506
+ Completed 0 in 4ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2507
+
2508
+
2509
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 15:23:24 +0900
2510
+
2511
+
2512
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 15:23:24 +0900
2513
+
2514
+
2515
+ Started GET "/errors" for 192.168.56.1 at 2014-06-20 15:24:34 +0900
2516
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2517
+ Parameters: {"code"=>"404"}
2518
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2519
+ Completed 404 Not Found in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2520
+
2521
+
2522
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 15:24:34 +0900
2523
+
2524
+
2525
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 15:24:34 +0900
2526
+
2527
+
2528
+ Started GET "/" for 192.168.56.1 at 2014-06-20 18:02:56 +0900
2529
+ Processing by Rails::WelcomeController#index as HTML
2530
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.7ms)
2531
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
2532
+
2533
+ NameError (undefined local variable or method `codes_to_handle' for #<RailsDynamicErrors::DynamicErrors:0x007f29b03220e0>):
2534
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:27:in `catch_not_found_error?'
2535
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:16:in `call'
2536
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2537
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2538
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2539
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2540
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
2541
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2542
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2543
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2544
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
2545
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2546
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
2547
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2548
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__851383156348200306__call__callbacks'
2549
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
2550
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2551
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2552
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2553
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2554
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2555
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2556
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2557
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2558
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2559
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2560
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2561
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2562
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2563
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2564
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2565
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2566
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2567
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2568
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2569
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2570
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2571
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2572
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2573
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2574
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2575
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2576
+
2577
+
2578
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
2579
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
2580
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (13.1ms)
2581
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.9ms)
2582
+
2583
+
2584
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 18:02:58 +0900
2585
+
2586
+ NameError (undefined local variable or method `codes_to_handle' for #<RailsDynamicErrors::DynamicErrors:0x007f29b03220e0>):
2587
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:27:in `catch_not_found_error?'
2588
+ /home/daniel/rails_dynamic_errors/lib/rails_dynamic_errors/middleware/dynamic_errors.rb:16:in `call'
2589
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2590
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2591
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2592
+ actionpack (4.0.5) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2593
+ actionpack (4.0.5) lib/action_dispatch/middleware/flash.rb:241:in `call'
2594
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2595
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2596
+ actionpack (4.0.5) lib/action_dispatch/middleware/cookies.rb:486:in `call'
2597
+ activerecord (4.0.5) lib/active_record/query_cache.rb:36:in `call'
2598
+ activerecord (4.0.5) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
2599
+ activerecord (4.0.5) lib/active_record/migration.rb:373:in `call'
2600
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2601
+ activesupport (4.0.5) lib/active_support/callbacks.rb:373:in `_run__851383156348200306__call__callbacks'
2602
+ activesupport (4.0.5) lib/active_support/callbacks.rb:80:in `run_callbacks'
2603
+ actionpack (4.0.5) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2604
+ actionpack (4.0.5) lib/action_dispatch/middleware/reloader.rb:64:in `call'
2605
+ actionpack (4.0.5) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2606
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2607
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2608
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
2609
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
2610
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2611
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
2612
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
2613
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
2614
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2615
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2616
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2617
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
2618
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2619
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
2620
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2621
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
2622
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
2623
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2624
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2625
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2626
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2627
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2628
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2629
+
2630
+
2631
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
2632
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
2633
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2634
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
2635
+
2636
+
2637
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 18:03:22 +0900
2638
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2639
+ Parameters: {"code"=>"404"}
2640
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.9ms)
2641
+ Completed 404 Not Found in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms)
2642
+
2643
+
2644
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 18:03:22 +0900
2645
+
2646
+
2647
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 18:03:22 +0900
2648
+
2649
+
2650
+ Started GET "/" for 192.168.56.1 at 2014-06-20 18:03:24 +0900
2651
+ Processing by Rails::WelcomeController#index as HTML
2652
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.6ms)
2653
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
2654
+
2655
+
2656
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-20 18:03:29 +0900
2657
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2658
+ Parameters: {"code"=>"404"}
2659
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (0.1ms)
2660
+ Completed 404 Not Found in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2661
+
2662
+
2663
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 18:03:29 +0900
2664
+
2665
+
2666
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 18:03:29 +0900
2667
+  (565.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2668
+  (3.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2669
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2670
+ Migrating to CreateThings (20140620101702)
2671
+  (0.0ms) begin transaction
2672
+  (0.2ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
2673
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140620101702"]]
2674
+  (19.0ms) commit transaction
2675
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2676
+  (442.1ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
2677
+  (3.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
2678
+  (4.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2679
+  (0.1ms) SELECT version FROM "schema_migrations"
2680
+  (2.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620101702')
2681
+
2682
+
2683
+ Started GET "/booms/1" for 192.168.56.1 at 2014-06-20 19:26:42 +0900
2684
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2685
+ Processing by BoomsController#show as HTML
2686
+ Parameters: {"id"=>"1"}
2687
+ Completed 500 Internal Server Error in 0ms
2688
+
2689
+ Exception (Oh no!):
2690
+ app/controllers/booms_controller.rb:3:in `show'
2691
+
2692
+
2693
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
2694
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
2695
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (11.9ms)
2696
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.8ms)
2697
+
2698
+
2699
+ Started GET "/things/1" for 192.168.56.1 at 2014-06-20 19:32:46 +0900
2700
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2701
+ Processing by ThingsController#show as HTML
2702
+ Parameters: {"id"=>"1"}
2703
+ Thing Load (0.1ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "1"]]
2704
+ Completed 404 Not Found in 3ms
2705
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
2706
+ Parameters: {"id"=>"1"}
2707
+ Rendered /home/daniel/rails_dynamic_errors/app/views/rails_dynamic_errors/errors/show.html.erb within layouts/application (1.3ms)
2708
+ Completed 404 Not Found in 44ms (Views: 42.7ms | ActiveRecord: 0.0ms)
2709
+
2710
+
2711
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2712
+
2713
+
2714
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2715
+
2716
+
2717
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2718
+
2719
+
2720
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2721
+
2722
+
2723
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2724
+
2725
+
2726
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2727
+
2728
+
2729
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:47 +0900
2730
+
2731
+
2732
+ Started GET "/things" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2733
+ Processing by ThingsController#index as HTML
2734
+ Thing Load (0.1ms) SELECT "things".* FROM "things"
2735
+ Rendered things/index.html.erb within layouts/application (0.9ms)
2736
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.1ms)
2737
+
2738
+
2739
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2740
+
2741
+
2742
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2743
+
2744
+
2745
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2746
+
2747
+
2748
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2749
+
2750
+
2751
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2752
+
2753
+
2754
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2755
+
2756
+
2757
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:53 +0900
2758
+
2759
+
2760
+ Started GET "/things/new" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2761
+ Processing by ThingsController#new as HTML
2762
+ Rendered things/_form.html.erb (10.0ms)
2763
+ Rendered things/new.html.erb within layouts/application (12.6ms)
2764
+ Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms)
2765
+
2766
+
2767
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2768
+
2769
+
2770
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2771
+
2772
+
2773
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2774
+
2775
+
2776
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2777
+
2778
+
2779
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2780
+
2781
+
2782
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2783
+
2784
+
2785
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:54 +0900
2786
+
2787
+
2788
+ Started POST "/things" for 192.168.56.1 at 2014-06-20 19:32:55 +0900
2789
+ Processing by ThingsController#create as HTML
2790
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"u2ObMLDkbNWO3SWF0ZxmKZmBX2TpM1Oo2LlTAZCjxf0=", "thing"=>{"name"=>"aaa"}, "commit"=>"Create Thing"}
2791
+  (0.1ms) begin transaction
2792
+ SQL (2.3ms) INSERT INTO "things" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 20 Jun 2014 10:32:55 UTC +00:00], ["name", "aaa"], ["updated_at", Fri, 20 Jun 2014 10:32:55 UTC +00:00]]
2793
+  (14.8ms) commit transaction
2794
+ Redirected to http://192.168.56.2:3000/things/1
2795
+ Completed 302 Found in 22ms (ActiveRecord: 17.2ms)
2796
+
2797
+
2798
+ Started GET "/things/1" for 192.168.56.1 at 2014-06-20 19:32:55 +0900
2799
+ Processing by ThingsController#show as HTML
2800
+ Parameters: {"id"=>"1"}
2801
+ Thing Load (0.2ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "1"]]
2802
+ Rendered things/show.html.erb within layouts/application (0.7ms)
2803
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2804
+
2805
+
2806
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2807
+
2808
+
2809
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2810
+
2811
+
2812
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2813
+
2814
+
2815
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2816
+
2817
+
2818
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2819
+
2820
+
2821
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2822
+
2823
+
2824
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:56 +0900
2825
+
2826
+
2827
+ Started GET "/things/1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2828
+ Processing by ThingsController#show as HTML
2829
+ Parameters: {"id"=>"1"}
2830
+ Thing Load (0.1ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "1"]]
2831
+ Rendered things/show.html.erb within layouts/application (0.5ms)
2832
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.1ms)
2833
+
2834
+
2835
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2836
+
2837
+
2838
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2839
+
2840
+
2841
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2842
+
2843
+
2844
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2845
+
2846
+
2847
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2848
+
2849
+
2850
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2851
+
2852
+
2853
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:32:58 +0900
2854
+
2855
+
2856
+ Started GET "/things" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2857
+ Processing by ThingsController#index as HTML
2858
+ Thing Load (0.1ms) SELECT "things".* FROM "things"
2859
+ Rendered things/index.html.erb within layouts/application (1.0ms)
2860
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
2861
+
2862
+
2863
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2864
+
2865
+
2866
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2867
+
2868
+
2869
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2870
+
2871
+
2872
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2873
+
2874
+
2875
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2876
+
2877
+
2878
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2879
+
2880
+
2881
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:18 +0900
2882
+
2883
+
2884
+ Started GET "/things/1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2885
+ Processing by ThingsController#show as HTML
2886
+ Parameters: {"id"=>"1"}
2887
+ Thing Load (0.2ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "1"]]
2888
+ Rendered things/show.html.erb within layouts/application (0.6ms)
2889
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.2ms)
2890
+
2891
+
2892
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2893
+
2894
+
2895
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2896
+
2897
+
2898
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2899
+
2900
+
2901
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2902
+
2903
+
2904
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2905
+
2906
+
2907
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2908
+
2909
+
2910
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:19 +0900
2911
+
2912
+
2913
+ Started GET "/" for 192.168.56.1 at 2014-06-20 19:33:23 +0900
2914
+ Processing by Rails::WelcomeController#index as HTML
2915
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (1.4ms)
2916
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2917
+
2918
+
2919
+ Started GET "/things" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2920
+ Processing by ThingsController#index as HTML
2921
+ Thing Load (0.1ms) SELECT "things".* FROM "things"
2922
+ Rendered things/index.html.erb within layouts/application (0.9ms)
2923
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
2924
+
2925
+
2926
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2927
+
2928
+
2929
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2930
+
2931
+
2932
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2933
+
2934
+
2935
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2936
+
2937
+
2938
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2939
+
2940
+
2941
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2942
+
2943
+
2944
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:25 +0900
2945
+
2946
+
2947
+ Started GET "/things/1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2948
+ Processing by ThingsController#show as HTML
2949
+ Parameters: {"id"=>"1"}
2950
+ Thing Load (0.1ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "1"]]
2951
+ Rendered things/show.html.erb within layouts/application (0.2ms)
2952
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
2953
+
2954
+
2955
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2956
+
2957
+
2958
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2959
+
2960
+
2961
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2962
+
2963
+
2964
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2965
+
2966
+
2967
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2968
+
2969
+
2970
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2971
+
2972
+
2973
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:27 +0900
2974
+
2975
+
2976
+ Started GET "/things" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2977
+ Processing by ThingsController#index as HTML
2978
+ Thing Load (0.1ms) SELECT "things".* FROM "things"
2979
+ Rendered things/index.html.erb within layouts/application (1.0ms)
2980
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
2981
+
2982
+
2983
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2984
+
2985
+
2986
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2987
+
2988
+
2989
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2990
+
2991
+
2992
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2993
+
2994
+
2995
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2996
+
2997
+
2998
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
2999
+
3000
+
3001
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 19:33:32 +0900
3002
+ Thing Load (0.6ms) SELECT "things".* FROM "things"
3003
+  (0.1ms) begin transaction
3004
+ SQL (1.9ms) DELETE FROM "things" WHERE "things"."id" = ? [["id", 1]]
3005
+  (28.9ms) commit transaction
3006
+  (390.4ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
3007
+  (3.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3008
+  (4.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3009
+  (0.1ms) SELECT version FROM "schema_migrations"
3010
+  (2.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140620101702')
3011
+
3012
+
3013
+ Started GET "/" for 192.168.56.1 at 2014-06-20 23:31:38 +0900
3014
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3015
+ Processing by Rails::WelcomeController#index as HTML
3016
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (0.9ms)
3017
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
3018
+
3019
+
3020
+ Started GET "/errors/url_helpers" for 192.168.56.1 at 2014-06-20 23:31:45 +0900
3021
+ Processing by RailsDynamicErrors::ErrorsController#show as HTML
3022
+ Parameters: {"code"=>"url_helpers"}
3023
+ Rendered rails_dynamic_errors/errors/url_helpers.html.erb within layouts/application (0.5ms)
3024
+ Completed 500 Internal Server Error in 65ms (Views: 61.6ms | ActiveRecord: 0.0ms)
3025
+
3026
+
3027
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3028
+
3029
+
3030
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3031
+
3032
+
3033
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3034
+
3035
+
3036
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3037
+
3038
+
3039
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3040
+
3041
+
3042
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3043
+
3044
+
3045
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-20 23:31:46 +0900
3046
+
3047
+
3048
+ Started GET "/things" for 192.168.56.1 at 2014-06-21 05:52:43 +0900
3049
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3050
+ Processing by ThingsController#index as HTML
3051
+ Thing Load (0.1ms) SELECT "things".* FROM "things"
3052
+ Rendered things/index.html.erb within layouts/application (1.8ms)
3053
+ Completed 200 OK in 61ms (Views: 59.9ms | ActiveRecord: 0.1ms)
3054
+
3055
+
3056
+ Started GET "/assets/scaffold.css?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3057
+
3058
+
3059
+ Started GET "/assets/booms.css?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3060
+
3061
+
3062
+ Started GET "/assets/application.css?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3063
+
3064
+
3065
+ Started GET "/assets/things.css?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3066
+
3067
+
3068
+ Started GET "/assets/application.js?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3069
+
3070
+
3071
+ Started GET "/assets/booms.js?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3072
+
3073
+
3074
+ Started GET "/assets/things.js?body=1" for 192.168.56.1 at 2014-06-21 05:52:44 +0900
3075
+
3076
+
3077
+ Started GET "/things/aaa" for 192.168.56.1 at 2014-06-21 05:52:46 +0900
3078
+ Processing by ThingsController#show as HTML
3079
+ Parameters: {"id"=>"aaa"}
3080
+ Thing Load (0.1ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", "aaa"]]
3081
+ Completed 404 Not Found in 3ms
3082
+
3083
+ ActiveRecord::RecordNotFound (Couldn't find Thing with id=aaa):
3084
+ app/controllers/things_controller.rb:51:in `set_thing'
3085
+
3086
+
3087
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
3088
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
3089
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
3090
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
3091
+
3092
+
3093
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 05:52:56 +0900
3094
+
3095
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3096
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3097
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3098
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3099
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3100
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3101
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3102
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3103
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3104
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3105
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3106
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3107
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3108
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3109
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3110
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3111
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3112
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3113
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3114
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3115
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3116
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3117
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3118
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3119
+
3120
+
3121
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
3122
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms)
3123
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3124
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms)
3125
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (24.5ms)
3126
+
3127
+
3128
+ Started GET "/" for 192.168.56.1 at 2014-06-21 06:39:09 +0900
3129
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3130
+ Processing by Rails::WelcomeController#index as HTML
3131
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/railties-4.0.5/lib/rails/templates/rails/welcome/index.html.erb (1.0ms)
3132
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
3133
+
3134
+
3135
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 06:39:11 +0900
3136
+
3137
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3138
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3139
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3140
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3141
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3142
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3143
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3144
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3145
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3146
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3147
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3148
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3149
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3150
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3151
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3152
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3153
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3154
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3155
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3156
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3157
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3158
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3159
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3160
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3161
+
3162
+
3163
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.5ms)
3164
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
3165
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3166
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms)
3167
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.6ms)
3168
+
3169
+
3170
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 06:40:31 +0900
3171
+
3172
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3173
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3174
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3175
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3176
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3177
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3178
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3179
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3180
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3181
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3182
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3183
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3184
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3185
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3186
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3187
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3188
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3189
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3190
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3191
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3192
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3193
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3194
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3195
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3196
+
3197
+
3198
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
3199
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
3200
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3201
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
3202
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (14.6ms)
3203
+
3204
+
3205
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 06:40:35 +0900
3206
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3207
+
3208
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3209
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3210
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3211
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3212
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3213
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3214
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3215
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3216
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3217
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3218
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3219
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3220
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3221
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3222
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3223
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3224
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3225
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3226
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3227
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3228
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3229
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3230
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3231
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3232
+
3233
+
3234
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
3235
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
3236
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3237
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
3238
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (21.7ms)
3239
+
3240
+
3241
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 06:41:19 +0900
3242
+
3243
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3244
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3245
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3246
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3247
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3248
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3249
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3250
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3251
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3252
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3253
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3254
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3255
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3256
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3257
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3258
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3259
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3260
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3261
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3262
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3263
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3264
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3265
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3266
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3267
+
3268
+
3269
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
3270
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
3271
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
3272
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
3273
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.5ms)
3274
+
3275
+
3276
+ Started GET "/aaa" for 192.168.56.1 at 2014-06-21 06:42:51 +0900
3277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3278
+
3279
+ ActionController::RoutingError (No route matches [GET] "/aaa"):
3280
+ actionpack (4.0.5) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3281
+ actionpack (4.0.5) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3282
+ railties (4.0.5) lib/rails/rack/logger.rb:38:in `call_app'
3283
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `block in call'
3284
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3285
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:26:in `tagged'
3286
+ activesupport (4.0.5) lib/active_support/tagged_logging.rb:68:in `tagged'
3287
+ railties (4.0.5) lib/rails/rack/logger.rb:20:in `call'
3288
+ actionpack (4.0.5) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3289
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3290
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3291
+ activesupport (4.0.5) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
3292
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3293
+ actionpack (4.0.5) lib/action_dispatch/middleware/static.rb:64:in `call'
3294
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3295
+ railties (4.0.5) lib/rails/engine.rb:511:in `call'
3296
+ railties (4.0.5) lib/rails/application.rb:97:in `call'
3297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3298
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3299
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3300
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3301
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3302
+ /home/daniel/.rbenv/versions/2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3303
+
3304
+
3305
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.6ms)
3306
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms)
3307
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
3308
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms)
3309
+ Rendered /home/daniel/.rbenv/versions/2.1.0/lib/ruby/gems/2.1.0/gems/actionpack-4.0.5/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (23.5ms)