meta_tags 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (98) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +102 -0
  4. data/Rakefile +38 -0
  5. data/app/models/meta_tags/list.rb +14 -0
  6. data/db/migrate/20140114154410_create_meta_tags_list.rb +14 -0
  7. data/lib/generators/meta_tags/config/config_generator.rb +22 -0
  8. data/lib/generators/meta_tags/config/templates/initializer.rb +25 -0
  9. data/lib/meta_tags/container.rb +67 -0
  10. data/lib/meta_tags/controller.rb +130 -0
  11. data/lib/meta_tags/engine.rb +21 -0
  12. data/lib/meta_tags/meta_taggable.rb +21 -0
  13. data/lib/meta_tags/meta_taggable_macro.rb +15 -0
  14. data/lib/meta_tags/page_data_helper.rb +23 -0
  15. data/lib/meta_tags/tags/base.rb +50 -0
  16. data/lib/meta_tags/tags/description.rb +40 -0
  17. data/lib/meta_tags/tags/image.rb +23 -0
  18. data/lib/meta_tags/tags/keywords.rb +16 -0
  19. data/lib/meta_tags/tags/title.rb +44 -0
  20. data/lib/meta_tags/tags/url.rb +9 -0
  21. data/lib/meta_tags/version.rb +3 -0
  22. data/lib/meta_tags.rb +25 -0
  23. data/lib/tasks/meta_tags_tasks.rake +4 -0
  24. data/test/dummy/README.rdoc +261 -0
  25. data/test/dummy/Rakefile +7 -0
  26. data/test/dummy/app/assets/images/illustration.jpg +0 -0
  27. data/test/dummy/app/assets/javascripts/application.js +15 -0
  28. data/test/dummy/app/assets/javascripts/home.js +2 -0
  29. data/test/dummy/app/assets/javascripts/posts.js +2 -0
  30. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  31. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  32. data/test/dummy/app/assets/stylesheets/posts.css +4 -0
  33. data/test/dummy/app/controllers/application_controller.rb +12 -0
  34. data/test/dummy/app/controllers/home_controller.rb +5 -0
  35. data/test/dummy/app/controllers/posts_controller.rb +17 -0
  36. data/test/dummy/app/helpers/application_helper.rb +2 -0
  37. data/test/dummy/app/helpers/home_helper.rb +2 -0
  38. data/test/dummy/app/helpers/posts_helper.rb +2 -0
  39. data/test/dummy/app/models/post.rb +4 -0
  40. data/test/dummy/app/views/home/index.html.erb +2 -0
  41. data/test/dummy/app/views/layouts/application.html.erb +17 -0
  42. data/test/dummy/app/views/posts/filter.html.erb +2 -0
  43. data/test/dummy/app/views/posts/index.html.erb +5 -0
  44. data/test/dummy/app/views/posts/show.html.erb +2 -0
  45. data/test/dummy/config/application.rb +59 -0
  46. data/test/dummy/config/boot.rb +10 -0
  47. data/test/dummy/config/database.yml +25 -0
  48. data/test/dummy/config/environment.rb +5 -0
  49. data/test/dummy/config/environments/development.rb +37 -0
  50. data/test/dummy/config/environments/production.rb +67 -0
  51. data/test/dummy/config/environments/test.rb +37 -0
  52. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  53. data/test/dummy/config/initializers/inflections.rb +15 -0
  54. data/test/dummy/config/initializers/meta_tags.rb +13 -0
  55. data/test/dummy/config/initializers/mime_types.rb +5 -0
  56. data/test/dummy/config/initializers/secret_token.rb +7 -0
  57. data/test/dummy/config/initializers/session_store.rb +8 -0
  58. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/test/dummy/config/locales/en.yml +14 -0
  60. data/test/dummy/config/routes.rb +10 -0
  61. data/test/dummy/config.ru +4 -0
  62. data/test/dummy/db/development.sqlite3 +0 -0
  63. data/test/dummy/db/migrate/20130131104614_create_posts.rb +11 -0
  64. data/test/dummy/db/migrate/20130131104618_add_attachment_image_to_posts.rb +11 -0
  65. data/test/dummy/db/schema.rb +28 -0
  66. data/test/dummy/log/development.log +1506 -0
  67. data/test/dummy/public/404.html +26 -0
  68. data/test/dummy/public/422.html +26 -0
  69. data/test/dummy/public/500.html +25 -0
  70. data/test/dummy/public/favicon.ico +0 -0
  71. data/test/dummy/script/rails +6 -0
  72. data/test/dummy/test/fixtures/posts.yml +11 -0
  73. data/test/dummy/test/functional/home_controller_test.rb +9 -0
  74. data/test/dummy/test/functional/posts_controller_test.rb +19 -0
  75. data/test/dummy/test/unit/helpers/home_helper_test.rb +4 -0
  76. data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
  77. data/test/dummy/test/unit/post_test.rb +7 -0
  78. data/test/dummy/tmp/cache/assets/CC7/220/sprockets%2Fd066c004d1fd26ae76a61303a7a18145 +0 -0
  79. data/test/dummy/tmp/cache/assets/CD5/B70/sprockets%2F416150dc3ac35079c94273cc46e90aa6 +0 -0
  80. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  81. data/test/dummy/tmp/cache/assets/CDF/870/sprockets%2Fb878faf942403e313a5b103e5d80488e +0 -0
  82. data/test/dummy/tmp/cache/assets/CF9/7C0/sprockets%2F40fc2f3d2a468a00e463f1d313cb1683 +0 -0
  83. data/test/dummy/tmp/cache/assets/D05/D40/sprockets%2F1c9faaf28d05409b88ad3113374d613c +0 -0
  84. data/test/dummy/tmp/cache/assets/D1A/310/sprockets%2F5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  85. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  86. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  87. data/test/dummy/tmp/cache/assets/D5A/DB0/sprockets%2F8d018be37aba1bc45344022ac32de7f7 +0 -0
  88. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  89. data/test/dummy/tmp/cache/assets/D98/8B0/sprockets%2Fedbef6e0d0a4742346cf479f2c522eb0 +0 -0
  90. data/test/dummy/tmp/cache/assets/D9C/CD0/sprockets%2Fc85016e7bbd4f3adbb7635d01f85d39b +0 -0
  91. data/test/dummy/tmp/cache/assets/DA4/280/sprockets%2Fd35f8ce1156cdff20d6da32835de94d6 +0 -0
  92. data/test/dummy/tmp/cache/assets/DCF/E80/sprockets%2Fd1c75b2b7b92bf135ea57e2bc4d739ef +0 -0
  93. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  94. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  95. data/test/dummy/tmp/cache/assets/E10/A50/sprockets%2F3ceec61ba671c1fc8fec279989fb9d1d +0 -0
  96. data/test/meta_tags_test.rb +7 -0
  97. data/test/test_helper.rb +15 -0
  98. metadata +255 -0
