active-component 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/active_component/base.rb +55 -0
  5. data/lib/active_component/context.rb +39 -0
  6. data/lib/active_component/railtie.rb +13 -0
  7. data/lib/active_component/renderable.rb +20 -0
  8. data/lib/active_component/version.rb +3 -0
  9. data/lib/active_component.rb +7 -0
  10. data/lib/generators/component_generator.rb +11 -0
  11. data/lib/generators/templates/application_component.rb +5 -0
  12. data/lib/generators/templates/component.rb +6 -0
  13. data/lib/tasks/active_component_tasks.rake +4 -0
  14. data/test/active_component/base_test.rb +30 -0
  15. data/test/active_component/context_test.rb +10 -0
  16. data/test/active_component/railtie_test.rb +9 -0
  17. data/test/active_component/renderable_test.rb +9 -0
  18. data/test/active_component_test.rb +9 -0
  19. data/test/dummy/README.rdoc +28 -0
  20. data/test/dummy/Rakefile +6 -0
  21. data/test/dummy/app/assets/javascripts/application.js +13 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  23. data/test/dummy/app/components/application_component.rb +5 -0
  24. data/test/dummy/app/components/dummy_component.rb +6 -0
  25. data/test/dummy/app/components/message_component.rb +10 -0
  26. data/test/dummy/app/controllers/application_controller.rb +5 -0
  27. data/test/dummy/app/helpers/application_helper.rb +2 -0
  28. data/test/dummy/app/templates/dummy_component.mustache +0 -0
  29. data/test/dummy/app/templates/message_component.mustache +1 -0
  30. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  31. data/test/dummy/bin/bundle +3 -0
  32. data/test/dummy/bin/rails +4 -0
  33. data/test/dummy/bin/rake +4 -0
  34. data/test/dummy/config/application.rb +23 -0
  35. data/test/dummy/config/boot.rb +5 -0
  36. data/test/dummy/config/database.yml +25 -0
  37. data/test/dummy/config/environment.rb +5 -0
  38. data/test/dummy/config/environments/development.rb +29 -0
  39. data/test/dummy/config/environments/production.rb +80 -0
  40. data/test/dummy/config/environments/test.rb +36 -0
  41. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  43. data/test/dummy/config/initializers/inflections.rb +16 -0
  44. data/test/dummy/config/initializers/mime_types.rb +5 -0
  45. data/test/dummy/config/initializers/secret_token.rb +12 -0
  46. data/test/dummy/config/initializers/session_store.rb +3 -0
  47. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy/config/locales/en.yml +23 -0
  49. data/test/dummy/config/routes.rb +3 -0
  50. data/test/dummy/config.ru +4 -0
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +726 -0
  54. data/test/dummy/log/test.log +360 -0
  55. data/test/dummy/public/404.html +58 -0
  56. data/test/dummy/public/422.html +58 -0
  57. data/test/dummy/public/500.html +57 -0
  58. data/test/dummy/public/favicon.ico +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/1c9faaf28d05409b88ad3113374d613c +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/2822de3b22c28bd5e718c9bf500457b2 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/a9f028f7a492b5907ed80268be8f50f4 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/b878faf942403e313a5b103e5d80488e +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/edbef6e0d0a4742346cf479f2c522eb0 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  71. data/test/generators/component_generator_test.rb +0 -0
  72. data/test/support/foo.rb +3 -0
  73. data/test/support/foo_controller.rb +4 -0
  74. data/test/test_helper.rb +17 -0
  75. metadata +251 -0