@@ -0,0 +1,1506 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-01-31 10:43:37 +0100
4
+ Connecting to database specified by database.yml
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/"):
7
+ actionpack (3.2.11) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (3.2.11) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9
+ railties (3.2.11) lib/rails/rack/logger.rb:32:in `call_app'
10
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `block in call'
11
+ activesupport (3.2.11) lib/active_support/tagged_logging.rb:22:in `tagged'
12
+ railties (3.2.11) lib/rails/rack/logger.rb:16:in `call'
13
+ actionpack (3.2.11) lib/action_dispatch/middleware/request_id.rb:22:in `call'
14
+ rack (1.4.4) lib/rack/methodoverride.rb:21:in `call'
15
+ rack (1.4.4) lib/rack/runtime.rb:17:in `call'
16
+ activesupport (3.2.11) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
17
+ rack (1.4.4) lib/rack/lock.rb:15:in `call'
18
+ actionpack (3.2.11) lib/action_dispatch/middleware/static.rb:62:in `call'
19
+ railties (3.2.11) lib/rails/engine.rb:479:in `call'
20
+ railties (3.2.11) lib/rails/application.rb:223:in `call'
21
+ rack (1.4.4) lib/rack/content_length.rb:14:in `call'
22
+ railties (3.2.11) lib/rails/rack/log_tailer.rb:17:in `call'
23
+ rack (1.4.4) lib/rack/handler/webrick.rb:59:in `service'
24
+ /Users/vala/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
25
+ /Users/vala/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
26
+ /Users/vala/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
27
+
28
+
29
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.8ms)
30
+
31
+
32
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:13:48 +0100
33
+
34
+ ActionController::RoutingError (undefined method `meta_tags_defaults' for ApplicationController:Class):
35
+ app/controllers/application_controller.rb:8:in `<class:ApplicationController>'
36
+ app/controllers/application_controller.rb:1:in `<top (required)>'
37
+ app/controllers/home_controller.rb:1:in `<top (required)>'
38
+
39
+
40
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
41
+
42
+
43
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:14:40 +0100
44
+
45
+ ActionController::RoutingError (undefined method `meta_tags_defaults' for ApplicationController:Class):
46
+ app/controllers/application_controller.rb:8:in `<class:ApplicationController>'
47
+ app/controllers/application_controller.rb:1:in `<top (required)>'
48
+ app/controllers/home_controller.rb:1:in `<top (required)>'
49
+
50
+
51
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
52
+
53
+
54
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:14:41 +0100
55
+
56
+ ActionController::RoutingError (undefined method `meta_tags_defaults' for ApplicationController:Class):
57
+ app/controllers/application_controller.rb:8:in `<class:ApplicationController>'
58
+ app/controllers/application_controller.rb:1:in `<top (required)>'
59
+ app/controllers/home_controller.rb:1:in `<top (required)>'
60
+
61
+
62
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
63
+
64
+
65
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:14:42 +0100
66
+
67
+ ActionController::RoutingError (undefined method `meta_tags_defaults' for ApplicationController:Class):
68
+ app/controllers/application_controller.rb:8:in `<class:ApplicationController>'
69
+ app/controllers/application_controller.rb:1:in `<top (required)>'
70
+ app/controllers/home_controller.rb:1:in `<top (required)>'
71
+
72
+
73
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
74
+
75
+
76
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:16:28 +0100
77
+ Processing by HomeController#index as HTML
78
+ Rendered home/index.html.erb within layouts/application (0.3ms)
79
+ Completed 500 Internal Server Error in 48ms
80
+
81
+ ActionView::Template::Error (undefined local variable or method `meta_tags' for #<#<Class:0x00000100e33d10>:0x00000100e391e8>):
82
+ 1: <!DOCTYPE html>
83
+ 2: <html>
84
+ 3: <head>
85
+ 4: <%= meta_tags %>
86
+ 5:
87
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
88
+ 7: <%= javascript_include_tag "application" %>
89
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___4476819463037164085_2154950820'
90
+
91
+
92
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
93
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
94
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.8ms)
95
+
96
+
97
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:16:53 +0100
98
+ Connecting to database specified by database.yml
99
+ Processing by HomeController#index as HTML
100
+ Rendered home/index.html.erb within layouts/application (1.4ms)
101
+ Completed 500 Internal Server Error in 13ms
102
+
103
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
104
+ 1: <!DOCTYPE html>
105
+ 2: <html>
106
+ 3: <head>
107
+ 4: <%= meta_tags %>
108
+ 5:
109
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
110
+ 7: <%= javascript_include_tag "application" %>
111
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
112
+
113
+
114
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
115
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
116
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
117
+
118
+
119
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:56 +0100
120
+ Processing by HomeController#index as HTML
121
+ Rendered home/index.html.erb within layouts/application (0.0ms)
122
+ Completed 500 Internal Server Error in 2ms
123
+
124
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
125
+ 1: <!DOCTYPE html>
126
+ 2: <html>
127
+ 3: <head>
128
+ 4: <%= meta_tags %>
129
+ 5:
130
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
131
+ 7: <%= javascript_include_tag "application" %>
132
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
133
+
134
+
135
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (36.2ms)
136
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
137
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (42.2ms)
138
+
139
+
140
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:58 +0100
141
+ Processing by HomeController#index as HTML
142
+ Rendered home/index.html.erb within layouts/application (0.0ms)
143
+ Completed 500 Internal Server Error in 3ms
144
+
145
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
146
+ 1: <!DOCTYPE html>
147
+ 2: <html>
148
+ 3: <head>
149
+ 4: <%= meta_tags %>
150
+ 5:
151
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
152
+ 7: <%= javascript_include_tag "application" %>
153
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
154
+
155
+
156
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
157
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
158
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
159
+
160
+
161
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:58 +0100
162
+ Processing by HomeController#index as HTML
163
+ Rendered home/index.html.erb within layouts/application (0.0ms)
164
+ Completed 500 Internal Server Error in 3ms
165
+
166
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
167
+ 1: <!DOCTYPE html>
168
+ 2: <html>
169
+ 3: <head>
170
+ 4: <%= meta_tags %>
171
+ 5:
172
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
173
+ 7: <%= javascript_include_tag "application" %>
174
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
175
+
176
+
177
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
178
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
179
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.4ms)
180
+
181
+
182
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:58 +0100
183
+ Processing by HomeController#index as HTML
184
+ Rendered home/index.html.erb within layouts/application (0.1ms)
185
+ Completed 500 Internal Server Error in 3ms
186
+
187
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
188
+ 1: <!DOCTYPE html>
189
+ 2: <html>
190
+ 3: <head>
191
+ 4: <%= meta_tags %>
192
+ 5:
193
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
194
+ 7: <%= javascript_include_tag "application" %>
195
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
196
+
197
+
198
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
199
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
200
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
201
+
202
+
203
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:59 +0100
204
+ Processing by HomeController#index as HTML
205
+ Rendered home/index.html.erb within layouts/application (0.0ms)
206
+ Completed 500 Internal Server Error in 2ms
207
+
208
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
209
+ 1: <!DOCTYPE html>
210
+ 2: <html>
211
+ 3: <head>
212
+ 4: <%= meta_tags %>
213
+ 5:
214
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
215
+ 7: <%= javascript_include_tag "application" %>
216
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
217
+
218
+
219
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
220
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
221
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
222
+
223
+
224
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:59 +0100
225
+ Processing by HomeController#index as HTML
226
+ Rendered home/index.html.erb within layouts/application (0.1ms)
227
+ Completed 500 Internal Server Error in 3ms
228
+
229
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
230
+ 1: <!DOCTYPE html>
231
+ 2: <html>
232
+ 3: <head>
233
+ 4: <%= meta_tags %>
234
+ 5:
235
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
236
+ 7: <%= javascript_include_tag "application" %>
237
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
238
+
239
+
240
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
241
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
242
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
243
+
244
+
245
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:59 +0100
246
+ Processing by HomeController#index as HTML
247
+ Rendered home/index.html.erb within layouts/application (0.0ms)
248
+ Completed 500 Internal Server Error in 3ms
249
+
250
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
251
+ 1: <!DOCTYPE html>
252
+ 2: <html>
253
+ 3: <head>
254
+ 4: <%= meta_tags %>
255
+ 5:
256
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
257
+ 7: <%= javascript_include_tag "application" %>
258
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
259
+
260
+
261
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
262
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
263
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.9ms)
264
+
265
+
266
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:59 +0100
267
+ Processing by HomeController#index as HTML
268
+ Rendered home/index.html.erb within layouts/application (0.1ms)
269
+ Completed 500 Internal Server Error in 2ms
270
+
271
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
272
+ 1: <!DOCTYPE html>
273
+ 2: <html>
274
+ 3: <head>
275
+ 4: <%= meta_tags %>
276
+ 5:
277
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
278
+ 7: <%= javascript_include_tag "application" %>
279
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
280
+
281
+
282
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
283
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
284
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
285
+
286
+
287
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:18:59 +0100
288
+ Processing by HomeController#index as HTML
289
+ Rendered home/index.html.erb within layouts/application (0.1ms)
290
+ Completed 500 Internal Server Error in 3ms
291
+
292
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
293
+ 1: <!DOCTYPE html>
294
+ 2: <html>
295
+ 3: <head>
296
+ 4: <%= meta_tags %>
297
+ 5:
298
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
299
+ 7: <%= javascript_include_tag "application" %>
300
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
301
+
302
+
303
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
304
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
305
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
306
+
307
+
308
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:00 +0100
309
+ Processing by HomeController#index as HTML
310
+ Rendered home/index.html.erb within layouts/application (0.1ms)
311
+ Completed 500 Internal Server Error in 3ms
312
+
313
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
314
+ 1: <!DOCTYPE html>
315
+ 2: <html>
316
+ 3: <head>
317
+ 4: <%= meta_tags %>
318
+ 5:
319
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
320
+ 7: <%= javascript_include_tag "application" %>
321
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
322
+
323
+
324
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
325
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (39.4ms)
326
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (46.6ms)
327
+
328
+
329
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:00 +0100
330
+ Processing by HomeController#index as HTML
331
+ Rendered home/index.html.erb within layouts/application (0.0ms)
332
+ Completed 500 Internal Server Error in 3ms
333
+
334
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
335
+ 1: <!DOCTYPE html>
336
+ 2: <html>
337
+ 3: <head>
338
+ 4: <%= meta_tags %>
339
+ 5:
340
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
341
+ 7: <%= javascript_include_tag "application" %>
342
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
343
+
344
+
345
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
346
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
347
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
348
+
349
+
350
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:00 +0100
351
+ Processing by HomeController#index as HTML
352
+ Rendered home/index.html.erb within layouts/application (0.0ms)
353
+ Completed 500 Internal Server Error in 3ms
354
+
355
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
356
+ 1: <!DOCTYPE html>
357
+ 2: <html>
358
+ 3: <head>
359
+ 4: <%= meta_tags %>
360
+ 5:
361
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
362
+ 7: <%= javascript_include_tag "application" %>
363
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3435676141633744625_2166997540'
364
+
365
+
366
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
367
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
368
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
369
+
370
+
371
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:15 +0100
372
+ Connecting to database specified by database.yml
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 16ms
376
+
377
+ ActionView::Template::Error (uninitialized constant MetaTags::Controller::ClassMethods::Container):
378
+ 1: <!DOCTYPE html>
379
+ 2: <html>
380
+ 3: <head>
381
+ 4: <%= meta_tags %>
382
+ 5:
383
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
384
+ 7: <%= javascript_include_tag "application" %>
385
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___4527492643249530268_2174029980'
386
+
387
+
388
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
389
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
390
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.6ms)
391
+
392
+
393
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
394
+ Connecting to database specified by database.yml
395
+ Processing by HomeController#index as HTML
396
+ Rendered home/index.html.erb within layouts/application (2.3ms)
397
+ Compiled home.css (0ms) (pid 18057)
398
+ Compiled application.css (8ms) (pid 18057)
399
+ Compiled jquery.js (1ms) (pid 18057)
400
+ Compiled jquery_ujs.js (0ms) (pid 18057)
401
+ Compiled home.js (0ms) (pid 18057)
402
+ Compiled application.js (70ms) (pid 18057)
403
+ Completed 200 OK in 195ms (Views: 195.0ms | ActiveRecord: 0.0ms)
404
+
405
+
406
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
407
+ Served asset /application.css - 200 OK (3ms)
408
+
409
+
410
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
411
+ Served asset /home.css - 200 OK (4ms)
412
+
413
+
414
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
415
+ Served asset /jquery_ujs.js - 200 OK (1ms)
416
+
417
+
418
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
419
+ Served asset /jquery.js - 200 OK (2ms)
420
+
421
+
422
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
423
+ Served asset /home.js - 200 OK (1ms)
424
+
425
+
426
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:36 +0100
427
+ Served asset /application.js - 200 OK (6ms)
428
+
429
+
430
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
431
+ Processing by HomeController#index as HTML
432
+ Rendered home/index.html.erb within layouts/application (0.0ms)
433
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
434
+
435
+
436
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
437
+ Served asset /home.css - 304 Not Modified (0ms)
438
+
439
+
440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
441
+ Served asset /application.css - 304 Not Modified (0ms)
442
+
443
+
444
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
445
+ Served asset /jquery.js - 304 Not Modified (0ms)
446
+
447
+
448
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
449
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
450
+
451
+
452
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
453
+ Served asset /home.js - 304 Not Modified (0ms)
454
+
455
+
456
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:58 +0100
457
+ Served asset /application.js - 304 Not Modified (0ms)
458
+
459
+
460
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
461
+ Processing by HomeController#index as HTML
462
+ Rendered home/index.html.erb within layouts/application (0.0ms)
463
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
464
+
465
+
466
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
467
+ Served asset /application.css - 304 Not Modified (0ms)
468
+
469
+
470
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
471
+ Served asset /jquery.js - 304 Not Modified (0ms)
472
+
473
+
474
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
475
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
476
+
477
+
478
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
479
+ Served asset /home.css - 304 Not Modified (0ms)
480
+
481
+
482
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
483
+ Served asset /home.js - 304 Not Modified (0ms)
484
+
485
+
486
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:19:59 +0100
487
+ Served asset /application.js - 304 Not Modified (0ms)
488
+
489
+
490
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
491
+ Processing by HomeController#index as HTML
492
+ Rendered home/index.html.erb within layouts/application (0.0ms)
493
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
494
+
495
+
496
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
497
+ Served asset /application.css - 304 Not Modified (0ms)
498
+
499
+
500
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
501
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
502
+
503
+
504
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
505
+ Served asset /home.css - 304 Not Modified (0ms)
506
+
507
+
508
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
509
+ Served asset /jquery.js - 304 Not Modified (0ms)
510
+
511
+
512
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
513
+ Served asset /home.js - 304 Not Modified (0ms)
514
+
515
+
516
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:10 +0100
517
+ Served asset /application.js - 304 Not Modified (0ms)
518
+
519
+
520
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
521
+ Connecting to database specified by database.yml
522
+ Processing by HomeController#index as HTML
523
+ Rendered home/index.html.erb within layouts/application (1.3ms)
524
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
525
+
526
+
527
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
528
+ Served asset /application.css - 304 Not Modified (8ms)
529
+
530
+
531
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
532
+ Served asset /home.js - 304 Not Modified (1ms)
533
+
534
+
535
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
536
+ Served asset /jquery.js - 304 Not Modified (2ms)
537
+
538
+
539
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
540
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
541
+
542
+
543
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
544
+ Served asset /home.css - 304 Not Modified (1ms)
545
+
546
+
547
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:24 +0100
548
+ Served asset /application.js - 304 Not Modified (6ms)
549
+
550
+
551
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
552
+ Processing by HomeController#index as HTML
553
+ Rendered home/index.html.erb within layouts/application (0.0ms)
554
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
555
+
556
+
557
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
558
+ Served asset /application.css - 304 Not Modified (0ms)
559
+
560
+
561
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
562
+ Served asset /home.css - 304 Not Modified (0ms)
563
+
564
+
565
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
566
+ Served asset /jquery.js - 304 Not Modified (0ms)
567
+
568
+
569
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
570
+ Served asset /home.js - 304 Not Modified (0ms)
571
+
572
+
573
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
574
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
575
+
576
+
577
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:34 +0100
578
+ Served asset /application.js - 304 Not Modified (0ms)
579
+
580
+
581
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
582
+ Processing by HomeController#index as HTML
583
+ Rendered home/index.html.erb within layouts/application (0.1ms)
584
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
585
+
586
+
587
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
588
+ Served asset /application.css - 304 Not Modified (0ms)
589
+
590
+
591
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
592
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
593
+
594
+
595
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
596
+ Served asset /jquery.js - 304 Not Modified (0ms)
597
+
598
+
599
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
600
+ Served asset /home.css - 304 Not Modified (0ms)
601
+
602
+
603
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
604
+ Served asset /home.js - 304 Not Modified (0ms)
605
+
606
+
607
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:20:47 +0100
608
+ Served asset /application.js - 304 Not Modified (0ms)
609
+
610
+
611
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:20:53 +0100
612
+ Connecting to database specified by database.yml
613
+ Processing by HomeController#index as HTML
614
+ Rendered home/index.html.erb within layouts/application (1.5ms)
615
+ Completed 500 Internal Server Error in 12ms
616
+
617
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
618
+ 1: <!DOCTYPE html>
619
+ 2: <html>
620
+ 3: <head>
621
+ 4: <%= meta_tags %>
622
+ 5:
623
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
624
+ 7: <%= javascript_include_tag "application" %>
625
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___3525502130741511938_2157812060'
626
+
627
+
628
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
629
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
630
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms)
631
+
632
+
633
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:21:09 +0100
634
+ Connecting to database specified by database.yml
635
+ Processing by HomeController#index as HTML
636
+ Rendered home/index.html.erb within layouts/application (1.4ms)
637
+ Completed 500 Internal Server Error in 12ms
638
+
639
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
640
+ 1: <!DOCTYPE html>
641
+ 2: <html>
642
+ 3: <head>
643
+ 4: <%= meta_tags %>
644
+ 5:
645
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
646
+ 7: <%= javascript_include_tag "application" %>
647
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___573434688775459311_2153804200'
648
+
649
+
650
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
651
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
652
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
653
+
654
+
655
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:22:02 +0100
656
+ Connecting to database specified by database.yml
657
+ Processing by HomeController#index as HTML
658
+ Rendered home/index.html.erb within layouts/application (1.5ms)
659
+ Completed 500 Internal Server Error in 50ms
660
+
661
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
662
+ 1: <!DOCTYPE html>
663
+ 2: <html>
664
+ 3: <head>
665
+ 4: <%= meta_tags %>
666
+ 5:
667
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
668
+ 7: <%= javascript_include_tag "application" %>
669
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___2446923431376710914_2164968900'
670
+
671
+
672
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
673
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
674
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
675
+
676
+
677
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:23:05 +0100
678
+ Processing by HomeController#index as HTML
679
+ Rendered home/index.html.erb within layouts/application (0.0ms)
680
+ Completed 500 Internal Server Error in 2ms
681
+
682
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
683
+ 1: <!DOCTYPE html>
684
+ 2: <html>
685
+ 3: <head>
686
+ 4: <%= meta_tags %>
687
+ 5:
688
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
689
+ 7: <%= javascript_include_tag "application" %>
690
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___2446923431376710914_2164968900'
691
+
692
+
693
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
694
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
695
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms)
696
+
697
+
698
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
699
+ Connecting to database specified by database.yml
700
+ Processing by HomeController#index as HTML
701
+ Rendered home/index.html.erb within layouts/application (1.6ms)
702
+ Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
703
+
704
+
705
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
706
+ Served asset /application.css - 304 Not Modified (40ms)
707
+
708
+
709
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
710
+ Served asset /jquery.js - 304 Not Modified (5ms)
711
+
712
+
713
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
714
+ Served asset /home.js - 304 Not Modified (1ms)
715
+
716
+
717
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
718
+ Served asset /home.css - 304 Not Modified (1ms)
719
+
720
+
721
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
722
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
723
+
724
+
725
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:11 +0100
726
+ Served asset /application.js - 304 Not Modified (6ms)
727
+
728
+
729
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
730
+ Connecting to database specified by database.yml
731
+ Processing by HomeController#index as HTML
732
+ Rendered home/index.html.erb within layouts/application (1.6ms)
733
+ Completed 200 OK in 53ms (Views: 52.7ms | ActiveRecord: 0.0ms)
734
+
735
+
736
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
737
+ Served asset /application.css - 304 Not Modified (3ms)
738
+
739
+
740
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
741
+ Served asset /home.css - 304 Not Modified (1ms)
742
+
743
+
744
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
745
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
746
+
747
+
748
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
749
+ Served asset /home.js - 304 Not Modified (2ms)
750
+
751
+
752
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
753
+ Served asset /jquery.js - 304 Not Modified (2ms)
754
+
755
+
756
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:23:56 +0100
757
+ Served asset /application.js - 304 Not Modified (7ms)
758
+
759
+
760
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:24:52 +0100
761
+ Connecting to database specified by database.yml
762
+ Processing by HomeController#index as HTML
763
+ Rendered home/index.html.erb within layouts/application (1.4ms)
764
+ Completed 500 Internal Server Error in 12ms
765
+
766
+ ActionView::Template::Error (undefined method `title' for nil:NilClass):
767
+ 1: <!DOCTYPE html>
768
+ 2: <html>
769
+ 3: <head>
770
+ 4: <%= meta_tags %>
771
+ 5:
772
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
773
+ 7: <%= javascript_include_tag "application" %>
774
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__2592952725320358577_2174611260'
775
+
776
+
777
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
778
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
779
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.3ms)
780
+
781
+
782
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
783
+ Connecting to database specified by database.yml
784
+ Processing by HomeController#index as HTML
785
+ Rendered home/index.html.erb within layouts/application (1.6ms)
786
+ Completed 200 OK in 56ms (Views: 55.9ms | ActiveRecord: 0.0ms)
787
+
788
+
789
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
790
+ Served asset /application.css - 304 Not Modified (4ms)
791
+
792
+
793
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
794
+ Served asset /jquery_ujs.js - 304 Not Modified (5ms)
795
+
796
+
797
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
798
+ Served asset /home.css - 304 Not Modified (1ms)
799
+
800
+
801
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
802
+ Served asset /jquery.js - 304 Not Modified (3ms)
803
+
804
+
805
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
806
+ Served asset /home.js - 304 Not Modified (1ms)
807
+
808
+
809
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:26:25 +0100
810
+ Served asset /application.js - 304 Not Modified (5ms)
811
+
812
+
813
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:27:08 +0100
814
+ Connecting to database specified by database.yml
815
+ Processing by HomeController#index as HTML
816
+ Rendered home/index.html.erb within layouts/application (2.0ms)
817
+ Completed 200 OK in 23ms (Views: 22.7ms | ActiveRecord: 0.0ms)
818
+
819
+
820
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
821
+ Served asset /application.css - 304 Not Modified (3ms)
822
+
823
+
824
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
825
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
826
+
827
+
828
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
829
+ Served asset /home.css - 304 Not Modified (2ms)
830
+
831
+
832
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
833
+ Served asset /home.js - 304 Not Modified (2ms)
834
+
835
+
836
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
837
+ Served asset /jquery.js - 304 Not Modified (3ms)
838
+
839
+
840
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:09 +0100
841
+ Served asset /application.js - 304 Not Modified (6ms)
842
+
843
+
844
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
845
+ Connecting to database specified by database.yml
846
+ Processing by HomeController#index as HTML
847
+ Rendered home/index.html.erb within layouts/application (1.4ms)
848
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
849
+
850
+
851
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
852
+ Served asset /application.css - 304 Not Modified (7ms)
853
+
854
+
855
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
856
+ Served asset /application.js - 304 Not Modified (4ms)
857
+
858
+
859
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
860
+ Served asset /home.css - 304 Not Modified (2ms)
861
+
862
+
863
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
864
+ Served asset /home.js - 304 Not Modified (1ms)
865
+
866
+
867
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
868
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
869
+
870
+
871
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:27:23 +0100
872
+ Served asset /jquery.js - 304 Not Modified (2ms)
873
+
874
+
875
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
876
+ Processing by HomeController#index as HTML
877
+ Rendered home/index.html.erb within layouts/application (0.0ms)
878
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
879
+
880
+
881
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
882
+ Served asset /application.css - 304 Not Modified (0ms)
883
+
884
+
885
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
886
+ Served asset /jquery.js - 304 Not Modified (0ms)
887
+
888
+
889
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
890
+ Served asset /home.js - 304 Not Modified (0ms)
891
+
892
+
893
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
894
+ Served asset /home.css - 304 Not Modified (0ms)
895
+
896
+
897
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
898
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
899
+
900
+
901
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:10 +0100
902
+ Served asset /application.js - 304 Not Modified (0ms)
903
+
904
+
905
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:29:19 +0100
906
+ Connecting to database specified by database.yml
907
+ Processing by HomeController#index as HTML
908
+ Rendered home/index.html.erb within layouts/application (2.3ms)
909
+ Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
910
+
911
+
912
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
913
+ Served asset /application.css - 304 Not Modified (5ms)
914
+
915
+
916
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
917
+ Served asset /home.css - 304 Not Modified (1ms)
918
+
919
+
920
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
921
+ Served asset /home.js - 304 Not Modified (1ms)
922
+
923
+
924
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
925
+ Served asset /jquery.js - 304 Not Modified (3ms)
926
+
927
+
928
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
929
+ Served asset /application.js - 304 Not Modified (5ms)
930
+
931
+
932
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:20 +0100
933
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
934
+
935
+
936
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
937
+ Connecting to database specified by database.yml
938
+ Processing by HomeController#index as HTML
939
+ Rendered home/index.html.erb within layouts/application (1.4ms)
940
+ Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
941
+
942
+
943
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
944
+ Served asset /application.css - 304 Not Modified (7ms)
945
+
946
+
947
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
948
+ Served asset /home.js - 304 Not Modified (1ms)
949
+
950
+
951
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
952
+ Served asset /home.css - 304 Not Modified (1ms)
953
+
954
+
955
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
956
+ Served asset /jquery.js - 304 Not Modified (3ms)
957
+
958
+
959
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
960
+ Served asset /application.js - 304 Not Modified (7ms)
961
+
962
+
963
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:29:49 +0100
964
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
965
+
966
+
967
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:31:39 +0100
968
+ Connecting to database specified by database.yml
969
+ Processing by HomeController#index as HTML
970
+ Rendered home/index.html.erb within layouts/application (1.4ms)
971
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
972
+
973
+
974
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
975
+ Served asset /application.css - 200 OK (11ms)
976
+
977
+
978
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
979
+ Served asset /application.js - 200 OK (7ms)
980
+
981
+
982
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
983
+ Served asset /jquery_ujs.js - 200 OK (2ms)
984
+
985
+
986
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
987
+ Served asset /home.css - 200 OK (1ms)
988
+
989
+
990
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
991
+ Served asset /jquery.js - 200 OK (3ms)
992
+
993
+
994
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:31:40 +0100
995
+ Served asset /home.js - 200 OK (1ms)
996
+
997
+
998
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:36:34 +0100
999
+ Processing by HomeController#index as HTML
1000
+ Completed 500 Internal Server Error in 1ms
1001
+
1002
+ NoMethodError (undefined method `set_meta_tag' for #<HomeController:0x00000103934fc8>):
1003
+ app/controllers/home_controller.rb:3:in `index'
1004
+
1005
+
1006
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
1007
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1008
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.2ms)
1009
+
1010
+
1011
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:36:41 +0100
1012
+ Connecting to database specified by database.yml
1013
+ Processing by HomeController#index as HTML
1014
+ Rendered home/index.html.erb within layouts/application (1.4ms)
1015
+ Completed 500 Internal Server Error in 14ms
1016
+
1017
+ ActionView::Template::Error (undefined local variable or method `meta_tags_meta_tags_container' for #<HomeController:0x00000103a24230>):
1018
+ 1: <!DOCTYPE html>
1019
+ 2: <html>
1020
+ 3: <head>
1021
+ 4: <%= meta_tags %>
1022
+ 5:
1023
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
1024
+ 7: <%= javascript_include_tag "application" %>
1025
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb___2480981757222665201_2178248180'
1026
+
1027
+
1028
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1029
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1030
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
1031
+
1032
+
1033
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:37:14 +0100
1034
+ Connecting to database specified by database.yml
1035
+ Processing by HomeController#index as HTML
1036
+ Rendered home/index.html.erb within layouts/application (1.5ms)
1037
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
1038
+
1039
+
1040
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1041
+ Served asset /application.css - 200 OK (2ms)
1042
+
1043
+
1044
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1045
+ Served asset /jquery.js - 200 OK (2ms)
1046
+
1047
+
1048
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1049
+ Served asset /home.js - 200 OK (3ms)
1050
+
1051
+
1052
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1053
+ Served asset /home.css - 200 OK (2ms)
1054
+
1055
+
1056
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1057
+ Served asset /application.js - 200 OK (4ms)
1058
+
1059
+
1060
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:37:15 +0100
1061
+ Served asset /jquery_ujs.js - 200 OK (2ms)
1062
+
1063
+
1064
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:41:42 +0100
1065
+ Connecting to database specified by database.yml
1066
+ Processing by HomeController#index as HTML
1067
+ Rendered home/index.html.erb within layouts/application (1.5ms)
1068
+ Completed 500 Internal Server Error in 12ms
1069
+
1070
+ ActionView::Template::Error (super: no superclass method `title' for #<MetaTags::Container:0x0000010259fbc0>):
1071
+ 1: <!DOCTYPE html>
1072
+ 2: <html>
1073
+ 3: <head>
1074
+ 4: <%= meta_tags %>
1075
+ 5:
1076
+ 6: <%= stylesheet_link_tag "application", :media => "all" %>
1077
+ 7: <%= javascript_include_tag "application" %>
1078
+ app/views/layouts/application.html.erb:4:in `_app_views_layouts_application_html_erb__1691154529016489748_2166538640'
1079
+
1080
+
1081
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1082
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
1083
+ Rendered /Users/vala/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms)
1084
+
1085
+
1086
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1087
+ Connecting to database specified by database.yml
1088
+ Processing by HomeController#index as HTML
1089
+ Rendered home/index.html.erb within layouts/application (1.6ms)
1090
+ Completed 200 OK in 63ms (Views: 62.4ms | ActiveRecord: 0.0ms)
1091
+
1092
+
1093
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1094
+ Served asset /application.css - 200 OK (2ms)
1095
+
1096
+
1097
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1098
+ Served asset /jquery_ujs.js - 200 OK (3ms)
1099
+
1100
+
1101
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1102
+ Served asset /home.css - 200 OK (1ms)
1103
+
1104
+
1105
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1106
+ Served asset /jquery.js - 200 OK (2ms)
1107
+
1108
+
1109
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1110
+ Served asset /home.js - 200 OK (2ms)
1111
+
1112
+
1113
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:43:19 +0100
1114
+ Served asset /application.js - 200 OK (6ms)
1115
+ Connecting to database specified by database.yml
1116
+ Connecting to database specified by database.yml
1117
+ Connecting to database specified by database.yml
1118
+  (0.1ms) select sqlite_version(*)
1119
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
1120
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1121
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1122
+ Migrating to CreatePosts (20130131104614)
1123
+  (0.0ms) begin transaction
1124
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "description" text, "tags" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1125
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130131104614')
1126
+  (1.4ms) commit transaction
1127
+ Migrating to AddAttachmentImageToPosts (20130131104618)
1128
+  (0.0ms) begin transaction
1129
+  (0.3ms) ALTER TABLE "posts" ADD "image_file_name" varchar(255)
1130
+  (0.2ms) ALTER TABLE "posts" ADD "image_content_type" varchar(255)
1131
+  (0.1ms) ALTER TABLE "posts" ADD "image_file_size" integer
1132
+  (0.1ms) ALTER TABLE "posts" ADD "image_updated_at" datetime
1133
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130131104618')
1134
+  (0.9ms) commit transaction
1135
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1136
+
1137
+
1138
+ Started GET "/" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1139
+ Processing by HomeController#index as HTML
1140
+ Rendered home/index.html.erb within layouts/application (0.0ms)
1141
+ Compiled posts.css (0ms) (pid 18679)
1142
+ Compiled application.css (8ms) (pid 18679)
1143
+ Compiled posts.js (0ms) (pid 18679)
1144
+ Compiled application.js (9ms) (pid 18679)
1145
+ Completed 200 OK in 140ms (Views: 139.9ms | ActiveRecord: 0.0ms)
1146
+
1147
+
1148
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1149
+ Served asset /application.css - 200 OK (5ms)
1150
+
1151
+
1152
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1153
+ Served asset /jquery.js - 200 OK (0ms)
1154
+
1155
+
1156
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1157
+ Served asset /home.css - 200 OK (0ms)
1158
+
1159
+
1160
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1161
+ Served asset /posts.css - 200 OK (1ms)
1162
+
1163
+
1164
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1165
+ Served asset /posts.js - 200 OK (2ms)
1166
+
1167
+
1168
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1169
+ Served asset /home.js - 200 OK (0ms)
1170
+
1171
+
1172
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1173
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1174
+
1175
+
1176
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:27 +0100
1177
+ Served asset /application.js - 200 OK (5ms)
1178
+
1179
+
1180
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1181
+ Processing by PostsController#index as HTML
1182
+ Rendered posts/index.html.erb within layouts/application (0.4ms)
1183
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
1184
+
1185
+
1186
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1187
+ Served asset /application.css - 200 OK (0ms)
1188
+
1189
+
1190
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1191
+ Served asset /home.js - 200 OK (0ms)
1192
+
1193
+
1194
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1195
+ Served asset /jquery.js - 200 OK (0ms)
1196
+
1197
+
1198
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1199
+ Served asset /home.css - 200 OK (0ms)
1200
+
1201
+
1202
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1203
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1204
+
1205
+
1206
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1207
+ Served asset /posts.css - 200 OK (0ms)
1208
+
1209
+
1210
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1211
+ Served asset /posts.js - 200 OK (0ms)
1212
+
1213
+
1214
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:47:29 +0100
1215
+ Served asset /application.js - 200 OK (0ms)
1216
+ Connecting to database specified by database.yml
1217
+  (0.1ms) begin transaction
1218
+ SQL (40.5ms) INSERT INTO "posts" ("created_at", "description", "image_content_type", "image_file_name", "image_file_size", "image_updated_at", "tags", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00], ["description", "Description du post 1"], ["image_content_type", nil], ["image_file_name", nil], ["image_file_size", nil], ["image_updated_at", nil], ["tags", nil], ["title", "Post 1"], ["updated_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00]]
1219
+  (1.4ms) commit transaction
1220
+  (0.0ms) begin transaction
1221
+ SQL (0.3ms) INSERT INTO "posts" ("created_at", "description", "image_content_type", "image_file_name", "image_file_size", "image_updated_at", "tags", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00], ["description", "Description du post 2"], ["image_content_type", nil], ["image_file_name", nil], ["image_file_size", nil], ["image_updated_at", nil], ["tags", nil], ["title", "Post 2"], ["updated_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00]]
1222
+  (1.1ms) commit transaction
1223
+  (0.0ms) begin transaction
1224
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "description", "image_content_type", "image_file_name", "image_file_size", "image_updated_at", "tags", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00], ["description", "Description du post 3"], ["image_content_type", nil], ["image_file_name", nil], ["image_file_size", nil], ["image_updated_at", nil], ["tags", nil], ["title", "Post 3"], ["updated_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00]]
1225
+  (1.1ms) commit transaction
1226
+  (0.0ms) begin transaction
1227
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "description", "image_content_type", "image_file_name", "image_file_size", "image_updated_at", "tags", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00], ["description", "Description du post 4"], ["image_content_type", nil], ["image_file_name", nil], ["image_file_size", nil], ["image_updated_at", nil], ["tags", nil], ["title", "Post 4"], ["updated_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00]]
1228
+  (1.1ms) commit transaction
1229
+  (0.0ms) begin transaction
1230
+ SQL (0.2ms) INSERT INTO "posts" ("created_at", "description", "image_content_type", "image_file_name", "image_file_size", "image_updated_at", "tags", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00], ["description", "Description du post 5"], ["image_content_type", nil], ["image_file_name", nil], ["image_file_size", nil], ["image_updated_at", nil], ["tags", nil], ["title", "Post 5"], ["updated_at", Thu, 31 Jan 2013 10:50:35 UTC +00:00]]
1231
+  (0.8ms) commit transaction
1232
+
1233
+
1234
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1235
+ Processing by PostsController#index as HTML
1236
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" 
1237
+ Rendered posts/index.html.erb within layouts/application (2.3ms)
1238
+ Completed 200 OK in 70ms (Views: 7.4ms | ActiveRecord: 1.5ms)
1239
+
1240
+
1241
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1242
+ Served asset /posts.css - 200 OK (0ms)
1243
+
1244
+
1245
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1246
+ Served asset /jquery.js - 200 OK (0ms)
1247
+
1248
+
1249
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1250
+ Served asset /home.css - 200 OK (0ms)
1251
+
1252
+
1253
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1254
+ Served asset /application.css - 200 OK (0ms)
1255
+
1256
+
1257
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1258
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1259
+
1260
+
1261
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1262
+ Served asset /home.js - 200 OK (0ms)
1263
+
1264
+
1265
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1266
+ Served asset /posts.js - 200 OK (0ms)
1267
+
1268
+
1269
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:37 +0100
1270
+ Served asset /application.js - 200 OK (0ms)
1271
+
1272
+
1273
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1274
+ Processing by PostsController#index as HTML
1275
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
1276
+ Rendered posts/index.html.erb within layouts/application (1.9ms)
1277
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.2ms)
1278
+
1279
+
1280
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1281
+ Served asset /application.css - 200 OK (0ms)
1282
+
1283
+
1284
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1285
+ Served asset /home.js - 200 OK (0ms)
1286
+
1287
+
1288
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1289
+ Served asset /posts.css - 200 OK (0ms)
1290
+
1291
+
1292
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1293
+ Served asset /posts.js - 200 OK (0ms)
1294
+
1295
+
1296
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1297
+ Served asset /jquery.js - 200 OK (0ms)
1298
+
1299
+
1300
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1301
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1302
+
1303
+
1304
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1305
+ Served asset /home.css - 200 OK (0ms)
1306
+
1307
+
1308
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:50:50 +0100
1309
+ Served asset /application.js - 200 OK (0ms)
1310
+
1311
+
1312
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1313
+ Processing by PostsController#index as HTML
1314
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" 
1315
+ Rendered posts/index.html.erb within layouts/application (1.8ms)
1316
+ Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.3ms)
1317
+
1318
+
1319
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1320
+ Served asset /application.css - 200 OK (0ms)
1321
+
1322
+
1323
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1324
+ Served asset /jquery.js - 200 OK (0ms)
1325
+
1326
+
1327
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1328
+ Served asset /home.js - 200 OK (0ms)
1329
+
1330
+
1331
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1332
+ Served asset /home.css - 200 OK (0ms)
1333
+
1334
+
1335
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1336
+ Served asset /posts.css - 200 OK (0ms)
1337
+
1338
+
1339
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1340
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1341
+
1342
+
1343
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1344
+ Served asset /posts.js - 200 OK (0ms)
1345
+
1346
+
1347
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:03 +0100
1348
+ Served asset /application.js - 200 OK (0ms)
1349
+
1350
+
1351
+ Started GET "/posts/1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1352
+ Processing by PostsController#show as HTML
1353
+ Parameters: {"id"=>"1"}
1354
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "1"]]
1355
+ Rendered posts/show.html.erb within layouts/application (0.3ms)
1356
+ Completed 200 OK in 8ms (Views: 5.3ms | ActiveRecord: 0.3ms)
1357
+
1358
+
1359
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1360
+ Served asset /home.css - 200 OK (0ms)
1361
+
1362
+
1363
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1364
+ Served asset /posts.css - 200 OK (0ms)
1365
+
1366
+
1367
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1368
+ Served asset /application.css - 200 OK (0ms)
1369
+
1370
+
1371
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1372
+ Served asset /home.js - 200 OK (0ms)
1373
+
1374
+
1375
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1376
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1377
+
1378
+
1379
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1380
+ Served asset /posts.js - 200 OK (0ms)
1381
+
1382
+
1383
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1384
+ Served asset /jquery.js - 200 OK (0ms)
1385
+
1386
+
1387
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:04 +0100
1388
+ Served asset /application.js - 200 OK (0ms)
1389
+
1390
+
1391
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:51:05 +0100
1392
+ Processing by PostsController#index as HTML
1393
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" 
1394
+ Rendered posts/index.html.erb within layouts/application (1.1ms)
1395
+ Completed 200 OK in 7ms (Views: 5.2ms | ActiveRecord: 0.3ms)
1396
+
1397
+
1398
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1399
+ Served asset /application.css - 200 OK (0ms)
1400
+
1401
+
1402
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1403
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1404
+
1405
+
1406
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1407
+ Served asset /posts.css - 200 OK (0ms)
1408
+
1409
+
1410
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1411
+ Served asset /home.css - 200 OK (0ms)
1412
+
1413
+
1414
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1415
+ Served asset /home.js - 200 OK (0ms)
1416
+
1417
+
1418
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1419
+ Served asset /jquery.js - 200 OK (0ms)
1420
+
1421
+
1422
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1423
+ Served asset /posts.js - 200 OK (0ms)
1424
+
1425
+
1426
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:06 +0100
1427
+ Served asset /application.js - 200 OK (0ms)
1428
+
1429
+
1430
+ Started GET "/posts/2" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1431
+ Processing by PostsController#show as HTML
1432
+ Parameters: {"id"=>"2"}
1433
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1 [["id", "2"]]
1434
+ Rendered posts/show.html.erb within layouts/application (0.0ms)
1435
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
1436
+
1437
+
1438
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1439
+ Served asset /application.css - 200 OK (0ms)
1440
+
1441
+
1442
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1443
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1444
+
1445
+
1446
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1447
+ Served asset /home.css - 200 OK (0ms)
1448
+
1449
+
1450
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1451
+ Served asset /jquery.js - 200 OK (0ms)
1452
+
1453
+
1454
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1455
+ Served asset /home.js - 200 OK (0ms)
1456
+
1457
+
1458
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1459
+ Served asset /posts.css - 200 OK (0ms)
1460
+
1461
+
1462
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1463
+ Served asset /posts.js - 200 OK (0ms)
1464
+
1465
+
1466
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1467
+ Served asset /application.js - 200 OK (0ms)
1468
+
1469
+
1470
+ Started GET "/posts" for 127.0.0.1 at 2013-01-31 11:51:07 +0100
1471
+ Processing by PostsController#index as HTML
1472
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" 
1473
+ Rendered posts/index.html.erb within layouts/application (1.0ms)
1474
+ Completed 200 OK in 36ms (Views: 35.4ms | ActiveRecord: 0.2ms)
1475
+
1476
+
1477
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1478
+ Served asset /application.css - 200 OK (0ms)
1479
+
1480
+
1481
+ Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1482
+ Served asset /home.css - 200 OK (0ms)
1483
+
1484
+
1485
+ Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1486
+ Served asset /home.js - 200 OK (0ms)
1487
+
1488
+
1489
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1490
+ Served asset /jquery.js - 200 OK (0ms)
1491
+
1492
+
1493
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1494
+ Served asset /posts.js - 200 OK (0ms)
1495
+
1496
+
1497
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1498
+ Served asset /jquery_ujs.js - 200 OK (0ms)
1499
+
1500
+
1501
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1502
+ Served asset /posts.css - 200 OK (0ms)
1503
+
1504
+
1505
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-01-31 11:51:08 +0100
1506
+ Served asset /application.js - 200 OK (0ms)