@@ -0,0 +1,726 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:04 -0500
4
+
5
+ AbstractController::ActionNotFound (The action 'index' could not be found for HomeController):
6
+ actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process'
7
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
8
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
9
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
10
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
11
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
12
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
13
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
14
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
15
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
16
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
17
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
18
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
19
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
23
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
24
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
25
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
26
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
27
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
28
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
29
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
30
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4485554534187823227__call__callbacks'
31
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
32
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
33
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
34
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
35
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
36
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
37
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
38
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
39
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
40
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
41
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
42
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
43
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
44
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
45
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
46
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
47
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
48
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
49
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
50
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
51
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
52
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
53
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
54
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
55
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
56
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
57
+
58
+
59
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (2.5ms)
60
+
61
+
62
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:22 -0500
63
+ Processing by HomeController#index as HTML
64
+ Completed 500 Internal Server Error in 2ms
65
+
66
+ ActionView::MissingTemplate (Missing template home/index, application/index with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
67
+ * "/Users/thenaox/work/active_component/test/dummy/app/views"
68
+ ):
69
+ actionpack (4.0.0) lib/action_view/path_set.rb:46:in `find'
70
+ actionpack (4.0.0) lib/action_view/lookup_context.rb:115:in `find'
71
+ actionpack (4.0.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
72
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:35:in `determine_template'
73
+ actionpack (4.0.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
74
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
75
+ actionpack (4.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
76
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:127:in `_render_template'
77
+ actionpack (4.0.0) lib/action_controller/metal/streaming.rb:219:in `_render_template'
78
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:120:in `render_to_body'
79
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:33:in `render_to_body'
80
+ actionpack (4.0.0) lib/action_controller/metal/renderers.rb:26:in `render_to_body'
81
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:97:in `render'
82
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:16:in `render'
83
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
84
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
85
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
86
+ activesupport (4.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
87
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
88
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
89
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
90
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
91
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
92
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
93
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
94
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
95
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
96
+ activesupport (4.0.0) lib/active_support/callbacks.rb:393:in `_run__1713696632798699266__process_action__callbacks'
97
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
98
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
99
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
100
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
101
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
102
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
103
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
104
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
105
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
106
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
107
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
108
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
109
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
110
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
111
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
112
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
113
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
114
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
115
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
116
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
117
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
118
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
119
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
120
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
121
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
122
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
123
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
124
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
125
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
126
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
127
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
128
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
129
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
130
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
131
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4485554534187823227__call__callbacks'
132
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
133
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
134
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
135
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
136
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
137
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
138
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
139
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
140
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
141
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
142
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
143
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
144
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
145
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
146
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
147
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
148
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
149
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
150
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
151
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
152
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
153
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
154
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
155
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
156
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
157
+ /Users/thenaox/.rvm/rubies/ruby-2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
158
+
159
+
160
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.6ms)
161
+
162
+
163
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:47 -0500
164
+ Processing by HomeController#index as HTML
165
+ Rendered home/index.html.erb within layouts/application (0.5ms)
166
+ Completed 200 OK in 128ms (Views: 127.4ms | ActiveRecord: 0.0ms)
167
+
168
+
169
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:47 -0500
170
+
171
+
172
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:47 -0500
173
+
174
+
175
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:47 -0500
176
+
177
+
178
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
179
+
180
+
181
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
182
+ Processing by HomeController#index as HTML
183
+ Rendered home/index.html.erb within layouts/application (0.1ms)
184
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
185
+
186
+
187
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
188
+
189
+
190
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
191
+
192
+
193
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
194
+
195
+
196
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:48 -0500
197
+
198
+
199
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
200
+ Processing by HomeController#index as HTML
201
+ Rendered home/index.html.erb within layouts/application (0.0ms)
202
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
203
+
204
+
205
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
206
+
207
+
208
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
209
+
210
+
211
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
212
+
213
+
214
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
215
+
216
+
217
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
218
+ Processing by HomeController#index as HTML
219
+ Rendered home/index.html.erb within layouts/application (0.1ms)
220
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
221
+
222
+
223
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
224
+
225
+
226
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
227
+
228
+
229
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
230
+
231
+
232
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:50:49 -0500
233
+
234
+
235
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:51:07 -0500
236
+ Processing by HomeController#index as HTML
237
+ Rendered home/index.html.erb within layouts/application (0.4ms)
238
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
239
+
240
+
241
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:51:07 -0500
242
+
243
+
244
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:51:07 -0500
245
+
246
+
247
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:51:07 -0500
248
+
249
+
250
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:51:07 -0500
251
+
252
+
253
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:51:59 -0500
254
+ Processing by HomeController#index as HTML
255
+ Rendered home/index.html.erb within layouts/application (2.0ms)
256
+ Completed 500 Internal Server Error in 4ms
257
+
258
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
259
+ 1: <h1> Hello world! </h1>
260
+ 2:
261
+ 3: <%= MessageComponent.new.render.html_safe %>
262
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099252945240'
263
+
264
+
265
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
266
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
267
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (16.1ms)
268
+
269
+
270
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:24 -0500
271
+ Processing by HomeController#index as HTML
272
+ Rendered home/index.html.erb within layouts/application (1.9ms)
273
+ Completed 500 Internal Server Error in 4ms
274
+
275
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
276
+ 1: <h1> Hello world! </h1>
277
+ 2:
278
+ 3: <%= MessageComponent.new %>
279
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
280
+
281
+
282
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
283
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
284
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.3ms)
285
+
286
+
287
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:24 -0500
288
+ Processing by HomeController#index as HTML
289
+ Rendered home/index.html.erb within layouts/application (2.8ms)
290
+ Completed 500 Internal Server Error in 5ms
291
+
292
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
293
+ 1: <h1> Hello world! </h1>
294
+ 2:
295
+ 3: <%= MessageComponent.new %>
296
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
297
+
298
+
299
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
300
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
301
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.3ms)
302
+
303
+
304
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:25 -0500
305
+ Processing by HomeController#index as HTML
306
+ Rendered home/index.html.erb within layouts/application (1.3ms)
307
+ Completed 500 Internal Server Error in 3ms
308
+
309
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
310
+ 1: <h1> Hello world! </h1>
311
+ 2:
312
+ 3: <%= MessageComponent.new %>
313
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
314
+
315
+
316
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
317
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
318
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.9ms)
319
+
320
+
321
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:25 -0500
322
+ Processing by HomeController#index as HTML
323
+ Rendered home/index.html.erb within layouts/application (1.4ms)
324
+ Completed 500 Internal Server Error in 3ms
325
+
326
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
327
+ 1: <h1> Hello world! </h1>
328
+ 2:
329
+ 3: <%= MessageComponent.new %>
330
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
331
+
332
+
333
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
334
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
335
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
336
+
337
+
338
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:25 -0500
339
+ Processing by HomeController#index as HTML
340
+ Rendered home/index.html.erb within layouts/application (1.4ms)
341
+ Completed 500 Internal Server Error in 4ms
342
+
343
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
344
+ 1: <h1> Hello world! </h1>
345
+ 2:
346
+ 3: <%= MessageComponent.new %>
347
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
348
+
349
+
350
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
351
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
352
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
353
+
354
+
355
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:25 -0500
356
+ Processing by HomeController#index as HTML
357
+ Rendered home/index.html.erb within layouts/application (1.4ms)
358
+ Completed 500 Internal Server Error in 3ms
359
+
360
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
361
+ 1: <h1> Hello world! </h1>
362
+ 2:
363
+ 3: <%= MessageComponent.new %>
364
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
365
+
366
+
367
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
368
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
369
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.7ms)
370
+
371
+
372
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:26 -0500
373
+ Processing by HomeController#index as HTML
374
+ Rendered home/index.html.erb within layouts/application (1.4ms)
375
+ Completed 500 Internal Server Error in 4ms
376
+
377
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
378
+ 1: <h1> Hello world! </h1>
379
+ 2:
380
+ 3: <%= MessageComponent.new %>
381
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099268672500'
382
+
383
+
384
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
385
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
386
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.5ms)
387
+
388
+
389
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:40 -0500
390
+ Processing by HomeController#index as HTML
391
+ Rendered home/index.html.erb within layouts/application (1.9ms)
392
+ Completed 500 Internal Server Error in 4ms
393
+
394
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
395
+ 1: <h1> Hello world! </h1>
396
+ 2:
397
+ 3: <%= MessageComponent.new.render.html_safe %>
398
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099252174660'
399
+
400
+
401
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
402
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
403
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
404
+
405
+
406
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:40 -0500
407
+ Processing by HomeController#index as HTML
408
+ Rendered home/index.html.erb within layouts/application (1.6ms)
409
+ Completed 500 Internal Server Error in 4ms
410
+
411
+ ActionView::Template::Error (uninitialized constant ActionView::CompiledTemplates::MessageComponent):
412
+ 1: <h1> Hello world! </h1>
413
+ 2:
414
+ 3: <%= MessageComponent.new.render.html_safe %>
415
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___3343772556453812522_70099252174660'
416
+
417
+
418
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
419
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
420
+ Rendered /Users/thenaox/.rvm/gems/ruby-2.0.0-p195/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.8ms)
421
+
422
+
423
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:52:56 -0500
424
+ Processing by HomeController#index as HTML
425
+ Rendered home/index.html.erb within layouts/application (102576.8ms)
426
+ Completed 200 OK in 102582ms (Views: 102581.6ms | ActiveRecord: 0.0ms)
427
+
428
+
429
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:54:39 -0500
430
+
431
+
432
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:54:39 -0500
433
+
434
+
435
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:54:39 -0500
436
+
437
+
438
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:54:39 -0500
439
+
440
+
441
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:56:14 -0500
442
+ Processing by HomeController#index as HTML
443
+ Rendered home/index.html.erb within layouts/application (8839.7ms)
444
+ Completed 200 OK in 8953ms (Views: 8952.9ms | ActiveRecord: 0.0ms)
445
+
446
+
447
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:23 -0500
448
+
449
+
450
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:23 -0500
451
+
452
+
453
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:23 -0500
454
+
455
+
456
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:23 -0500
457
+
458
+
459
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:56:49 -0500
460
+ Processing by HomeController#index as HTML
461
+ Rendered home/index.html.erb within layouts/application (1.8ms)
462
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
463
+
464
+
465
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:49 -0500
466
+
467
+
468
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:49 -0500
469
+
470
+
471
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:49 -0500
472
+
473
+
474
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:49 -0500
475
+
476
+
477
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:56:58 -0500
478
+ Processing by HomeController#index as HTML
479
+ Rendered home/index.html.erb within layouts/application (1.0ms)
480
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
481
+
482
+
483
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:58 -0500
484
+
485
+
486
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:56:58 -0500
487
+
488
+
489
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:58 -0500
490
+
491
+
492
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:56:58 -0500
493
+
494
+
495
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:03 -0500
496
+ Processing by HomeController#index as HTML
497
+ Rendered home/index.html.erb within layouts/application (0.6ms)
498
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
499
+
500
+
501
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:03 -0500
502
+
503
+
504
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:03 -0500
505
+
506
+
507
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:03 -0500
508
+
509
+
510
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:03 -0500
511
+
512
+
513
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
514
+ Processing by HomeController#index as HTML
515
+ Rendered home/index.html.erb within layouts/application (0.1ms)
516
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
517
+
518
+
519
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
520
+
521
+
522
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
523
+
524
+
525
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
526
+
527
+
528
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
529
+
530
+
531
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
532
+ Processing by HomeController#index as HTML
533
+ Rendered home/index.html.erb within layouts/application (0.1ms)
534
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
535
+
536
+
537
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
538
+
539
+
540
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
541
+
542
+
543
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
544
+
545
+
546
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
547
+
548
+
549
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
550
+ Processing by HomeController#index as HTML
551
+ Rendered home/index.html.erb within layouts/application (0.1ms)
552
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
553
+
554
+
555
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
556
+
557
+
558
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
559
+
560
+
561
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
562
+
563
+
564
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:20 -0500
565
+
566
+
567
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:22 -0500
568
+ Processing by HomeController#index as HTML
569
+ Rendered home/index.html.erb within layouts/application (3.0ms)
570
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
571
+
572
+
573
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
574
+
575
+
576
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
577
+
578
+
579
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
580
+
581
+
582
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
583
+
584
+
585
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
586
+ Processing by HomeController#index as HTML
587
+ Rendered home/index.html.erb within layouts/application (0.1ms)
588
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
589
+
590
+
591
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
592
+
593
+
594
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
595
+
596
+
597
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
598
+
599
+
600
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
601
+
602
+
603
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
604
+ Processing by HomeController#index as HTML
605
+ Rendered home/index.html.erb within layouts/application (0.1ms)
606
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
607
+
608
+
609
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
610
+
611
+
612
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
613
+
614
+
615
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
616
+
617
+
618
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:23 -0500
619
+
620
+
621
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
622
+ Processing by HomeController#index as HTML
623
+ Rendered home/index.html.erb within layouts/application (0.1ms)
624
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
625
+
626
+
627
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
628
+
629
+
630
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
631
+
632
+
633
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
634
+
635
+
636
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
637
+
638
+
639
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
640
+ Processing by HomeController#index as HTML
641
+ Rendered home/index.html.erb within layouts/application (0.1ms)
642
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
643
+
644
+
645
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
646
+
647
+
648
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
649
+
650
+
651
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
652
+
653
+
654
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
655
+
656
+
657
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
658
+ Processing by HomeController#index as HTML
659
+ Rendered home/index.html.erb within layouts/application (0.1ms)
660
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
661
+
662
+
663
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
664
+
665
+
666
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
667
+
668
+
669
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
670
+
671
+
672
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
673
+
674
+
675
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
676
+ Processing by HomeController#index as HTML
677
+ Rendered home/index.html.erb within layouts/application (0.1ms)
678
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
679
+
680
+
681
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
682
+
683
+
684
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
685
+
686
+
687
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
688
+
689
+
690
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
691
+
692
+
693
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
694
+ Processing by HomeController#index as HTML
695
+ Rendered home/index.html.erb within layouts/application (0.1ms)
696
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
697
+
698
+
699
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
700
+
701
+
702
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
703
+
704
+
705
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
706
+
707
+
708
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:57:32 -0500
709
+
710
+
711
+ Started GET "/" for 127.0.0.1 at 2013-10-03 16:58:00 -0500
712
+ Processing by HomeController#index as HTML
713
+ Rendered home/index.html.erb within layouts/application (3.2ms)
714
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
715
+
716
+
717
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-10-03 16:58:00 -0500
718
+
719
+
720
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-10-03 16:58:00 -0500
721
+
722
+
723
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-10-03 16:58:00 -0500
724
+
725
+
726
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-10-03 16:58:00 -0500