mountain_view 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/javascripts/mountain_view.js.erb +4 -0
  5. data/app/assets/stylesheets/mountain_view.css.erb +4 -0
  6. data/app/helpers/mountain_view/component_helper.rb +9 -0
  7. data/lib/mountain_view/engine.rb +16 -0
  8. data/lib/mountain_view/version.rb +3 -0
  9. data/lib/mountain_view.rb +5 -0
  10. data/lib/tasks/mountain_view_tasks.rake +4 -0
  11. data/test/dummy/README.rdoc +28 -0
  12. data/test/dummy/Rakefile +6 -0
  13. data/test/dummy/app/assets/javascripts/application.js +13 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +16 -0
  15. data/test/dummy/app/components/header/_header.html.erb +4 -0
  16. data/test/dummy/app/components/header/header.css +11 -0
  17. data/test/dummy/app/components/header/header.js +1 -0
  18. data/test/dummy/app/controllers/application_controller.rb +5 -0
  19. data/test/dummy/app/controllers/home_controller.rb +7 -0
  20. data/test/dummy/app/helpers/application_helper.rb +2 -0
  21. data/test/dummy/app/views/home/index.html.erb +2 -0
  22. data/test/dummy/app/views/layouts/application.html.erb +13 -0
  23. data/test/dummy/bin/bundle +3 -0
  24. data/test/dummy/bin/rails +4 -0
  25. data/test/dummy/bin/rake +4 -0
  26. data/test/dummy/config/application.rb +23 -0
  27. data/test/dummy/config/boot.rb +5 -0
  28. data/test/dummy/config/database.yml +25 -0
  29. data/test/dummy/config/environment.rb +5 -0
  30. data/test/dummy/config/environments/development.rb +37 -0
  31. data/test/dummy/config/environments/production.rb +82 -0
  32. data/test/dummy/config/environments/test.rb +39 -0
  33. data/test/dummy/config/initializers/assets.rb +8 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/test/dummy/config/initializers/inflections.rb +16 -0
  38. data/test/dummy/config/initializers/mime_types.rb +4 -0
  39. data/test/dummy/config/initializers/session_store.rb +3 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +23 -0
  42. data/test/dummy/config/routes.rb +56 -0
  43. data/test/dummy/config/secrets.yml +22 -0
  44. data/test/dummy/config.ru +4 -0
  45. data/test/dummy/db/development.sqlite3 +0 -0
  46. data/test/dummy/log/development.log +1686 -0
  47. data/test/dummy/public/404.html +67 -0
  48. data/test/dummy/public/422.html +67 -0
  49. data/test/dummy/public/500.html +66 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/1e8f75a6b5b33970fb8e397347caa0a1 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/24204f742af588c8166d3160b500d20f +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/2739c7705f92af2c7a343bd3bec41ebf +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/338f5f4fca22e174ca33d4951da6cb68 +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/37643c71fe531f0952e5295acf215a42 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/416150dc3ac35079c94273cc46e90aa6 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/5384ad85f52d3272dbc64d46ef3876a4 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/6d1c1dbe626c83b900adee3270c25207 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/83cef341260a8fe947a452c98fe4e8e5 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/9968a5db588ce1b0eccde8ee4aa53070 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/ac40b40e96db620ce63bc31ea39a3a00 +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/af58a5048930559efe210766e23cb33a +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/b5fa5190a0392c201224fe65623c6b33 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/b9bd83a3b44c1d3d3f3475bd4c0cba7f +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/bd10fd095a0ad299793da5761647e6dd +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/c85016e7bbd4f3adbb7635d01f85d39b +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/d066c004d1fd26ae76a61303a7a18145 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/f63a83b6b75c46ab79854c53ebe1856a +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  78. data/test/dummy/tmp/pids/server.pid +1 -0
  79. data/test/helpers/mountain_view/component_helper_test.rb +11 -0
  80. data/test/mountain_view_test.rb +31 -0
  81. data/test/test_helper.rb +15 -0
  82. data/test/tmp/app/components/mountain_view.css +3 -0
  83. data/test/tmp/app/components/mountain_view.js +1 -0
  84. metadata +230 -0
@@ -0,0 +1,1686 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:27:53 -0300
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.1.9/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
6
+ Completed 200 OK in 8ms (Views: 8.1ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/rails/info/routes" for 127.0.0.1 at 2015-03-18 23:28:41 -0300
10
+ Processing by Rails::InfoController#routes as HTML
11
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.5ms)
12
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.1.9/lib/rails/templates/rails/info/routes.html.erb within layouts/application (11.4ms)
13
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms)
14
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
15
+  (0.5ms) select sqlite_version(*)
16
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
17
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
18
+ Migrating to CreatePosts (20150319023312)
19
+  (0.1ms) begin transaction
20
+  (0.4ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime)
21
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150319023312"]]
22
+  (0.9ms) commit transaction
23
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
24
+
25
+
26
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
27
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28
+ Processing by PostsController#index as HTML
29
+ Post Load (0.5ms) SELECT "posts".* FROM "posts"
30
+ Rendered posts/index.html.erb within layouts/application (3.0ms)
31
+ Completed 200 OK in 66ms (Views: 63.5ms | ActiveRecord: 0.5ms)
32
+
33
+
34
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
35
+
36
+
37
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
38
+
39
+
40
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
41
+
42
+
43
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
44
+
45
+
46
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-18 23:34:33 -0300
47
+
48
+
49
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:35:38 -0300
50
+ Processing by PostsController#index as HTML
51
+ Rendered posts/index.html.erb within layouts/application (2.8ms)
52
+ Completed 500 Internal Server Error in 4ms
53
+
54
+ ActionView::Template::Error (wrong number of arguments (0 for 2)):
55
+ 1: <h1>Listing posts</h1>
56
+ 2: <%= ui_component %>
57
+ 3:
58
+ 4: <table>
59
+ 5: <thead>
60
+ app/views/posts/index.html.erb:2:in `_app_views_posts_index_html_erb__2047605616738130014_70104902949660'
61
+
62
+
63
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
64
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
65
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
69
+ Processing by PostsController#index as HTML
70
+ Post Load (0.2ms) SELECT "posts".* FROM "posts"
71
+ Rendered posts/index.html.erb within layouts/application (1.5ms)
72
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.2ms)
73
+
74
+
75
+ Started GET "/assets/posts.css?body=1" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
76
+
77
+
78
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
79
+
80
+
81
+ Started GET "/assets/posts.js?body=1" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
82
+
83
+
84
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
85
+
86
+
87
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-18 23:35:56 -0300
88
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
89
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
90
+ Migrating to CreatePosts (20150319023312)
91
+  (0.1ms) begin transaction
92
+  (1.5ms) DROP TABLE "posts"
93
+ SQL (0.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20150319023312'
94
+  (0.9ms) commit transaction
95
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
96
+
97
+
98
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:39:28 -0300
99
+ Processing by Rails::WelcomeController#index as HTML
100
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.1.9/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
101
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
102
+
103
+
104
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:40:58 -0300
105
+ Processing by HomeController#index as HTML
106
+ Rendered home/index.html.erb (0.4ms)
107
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
108
+
109
+
110
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:41:11 -0300
111
+ Processing by HomeController#index as HTML
112
+ Rendered home/index.html.erb (0.5ms)
113
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
114
+
115
+
116
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:44:07 -0300
117
+ Processing by HomeController#index as HTML
118
+ Rendered home/index.html.erb (6.4ms)
119
+ Completed 500 Internal Server Error in 13ms
120
+
121
+ ActionView::Template::Error (Missing partial components/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
122
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
123
+ ):
124
+ 1: Hello
125
+ 2: <%= ui_component "header" %>
126
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___1782969390334846501_70185777174720'
127
+
128
+
129
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
130
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
131
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.7ms)
132
+
133
+
134
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:44:41 -0300
135
+ Processing by HomeController#index as HTML
136
+ Rendered home/index.html.erb (0.9ms)
137
+ Completed 500 Internal Server Error in 2ms
138
+
139
+ ActionView::Template::Error (Missing partial components/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
140
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
141
+ ):
142
+ 1: Hello
143
+ 2: <%= ui_component "header" %>
144
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___1782969390334846501_70185777174720'
145
+
146
+
147
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
148
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
149
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.6ms)
150
+
151
+
152
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:44:42 -0300
153
+ Processing by HomeController#index as HTML
154
+ Rendered home/index.html.erb (0.9ms)
155
+ Completed 500 Internal Server Error in 2ms
156
+
157
+ ActionView::Template::Error (Missing partial components/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
158
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
159
+ ):
160
+ 1: Hello
161
+ 2: <%= ui_component "header" %>
162
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___1782969390334846501_70185777174720'
163
+
164
+
165
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
166
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
167
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.9ms)
168
+
169
+
170
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:48:49 -0300
171
+ Processing by HomeController#index as HTML
172
+ Rendered home/index.html.erb (0.9ms)
173
+ Completed 500 Internal Server Error in 2ms
174
+
175
+ ActionView::Template::Error (Missing partial components/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
176
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
177
+ ):
178
+ 1: Hello
179
+ 2: <%= ui_component "header" %>
180
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___1782969390334846501_70185777174720'
181
+
182
+
183
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
184
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
185
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.9ms)
186
+
187
+
188
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:48:51 -0300
189
+ Processing by HomeController#index as HTML
190
+ Rendered home/index.html.erb (0.9ms)
191
+ Completed 500 Internal Server Error in 2ms
192
+
193
+ ActionView::Template::Error (Missing partial components/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
194
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
195
+ ):
196
+ 1: Hello
197
+ 2: <%= ui_component "header" %>
198
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___1782969390334846501_70185777174720'
199
+
200
+
201
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
202
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
203
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.3ms)
204
+
205
+
206
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:49:30 -0300
207
+ Processing by HomeController#index as HTML
208
+ Rendered home/index.html.erb (6.0ms)
209
+ Completed 500 Internal Server Error in 13ms
210
+
211
+ ActionView::Template::Error (Missing partial ../components/header/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
212
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
213
+ ):
214
+ 1: Hello
215
+ 2: <%= ui_component "header" %>
216
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___211413235758374342_70362814297980'
217
+
218
+
219
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
220
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms)
221
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.0ms)
222
+
223
+
224
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:50:13 -0300
225
+ Processing by HomeController#index as HTML
226
+ Rendered home/index.html.erb (0.7ms)
227
+ Completed 500 Internal Server Error in 2ms
228
+
229
+ ActionView::Template::Error (Missing partial ../components/header/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
230
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
231
+ ):
232
+ 1: Hello
233
+ 2: <%= ui_component "header" %>
234
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___211413235758374342_70362814297980'
235
+
236
+
237
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
238
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
239
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.4ms)
240
+
241
+
242
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:50:51 -0300
243
+ Processing by HomeController#index as HTML
244
+ Rendered home/index.html.erb (0.8ms)
245
+ Completed 500 Internal Server Error in 2ms
246
+
247
+ ActionView::Template::Error (Missing partial ../components/header/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
248
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
249
+ ):
250
+ 1: Hello
251
+ 2: <%= ui_component "header" %>
252
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___211413235758374342_70362814297980'
253
+
254
+
255
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
256
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
257
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.9ms)
258
+
259
+
260
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:51:56 -0300
261
+ Processing by HomeController#index as HTML
262
+ Rendered home/index.html.erb (0.8ms)
263
+ Completed 500 Internal Server Error in 2ms
264
+
265
+ ActionView::Template::Error (Missing partial ../components/header/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
266
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
267
+ ):
268
+ 1: Hello
269
+ 2: <%= ui_component "header" %>
270
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___211413235758374342_70362814297980'
271
+
272
+
273
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
274
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
275
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.2ms)
276
+
277
+
278
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:51:57 -0300
279
+ Processing by HomeController#index as HTML
280
+ Rendered home/index.html.erb (1.0ms)
281
+ Completed 500 Internal Server Error in 2ms
282
+
283
+ ActionView::Template::Error (Missing partial ../components/header/_header with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
284
+ * "/Users/nachogutierrez/Projects/mountain_view/test/dummy/app/views"
285
+ ):
286
+ 1: Hello
287
+ 2: <%= ui_component "header" %>
288
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___211413235758374342_70362814297980'
289
+
290
+
291
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
292
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
293
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.8ms)
294
+
295
+
296
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:52:03 -0300
297
+ Processing by HomeController#index as HTML
298
+ Rendered components/header/_header.html.erb (0.3ms)
299
+ Rendered home/index.html.erb (4.7ms)
300
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
301
+
302
+
303
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:53:35 -0300
304
+ Processing by HomeController#index as HTML
305
+ Rendered components/header/_header.html.erb (9.3ms)
306
+ Rendered home/index.html.erb (10.1ms)
307
+ Completed 500 Internal Server Error in 11ms
308
+
309
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fe7828d8350>:0x007fe784afe560>):
310
+ 1: <h1>Header: <%= properties[:title] %></h1>
311
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2723837880396716152_70316170113160'
312
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___95828743160081647_70316170143260'
313
+
314
+
315
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
316
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms)
317
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.5ms)
318
+
319
+
320
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:54:12 -0300
321
+ Processing by HomeController#index as HTML
322
+ Rendered components/header/_header.html.erb (5.9ms)
323
+ Rendered home/index.html.erb (6.8ms)
324
+ Completed 500 Internal Server Error in 8ms
325
+
326
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fe7828d8350>:0x007fe7826c5f90>):
327
+ 1: <h1>Header: <%= properties[:title] %></h1>
328
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2723837880396716152_70316170113160'
329
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___95828743160081647_70316151152880'
330
+
331
+
332
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
333
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
334
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.6ms)
335
+
336
+
337
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:54:13 -0300
338
+ Processing by HomeController#index as HTML
339
+ Rendered components/header/_header.html.erb (5.3ms)
340
+ Rendered home/index.html.erb (5.9ms)
341
+ Completed 500 Internal Server Error in 7ms
342
+
343
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fe7828d8350>:0x007fe7839cc008>):
344
+ 1: <h1>Header: <%= properties[:title] %></h1>
345
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2723837880396716152_70316170113160'
346
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___95828743160081647_70316151152880'
347
+
348
+
349
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
350
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
351
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.5ms)
352
+
353
+
354
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:54:58 -0300
355
+ Processing by HomeController#index as HTML
356
+ Rendered components/header/_header.html.erb (1.1ms)
357
+ Rendered home/index.html.erb (2.2ms)
358
+ Completed 500 Internal Server Error in 4ms
359
+
360
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
361
+ 1: <h1>Header: <%= @properties[:title] %></h1>
362
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2723837880396716152_70316168858960'
363
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___95828743160081647_70316149863540'
364
+
365
+
366
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
367
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
368
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.6ms)
369
+
370
+
371
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:55:09 -0300
372
+ Processing by HomeController#index as HTML
373
+ Rendered components/header/_header.html.erb (2.7ms)
374
+ Rendered home/index.html.erb (7.5ms)
375
+ Completed 500 Internal Server Error in 15ms
376
+
377
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
378
+ 1: <h1>Header: <%= @properties[:title] %></h1>
379
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___86982684612564965_70201832048120'
380
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__1968449639044950630_70201832213260'
381
+
382
+
383
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
384
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.6ms)
385
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.1ms)
386
+
387
+
388
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:55:18 -0300
389
+ Processing by HomeController#index as HTML
390
+ Rendered components/header/_header.html.erb (0.6ms)
391
+ Rendered home/index.html.erb (1.5ms)
392
+ Completed 500 Internal Server Error in 3ms
393
+
394
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
395
+ 1: <h1>Header: <%= @properties[:title] %></h1>
396
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___86982684612564965_70201832048120'
397
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__1968449639044950630_70201828349440'
398
+
399
+
400
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
401
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
402
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.3ms)
403
+
404
+
405
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:56:03 -0300
406
+ Processing by HomeController#index as HTML
407
+ Rendered components/header/_header.html.erb (4.5ms)
408
+ Rendered home/index.html.erb (5.3ms)
409
+ Completed 500 Internal Server Error in 7ms
410
+
411
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fb2462d2af8>:0x007fb2460591f0>):
412
+ 1: <h1>Header: <%= properties[:title] %></h1>
413
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___86982684612564965_70201827804180'
414
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__1968449639044950630_70201827826580'
415
+
416
+
417
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
418
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
419
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.1ms)
420
+
421
+
422
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:56:16 -0300
423
+ Processing by HomeController#index as HTML
424
+ Rendered components/header/_header.html.erb (4.8ms)
425
+ Rendered home/index.html.erb (5.4ms)
426
+ Completed 500 Internal Server Error in 6ms
427
+
428
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fb2462d2af8>:0x007fb2434379c8>):
429
+ 1: <h1>Header: <%= properties %></h1>
430
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___86982684612564965_70201798761040'
431
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__1968449639044950630_70201827826580'
432
+
433
+
434
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
435
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
436
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
437
+
438
+
439
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:56:19 -0300
440
+ Processing by HomeController#index as HTML
441
+ Rendered components/header/_header.html.erb (0.3ms)
442
+ Rendered home/index.html.erb (0.9ms)
443
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
444
+
445
+
446
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:57:07 -0300
447
+ Processing by HomeController#index as HTML
448
+ Rendered components/header/_header.html.erb (7.0ms)
449
+ Rendered home/index.html.erb (12.1ms)
450
+ Completed 500 Internal Server Error in 19ms
451
+
452
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fbbd538b880>:0x007fbbd538ad40>):
453
+ 1: <h1>Header: <%= properties %></h1>
454
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb__2502036591546474849_70222356140220'
455
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__4023094690178787930_70222356304380'
456
+
457
+
458
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
459
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
460
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
461
+
462
+
463
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:57:12 -0300
464
+ Processing by HomeController#index as HTML
465
+ Rendered components/header/_header.html.erb (0.4ms)
466
+ Rendered home/index.html.erb (1.0ms)
467
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
468
+
469
+
470
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:57:23 -0300
471
+ Processing by HomeController#index as HTML
472
+ Rendered components/header/_header.html.erb (1.1ms)
473
+ Rendered home/index.html.erb (1.7ms)
474
+ Completed 500 Internal Server Error in 3ms
475
+
476
+ ActionView::Template::Error (undefined method `[]' for nil:NilClass):
477
+ 1: <h1>Header: <%= @properties[:title] %></h1>
478
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb__2502036591546474849_70222363590920'
479
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb__4023094690178787930_70222356304380'
480
+
481
+
482
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
483
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
484
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.9ms)
485
+
486
+
487
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:58:34 -0300
488
+ Processing by HomeController#index as HTML
489
+ Rendered components/header/_header.html.erb (6.5ms)
490
+ Rendered home/index.html.erb (11.2ms)
491
+ Completed 500 Internal Server Error in 18ms
492
+
493
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007f800fb220a0>:0x007f800fb21808>):
494
+ 1: <h1>Header: <%= properties %></h1>
495
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___130042572688453892_70093997688020'
496
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___4280927864009763656_70093997822460'
497
+
498
+
499
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
500
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.8ms)
501
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.0ms)
502
+
503
+
504
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:59:02 -0300
505
+ Processing by HomeController#index as HTML
506
+ Rendered components/header/_header.html.erb (0.4ms)
507
+ Rendered home/index.html.erb (1.0ms)
508
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
509
+
510
+
511
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:59:19 -0300
512
+ Processing by HomeController#index as HTML
513
+ Rendered components/header/_header.html.erb (0.0ms)
514
+ Rendered home/index.html.erb (0.9ms)
515
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
516
+
517
+
518
+ Started GET "/" for 127.0.0.1 at 2015-03-18 23:59:54 -0300
519
+ Processing by HomeController#index as HTML
520
+ Rendered components/header/_header.html.erb (0.3ms)
521
+ Rendered home/index.html.erb (4.8ms)
522
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
523
+
524
+
525
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:02:14 -0300
526
+ Processing by HomeController#index as HTML
527
+ Rendered components/header/_header.html.erb (0.1ms)
528
+ Rendered home/index.html.erb (1.2ms)
529
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
530
+
531
+
532
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:07:17 -0300
533
+ Processing by HomeController#index as HTML
534
+ Rendered components/header/_header.html.erb (7.5ms)
535
+ Rendered home/index.html.erb (12.3ms)
536
+ Completed 500 Internal Server Error in 19ms
537
+
538
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007ff4ee12e3b0>:0x007ff4ee12d640>):
539
+ 1: <h1>This is a header component<%= properties %></h1>
540
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2306642000379566815_70344969379560'
541
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb___861341187610711316_70344969553680'
542
+
543
+
544
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
545
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
546
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.1ms)
547
+
548
+
549
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:09:05 -0300
550
+ Processing by HomeController#index as HTML
551
+ Rendered components/header/_header.html.erb (6.1ms)
552
+ Rendered home/index.html.erb (7.0ms)
553
+ Completed 500 Internal Server Error in 9ms
554
+
555
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007ff4ee12e3b0>:0x007ff4ec96d2a8>):
556
+ 1: <h1>This is a header component<%= properties %></h1>
557
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___2306642000379566815_70344969379560'
558
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb___861341187610711316_70344969553680'
559
+
560
+
561
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
562
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
563
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
564
+
565
+
566
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:09:12 -0300
567
+ Processing by HomeController#index as HTML
568
+ Rendered components/header/_header.html.erb (7.0ms)
569
+ Rendered home/index.html.erb (11.5ms)
570
+ Completed 500 Internal Server Error in 18ms
571
+
572
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007ff54c2f6c20>:0x007ff54c2f60e0>):
573
+ 1: <h1>This is a header component<%= properties %></h1>
574
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___683158744739080163_70345760646340'
575
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__159992421215604777_70345760811740'
576
+
577
+
578
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
579
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
580
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.4ms)
581
+
582
+
583
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:09:14 -0300
584
+ Processing by HomeController#index as HTML
585
+ Rendered components/header/_header.html.erb (5.8ms)
586
+ Rendered home/index.html.erb (6.4ms)
587
+ Completed 500 Internal Server Error in 8ms
588
+
589
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007ff54c2f6c20>:0x007ff54cef0be8>):
590
+ 1: <h1>This is a header component<%= properties %></h1>
591
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___683158744739080163_70345760646340'
592
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__159992421215604777_70345760811740'
593
+
594
+
595
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
596
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
597
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (7.7ms)
598
+
599
+
600
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:09:54 -0300
601
+ Processing by HomeController#index as HTML
602
+ Rendered components/header/_header.html.erb (0.4ms)
603
+ Rendered home/index.html.erb (0.9ms)
604
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
605
+
606
+
607
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:12:10 -0300
608
+ Processing by HomeController#index as HTML
609
+ Rendered components/header/_header.html.erb (6.5ms)
610
+ Rendered home/index.html.erb (7.5ms)
611
+ Completed 500 Internal Server Error in 9ms
612
+
613
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007ff54c2f6c20>:0x007ff54cd2b858>):
614
+ 1: <h1>This is a header component<%= properties[:title] %></h1>
615
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb___683158744739080163_70345766261300'
616
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb__159992421215604777_70345766293260'
617
+
618
+
619
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
620
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
621
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.7ms)
622
+
623
+
624
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:12:21 -0300
625
+ Processing by HomeController#index as HTML
626
+ Rendered components/header/_header.html.erb (0.3ms)
627
+ Rendered home/index.html.erb (3.4ms)
628
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
629
+
630
+
631
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:12:31 -0300
632
+ Processing by HomeController#index as HTML
633
+ Rendered components/header/_header.html.erb (0.4ms)
634
+ Rendered home/index.html.erb (1.0ms)
635
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
636
+
637
+
638
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:13:11 -0300
639
+ Processing by HomeController#index as HTML
640
+ Rendered components/header/_header.html.erb (0.3ms)
641
+ Rendered home/index.html.erb (5.7ms)
642
+ Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
643
+
644
+
645
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:13:13 -0300
646
+ Processing by HomeController#index as HTML
647
+ Rendered components/header/_header.html.erb (0.1ms)
648
+ Rendered home/index.html.erb (0.8ms)
649
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
650
+
651
+
652
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:14:20 -0300
653
+ Processing by HomeController#index as HTML
654
+ Rendered components/header/_header.html.erb (15.6ms)
655
+ Rendered home/index.html.erb (19.0ms)
656
+ Completed 500 Internal Server Error in 24ms
657
+
658
+ ActionView::Template::Error (undefined local variable or method `properties' for #<#<Class:0x007fab32721f48>:0x007fab327210e8>):
659
+ 1: <h1>This is a header component with the title: <%= properties[:title] %></h1>
660
+ app/views/components/header/_header.html.erb:1:in `_app_views_components_header__header_html_erb__3018989173238676481_70186630929540'
661
+ app/views/home/index.html.erb:1:in `_app_views_home_index_html_erb___145285534541651530_70186631103920'
662
+
663
+
664
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
665
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms)
666
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.0ms)
667
+
668
+
669
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:14:32 -0300
670
+ Processing by HomeController#index as HTML
671
+ Rendered components/header/_header.html.erb (0.3ms)
672
+ Rendered home/index.html.erb (2.9ms)
673
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
674
+
675
+
676
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:16:47 -0300
677
+ Processing by HomeController#index as HTML
678
+ Rendered components/header/_header.html.erb (0.4ms)
679
+ Rendered home/index.html.erb (1.1ms)
680
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
681
+
682
+
683
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:17:46 -0300
684
+ Processing by HomeController#index as HTML
685
+ Rendered components/header/_header.html.erb (0.5ms)
686
+ Rendered home/index.html.erb (1.2ms)
687
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
688
+
689
+
690
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:17:55 -0300
691
+ Processing by HomeController#index as HTML
692
+ Rendered components/header/_header.html.erb (0.4ms)
693
+ Rendered home/index.html.erb (1.0ms)
694
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
695
+
696
+
697
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:18:29 -0300
698
+ Processing by HomeController#index as HTML
699
+ Rendered components/header/_header.html.erb (17.0ms)
700
+ Rendered home/index.html.erb (17.9ms)
701
+ Completed 500 Internal Server Error in 19ms
702
+
703
+ ActionView::Template::Error (undefined local variable or method `pepe' for #<#<Class:0x007f89b4a14650>:0x007f89b496c018>):
704
+ 1: <h1>This is a header component with the title: <%= properties[:title] %></h1>
705
+ 2: <%= pepe %>
706
+ app/views/components/header/_header.html.erb:2:in `_app_views_components_header__header_html_erb__2795358383942760998_70114708469100'
707
+ app/views/home/index.html.erb:2:in `_app_views_home_index_html_erb___541392522914492611_70114708500920'
708
+
709
+
710
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
711
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms)
712
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.9ms)
713
+
714
+
715
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:18:49 -0300
716
+ Processing by HomeController#index as HTML
717
+ Rendered components/header/_header.html.erb (0.3ms)
718
+ Rendered home/index.html.erb (1.2ms)
719
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
720
+
721
+
722
+ Started GET "/" for 127.0.0.1 at 2015-03-19 00:22:18 -0300
723
+ Processing by HomeController#index as HTML
724
+ Rendered components/header/_header.html.erb (0.3ms)
725
+ Rendered home/index.html.erb (1.5ms)
726
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
727
+
728
+
729
+ Started GET "/" for 127.0.0.1 at 2015-03-19 09:31:03 -0300
730
+ Processing by HomeController#index as HTML
731
+ Rendered components/header/_header.html.erb (1.0ms)
732
+ Rendered home/index.html.erb (3.9ms)
733
+ Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
734
+
735
+
736
+ Started GET "/" for 127.0.0.1 at 2015-03-19 09:32:02 -0300
737
+ Processing by HomeController#index as HTML
738
+ Rendered components/header/_header.html.erb (0.1ms)
739
+ Rendered home/index.html.erb (1.0ms)
740
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
741
+
742
+
743
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:18:44 -0300
744
+ Processing by HomeController#index as HTML
745
+ Rendered app/components/header/_header.html.erb (0.4ms)
746
+ Rendered home/index.html.erb (5.3ms)
747
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
748
+
749
+
750
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:13 -0300
751
+ Processing by HomeController#index as HTML
752
+ Rendered app/components/header/_header.html.erb (0.6ms)
753
+ Rendered home/index.html.erb (5.9ms)
754
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
755
+
756
+
757
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:28 -0300
758
+ Processing by HomeController#index as HTML
759
+ Rendered app/components/header/_header.html.erb (0.1ms)
760
+ Rendered home/index.html.erb (1.1ms)
761
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
762
+
763
+
764
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:29 -0300
765
+ Processing by HomeController#index as HTML
766
+ Rendered app/components/header/_header.html.erb (0.0ms)
767
+ Rendered home/index.html.erb (0.7ms)
768
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
769
+
770
+
771
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:30 -0300
772
+ Processing by HomeController#index as HTML
773
+ Rendered app/components/header/_header.html.erb (0.0ms)
774
+ Rendered home/index.html.erb (0.6ms)
775
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
776
+
777
+
778
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:31 -0300
779
+ Processing by HomeController#index as HTML
780
+ Rendered app/components/header/_header.html.erb (0.1ms)
781
+ Rendered home/index.html.erb (1.5ms)
782
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
783
+
784
+
785
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:31 -0300
786
+ Processing by HomeController#index as HTML
787
+ Rendered app/components/header/_header.html.erb (0.1ms)
788
+ Rendered home/index.html.erb (0.7ms)
789
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
790
+
791
+
792
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:31 -0300
793
+ Processing by HomeController#index as HTML
794
+ Rendered app/components/header/_header.html.erb (0.1ms)
795
+ Rendered home/index.html.erb (1.0ms)
796
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
797
+
798
+
799
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:43 -0300
800
+ Processing by HomeController#index as HTML
801
+ Rendered app/components/header/_header.html.erb (0.1ms)
802
+ Rendered home/index.html.erb (1.1ms)
803
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
804
+
805
+
806
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:54 -0300
807
+ Processing by HomeController#index as HTML
808
+ Rendered app/components/header/_header.html.erb (0.0ms)
809
+ Rendered home/index.html.erb (0.7ms)
810
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
811
+
812
+
813
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:55 -0300
814
+ Processing by HomeController#index as HTML
815
+ Rendered app/components/header/_header.html.erb (0.0ms)
816
+ Rendered home/index.html.erb (0.7ms)
817
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
818
+
819
+
820
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:56 -0300
821
+ Processing by HomeController#index as HTML
822
+ Rendered app/components/header/_header.html.erb (0.0ms)
823
+ Rendered home/index.html.erb (0.7ms)
824
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
825
+
826
+
827
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:56 -0300
828
+ Processing by HomeController#index as HTML
829
+ Rendered app/components/header/_header.html.erb (0.1ms)
830
+ Rendered home/index.html.erb (0.9ms)
831
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
832
+
833
+
834
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:57 -0300
835
+ Processing by HomeController#index as HTML
836
+ Rendered app/components/header/_header.html.erb (0.1ms)
837
+ Rendered home/index.html.erb (1.2ms)
838
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
839
+
840
+
841
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:57 -0300
842
+ Processing by HomeController#index as HTML
843
+ Rendered app/components/header/_header.html.erb (0.1ms)
844
+ Rendered home/index.html.erb (0.9ms)
845
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
846
+
847
+
848
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:57 -0300
849
+ Processing by HomeController#index as HTML
850
+ Rendered app/components/header/_header.html.erb (0.1ms)
851
+ Rendered home/index.html.erb (1.4ms)
852
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
853
+
854
+
855
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:57:58 -0300
856
+ Processing by HomeController#index as HTML
857
+ Rendered app/components/header/_header.html.erb (0.1ms)
858
+ Rendered home/index.html.erb (1.5ms)
859
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
860
+
861
+
862
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:03 -0300
863
+ Processing by HomeController#index as HTML
864
+ Rendered app/components/header/_header.html.erb (0.1ms)
865
+ Rendered home/index.html.erb (2.3ms)
866
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
867
+
868
+
869
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:04 -0300
870
+ Processing by HomeController#index as HTML
871
+ Rendered app/components/header/_header.html.erb (0.0ms)
872
+ Rendered home/index.html.erb (0.6ms)
873
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
874
+
875
+
876
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:04 -0300
877
+ Processing by HomeController#index as HTML
878
+ Rendered app/components/header/_header.html.erb (0.0ms)
879
+ Rendered home/index.html.erb (0.9ms)
880
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
881
+
882
+
883
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:05 -0300
884
+ Processing by HomeController#index as HTML
885
+ Rendered app/components/header/_header.html.erb (0.1ms)
886
+ Rendered home/index.html.erb (0.9ms)
887
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
888
+
889
+
890
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:05 -0300
891
+ Processing by HomeController#index as HTML
892
+ Rendered app/components/header/_header.html.erb (0.3ms)
893
+ Rendered home/index.html.erb (1.8ms)
894
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
895
+
896
+
897
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:05 -0300
898
+ Processing by HomeController#index as HTML
899
+ Rendered app/components/header/_header.html.erb (0.1ms)
900
+ Rendered home/index.html.erb (0.9ms)
901
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
902
+
903
+
904
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:23 -0300
905
+ Processing by HomeController#index as HTML
906
+ Rendered app/components/header/_header.html.erb (0.2ms)
907
+ Rendered home/index.html.erb (5.3ms)
908
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
909
+
910
+
911
+ Started GET "/" for 127.0.0.1 at 2015-03-19 20:58:28 -0300
912
+ Processing by HomeController#index as HTML
913
+ Rendered app/components/header/_header.html.erb (0.4ms)
914
+ Rendered home/index.html.erb (4.6ms)
915
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
916
+
917
+
918
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:04 -0300
919
+ Processing by HomeController#index as HTML
920
+ Rendered app/components/header/_header.html.erb (0.4ms)
921
+ Rendered home/index.html.erb (5.7ms)
922
+ Completed 200 OK in 14ms (Views: 13.8ms | ActiveRecord: 0.0ms)
923
+
924
+
925
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:05 -0300
926
+ Processing by HomeController#index as HTML
927
+ Rendered app/components/header/_header.html.erb (0.0ms)
928
+ Rendered home/index.html.erb (0.7ms)
929
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
930
+
931
+
932
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:06 -0300
933
+ Processing by HomeController#index as HTML
934
+ Rendered app/components/header/_header.html.erb (0.1ms)
935
+ Rendered home/index.html.erb (0.8ms)
936
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
937
+
938
+
939
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:42 -0300
940
+ Processing by HomeController#index as HTML
941
+ Rendered app/components/header/_header.html.erb (0.1ms)
942
+ Rendered home/index.html.erb (1.3ms)
943
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
944
+
945
+
946
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:43 -0300
947
+ Processing by HomeController#index as HTML
948
+ Rendered app/components/header/_header.html.erb (0.1ms)
949
+ Rendered home/index.html.erb (0.7ms)
950
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
951
+
952
+
953
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:49 -0300
954
+ Processing by HomeController#index as HTML
955
+ Rendered app/components/header/_header.html.erb (0.4ms)
956
+ Rendered home/index.html.erb (4.8ms)
957
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
958
+
959
+
960
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:50 -0300
961
+ Processing by HomeController#index as HTML
962
+ Rendered app/components/header/_header.html.erb (0.0ms)
963
+ Rendered home/index.html.erb (0.7ms)
964
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
965
+
966
+
967
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:51 -0300
968
+ Processing by HomeController#index as HTML
969
+ Rendered app/components/header/_header.html.erb (0.0ms)
970
+ Rendered home/index.html.erb (0.8ms)
971
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
972
+
973
+
974
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:51 -0300
975
+ Processing by HomeController#index as HTML
976
+ Rendered app/components/header/_header.html.erb (0.1ms)
977
+ Rendered home/index.html.erb (2.6ms)
978
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
979
+
980
+
981
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:05:51 -0300
982
+ Processing by HomeController#index as HTML
983
+ Rendered app/components/header/_header.html.erb (0.1ms)
984
+ Rendered home/index.html.erb (2.2ms)
985
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
986
+
987
+
988
+ Started GET "/" for 127.0.0.1 at 2015-03-19 21:08:39 -0300
989
+ Processing by HomeController#index as HTML
990
+ Rendered app/components/header/_header.html.erb (0.4ms)
991
+ Rendered home/index.html.erb (5.6ms)
992
+ Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
993
+
994
+
995
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:32:38 -0300
996
+ Processing by HomeController#index as HTML
997
+ Rendered app/components/header/_header.html.erb (0.4ms)
998
+ Rendered home/index.html.erb (5.7ms)
999
+ Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
1000
+
1001
+
1002
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:33:36 -0300
1003
+ Processing by HomeController#index as HTML
1004
+ Rendered app/components/header/_header.html.erb (0.1ms)
1005
+ Rendered home/index.html.erb (5.3ms)
1006
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1007
+
1008
+
1009
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:33:37 -0300
1010
+ Processing by HomeController#index as HTML
1011
+ Rendered app/components/header/_header.html.erb (0.1ms)
1012
+ Rendered home/index.html.erb (1.2ms)
1013
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1014
+
1015
+
1016
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:34:15 -0300
1017
+ Processing by HomeController#index as HTML
1018
+ Rendered app/components/header/_header.html.erb (0.0ms)
1019
+ Rendered home/index.html.erb (0.7ms)
1020
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1021
+
1022
+
1023
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:34:17 -0300
1024
+ Processing by HomeController#index as HTML
1025
+ Rendered app/components/header/_header.html.erb (0.0ms)
1026
+ Rendered home/index.html.erb (0.6ms)
1027
+ Completed 200 OK in 2ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1028
+
1029
+
1030
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:34:35 -0300
1031
+ Processing by HomeController#index as HTML
1032
+ Rendered app/components/header/_header.html.erb (0.1ms)
1033
+ Rendered home/index.html.erb within layouts/application (1.2ms)
1034
+ Completed 500 Internal Server Error in 22ms
1035
+
1036
+ LoadError (cannot load such file -- sass
1037
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/header.css.scss)):
1038
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1120074382101898140_70222324757200'
1039
+
1040
+
1041
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
1042
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1043
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.1ms)
1044
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (29.2ms)
1045
+
1046
+
1047
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:34:38 -0300
1048
+ Processing by HomeController#index as HTML
1049
+ Rendered app/components/header/_header.html.erb (0.1ms)
1050
+ Rendered home/index.html.erb within layouts/application (1.0ms)
1051
+ Completed 500 Internal Server Error in 8ms
1052
+
1053
+ LoadError (cannot load such file -- sass
1054
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/header.css.scss)):
1055
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1120074382101898140_70222324757200'
1056
+
1057
+
1058
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
1059
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1060
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1061
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.2ms)
1062
+
1063
+
1064
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:35:36 -0300
1065
+ Processing by HomeController#index as HTML
1066
+ Rendered app/components/header/_header.html.erb (0.1ms)
1067
+ Rendered home/index.html.erb within layouts/application (1.2ms)
1068
+ Completed 200 OK in 48ms (Views: 48.0ms | ActiveRecord: 0.0ms)
1069
+
1070
+
1071
+ Started GET "/assets/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:35:36 -0300
1072
+
1073
+
1074
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:35:36 -0300
1075
+
1076
+
1077
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:35:36 -0300
1078
+
1079
+
1080
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:36:40 -0300
1081
+ Processing by HomeController#index as HTML
1082
+ Rendered app/components/header/_header.html.erb (0.4ms)
1083
+ Rendered home/index.html.erb within layouts/application (5.1ms)
1084
+ Completed 500 Internal Server Error in 21ms
1085
+
1086
+ ActionView::Template::Error (couldn't find file 'header'
1087
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1088
+ 2: <html>
1089
+ 3: <head>
1090
+ 4: <title>Dummy</title>
1091
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1092
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1093
+ 7: <%= csrf_meta_tags %>
1094
+ 8: </head>
1095
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1807291966938317119_70328175612260'
1096
+
1097
+
1098
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1099
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms)
1100
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.5ms)
1101
+
1102
+
1103
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:37:49 -0300
1104
+ Processing by HomeController#index as HTML
1105
+ Rendered app/components/header/_header.html.erb (0.3ms)
1106
+ Rendered home/index.html.erb within layouts/application (4.4ms)
1107
+ Completed 500 Internal Server Error in 27ms
1108
+
1109
+ ActionView::Template::Error (couldn't find file 'header'
1110
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1111
+ 2: <html>
1112
+ 3: <head>
1113
+ 4: <title>Dummy</title>
1114
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1115
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1116
+ 7: <%= csrf_meta_tags %>
1117
+ 8: </head>
1118
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2140520064024566802_70103448178960'
1119
+
1120
+
1121
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1122
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.8ms)
1123
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms)
1124
+
1125
+
1126
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:38:05 -0300
1127
+ Processing by HomeController#index as HTML
1128
+ Rendered app/components/header/_header.html.erb (0.1ms)
1129
+ Rendered home/index.html.erb within layouts/application (1.1ms)
1130
+ Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms)
1131
+
1132
+
1133
+ Started GET "/assets/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:38:05 -0300
1134
+
1135
+
1136
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:38:05 -0300
1137
+
1138
+
1139
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:38:05 -0300
1140
+
1141
+
1142
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:39:18 -0300
1143
+ Processing by HomeController#index as HTML
1144
+ Rendered app/components/header/_header.html.erb (0.4ms)
1145
+ Rendered home/index.html.erb within layouts/application (5.6ms)
1146
+ Completed 500 Internal Server Error in 22ms
1147
+
1148
+ ActionView::Template::Error (couldn't find file 'header'
1149
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1150
+ 2: <html>
1151
+ 3: <head>
1152
+ 4: <title>Dummy</title>
1153
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1154
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1155
+ 7: <%= csrf_meta_tags %>
1156
+ 8: </head>
1157
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2078863717498559759_70156001085400'
1158
+
1159
+
1160
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1161
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
1162
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (22.3ms)
1163
+
1164
+
1165
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:40:03 -0300
1166
+ Processing by HomeController#index as HTML
1167
+ Rendered app/components/header/_header.html.erb (0.3ms)
1168
+ Rendered home/index.html.erb within layouts/application (5.0ms)
1169
+ Completed 500 Internal Server Error in 21ms
1170
+
1171
+ ActionView::Template::Error (couldn't find file 'header'
1172
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1173
+ 2: <html>
1174
+ 3: <head>
1175
+ 4: <title>Dummy</title>
1176
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1177
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1178
+ 7: <%= csrf_meta_tags %>
1179
+ 8: </head>
1180
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___711686269082108309_70181423362420'
1181
+
1182
+
1183
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1184
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.1ms)
1185
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.3ms)
1186
+
1187
+
1188
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:40:04 -0300
1189
+ Processing by HomeController#index as HTML
1190
+ Rendered app/components/header/_header.html.erb (0.1ms)
1191
+ Rendered home/index.html.erb within layouts/application (0.8ms)
1192
+ Completed 500 Internal Server Error in 8ms
1193
+
1194
+ ActionView::Template::Error (couldn't find file 'header'
1195
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1196
+ 2: <html>
1197
+ 3: <head>
1198
+ 4: <title>Dummy</title>
1199
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1200
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1201
+ 7: <%= csrf_meta_tags %>
1202
+ 8: </head>
1203
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___711686269082108309_70181423362420'
1204
+
1205
+
1206
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1207
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1208
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.6ms)
1209
+
1210
+
1211
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:40:26 -0300
1212
+ Processing by HomeController#index as HTML
1213
+ Rendered app/components/header/_header.html.erb (0.7ms)
1214
+ Rendered home/index.html.erb within layouts/application (8.2ms)
1215
+ Completed 500 Internal Server Error in 23ms
1216
+
1217
+ ActionView::Template::Error (couldn't find file 'header'
1218
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1219
+ 2: <html>
1220
+ 3: <head>
1221
+ 4: <title>Dummy</title>
1222
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1223
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1224
+ 7: <%= csrf_meta_tags %>
1225
+ 8: </head>
1226
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1832591884496706538_70251342820460'
1227
+
1228
+
1229
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1230
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.0ms)
1231
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.1ms)
1232
+
1233
+
1234
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:40:41 -0300
1235
+ Processing by HomeController#index as HTML
1236
+ Rendered app/components/header/_header.html.erb (0.4ms)
1237
+ Rendered home/index.html.erb within layouts/application (5.6ms)
1238
+ Completed 500 Internal Server Error in 22ms
1239
+
1240
+ ActionView::Template::Error (couldn't find file 'header'
1241
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1242
+ 2: <html>
1243
+ 3: <head>
1244
+ 4: <title>Dummy</title>
1245
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1246
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1247
+ 7: <%= csrf_meta_tags %>
1248
+ 8: </head>
1249
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2578009134118848156_70112016053400'
1250
+
1251
+
1252
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1253
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms)
1254
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.9ms)
1255
+
1256
+
1257
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:40:56 -0300
1258
+ Processing by HomeController#index as HTML
1259
+ Rendered app/components/header/_header.html.erb (0.4ms)
1260
+ Rendered home/index.html.erb within layouts/application (9.0ms)
1261
+ Completed 500 Internal Server Error in 27ms
1262
+
1263
+ ActionView::Template::Error (couldn't find file 'header'
1264
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1265
+ 2: <html>
1266
+ 3: <head>
1267
+ 4: <title>Dummy</title>
1268
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1269
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1270
+ 7: <%= csrf_meta_tags %>
1271
+ 8: </head>
1272
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__1607375515824273623_70222352028020'
1273
+
1274
+
1275
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1276
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.4ms)
1277
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (23.4ms)
1278
+
1279
+
1280
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:41:09 -0300
1281
+ Processing by HomeController#index as HTML
1282
+ Rendered app/components/header/_header.html.erb (0.3ms)
1283
+ Rendered home/index.html.erb within layouts/application (3.9ms)
1284
+ Completed 500 Internal Server Error in 16ms
1285
+
1286
+ ActionView::Template::Error (couldn't find file 'header'
1287
+ (in /Users/nachogutierrez/Projects/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
1288
+ 2: <html>
1289
+ 3: <head>
1290
+ 4: <title>Dummy</title>
1291
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1292
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1293
+ 7: <%= csrf_meta_tags %>
1294
+ 8: </head>
1295
+ app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___218371776475315128_70153456014520'
1296
+
1297
+
1298
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1299
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms)
1300
+ Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.6ms)
1301
+
1302
+
1303
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:41:51 -0300
1304
+ Processing by HomeController#index as HTML
1305
+ Rendered app/components/header/_header.html.erb (0.3ms)
1306
+ Rendered home/index.html.erb within layouts/application (3.0ms)
1307
+ Completed 200 OK in 36ms (Views: 35.7ms | ActiveRecord: 0.0ms)
1308
+
1309
+
1310
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:41:51 -0300
1311
+
1312
+
1313
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:41:51 -0300
1314
+
1315
+
1316
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:41:51 -0300
1317
+
1318
+
1319
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:42:18 -0300
1320
+ Processing by HomeController#index as HTML
1321
+ Rendered app/components/header/_header.html.erb (0.1ms)
1322
+ Rendered home/index.html.erb within layouts/application (0.8ms)
1323
+ Completed 200 OK in 50ms (Views: 50.0ms | ActiveRecord: 0.0ms)
1324
+
1325
+
1326
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:18 -0300
1327
+
1328
+
1329
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:18 -0300
1330
+
1331
+
1332
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:18 -0300
1333
+
1334
+
1335
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:42:18 -0300
1336
+
1337
+
1338
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:42:19 -0300
1339
+ Processing by HomeController#index as HTML
1340
+ Rendered app/components/header/_header.html.erb (0.0ms)
1341
+ Rendered home/index.html.erb within layouts/application (0.7ms)
1342
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
1343
+
1344
+
1345
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:19 -0300
1346
+
1347
+
1348
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:19 -0300
1349
+
1350
+
1351
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:19 -0300
1352
+
1353
+
1354
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:42:19 -0300
1355
+
1356
+
1357
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:42:54 -0300
1358
+ Processing by HomeController#index as HTML
1359
+ Rendered app/components/header/_header.html.erb (0.0ms)
1360
+ Rendered home/index.html.erb within layouts/application (0.9ms)
1361
+ Completed 200 OK in 37ms (Views: 37.1ms | ActiveRecord: 0.0ms)
1362
+
1363
+
1364
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:54 -0300
1365
+
1366
+
1367
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:54 -0300
1368
+
1369
+
1370
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:42:54 -0300
1371
+
1372
+
1373
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:42:54 -0300
1374
+
1375
+
1376
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:43:56 -0300
1377
+ Processing by HomeController#index as HTML
1378
+ Rendered app/components/header/_header.html.erb (0.1ms)
1379
+ Rendered home/index.html.erb within layouts/application (1.0ms)
1380
+ Completed 200 OK in 35ms (Views: 35.0ms | ActiveRecord: 0.0ms)
1381
+
1382
+
1383
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:43:56 -0300
1384
+
1385
+
1386
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:43:56 -0300
1387
+
1388
+
1389
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:43:56 -0300
1390
+
1391
+
1392
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:43:56 -0300
1393
+
1394
+
1395
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:44:46 -0300
1396
+ Processing by HomeController#index as HTML
1397
+ Rendered app/components/header/_header.html.erb (0.5ms)
1398
+ Rendered home/index.html.erb within layouts/application (1.2ms)
1399
+ Completed 200 OK in 35ms (Views: 34.9ms | ActiveRecord: 0.0ms)
1400
+
1401
+
1402
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:46 -0300
1403
+
1404
+
1405
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:46 -0300
1406
+
1407
+
1408
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:46 -0300
1409
+
1410
+
1411
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:44:46 -0300
1412
+
1413
+
1414
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:44:59 -0300
1415
+ Processing by HomeController#index as HTML
1416
+ Rendered app/components/header/_header.html.erb (0.0ms)
1417
+ Rendered home/index.html.erb within layouts/application (0.6ms)
1418
+ Completed 200 OK in 33ms (Views: 32.7ms | ActiveRecord: 0.0ms)
1419
+
1420
+
1421
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:59 -0300
1422
+
1423
+
1424
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:59 -0300
1425
+
1426
+
1427
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:44:59 -0300
1428
+
1429
+
1430
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:44:59 -0300
1431
+
1432
+
1433
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:45:12 -0300
1434
+ Processing by HomeController#index as HTML
1435
+ Rendered app/components/header/_header.html.erb (0.1ms)
1436
+ Rendered home/index.html.erb within layouts/application (0.7ms)
1437
+ Completed 200 OK in 49ms (Views: 48.7ms | ActiveRecord: 0.0ms)
1438
+
1439
+
1440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:12 -0300
1441
+
1442
+
1443
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:12 -0300
1444
+
1445
+
1446
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:45:12 -0300
1447
+
1448
+
1449
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:12 -0300
1450
+
1451
+
1452
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:45:18 -0300
1453
+ Processing by HomeController#index as HTML
1454
+ Rendered app/components/header/_header.html.erb (0.0ms)
1455
+ Rendered home/index.html.erb within layouts/application (0.6ms)
1456
+ Completed 200 OK in 39ms (Views: 38.6ms | ActiveRecord: 0.0ms)
1457
+
1458
+
1459
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:19 -0300
1460
+
1461
+
1462
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:19 -0300
1463
+
1464
+
1465
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:45:19 -0300
1466
+
1467
+
1468
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:19 -0300
1469
+
1470
+
1471
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:45:32 -0300
1472
+ Processing by HomeController#index as HTML
1473
+ Rendered app/components/header/_header.html.erb (0.1ms)
1474
+ Rendered home/index.html.erb within layouts/application (0.9ms)
1475
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
1476
+
1477
+
1478
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:32 -0300
1479
+
1480
+
1481
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:32 -0300
1482
+
1483
+
1484
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:45:32 -0300
1485
+
1486
+
1487
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:45:32 -0300
1488
+
1489
+
1490
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:47:07 -0300
1491
+ Processing by HomeController#index as HTML
1492
+ Rendered app/components/header/_header.html.erb (0.0ms)
1493
+ Rendered home/index.html.erb within layouts/application (0.7ms)
1494
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
1495
+
1496
+
1497
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:07 -0300
1498
+
1499
+
1500
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:47:07 -0300
1501
+
1502
+
1503
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:07 -0300
1504
+
1505
+
1506
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:07 -0300
1507
+
1508
+
1509
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:10 -0300
1510
+
1511
+
1512
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:10 -0300
1513
+
1514
+
1515
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:47:10 -0300
1516
+
1517
+
1518
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:49:05 -0300
1519
+ Processing by HomeController#index as HTML
1520
+ Rendered app/components/header/_header.html.erb (0.1ms)
1521
+ Rendered home/index.html.erb within layouts/application (1.4ms)
1522
+ Completed 200 OK in 43ms (Views: 42.5ms | ActiveRecord: 0.0ms)
1523
+
1524
+
1525
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:05 -0300
1526
+
1527
+
1528
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:05 -0300
1529
+
1530
+
1531
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:05 -0300
1532
+
1533
+
1534
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:49:05 -0300
1535
+
1536
+
1537
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:49:37 -0300
1538
+ Processing by HomeController#index as HTML
1539
+ Rendered app/components/header/_header.html.erb (0.1ms)
1540
+ Rendered home/index.html.erb within layouts/application (1.3ms)
1541
+ Completed 200 OK in 64ms (Views: 63.4ms | ActiveRecord: 0.0ms)
1542
+
1543
+
1544
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:37 -0300
1545
+
1546
+
1547
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:37 -0300
1548
+
1549
+
1550
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:37 -0300
1551
+
1552
+
1553
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:49:37 -0300
1554
+
1555
+
1556
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:49:55 -0300
1557
+ Processing by HomeController#index as HTML
1558
+ Rendered app/components/header/_header.html.erb (0.1ms)
1559
+ Rendered home/index.html.erb within layouts/application (1.1ms)
1560
+ Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
1561
+
1562
+
1563
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:56 -0300
1564
+
1565
+
1566
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:56 -0300
1567
+
1568
+
1569
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:49:56 -0300
1570
+
1571
+
1572
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:49:56 -0300
1573
+
1574
+
1575
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:50:01 -0300
1576
+ Processing by HomeController#index as HTML
1577
+ Rendered app/components/header/_header.html.erb (0.1ms)
1578
+ Rendered home/index.html.erb within layouts/application (1.0ms)
1579
+ Completed 200 OK in 63ms (Views: 62.6ms | ActiveRecord: 0.0ms)
1580
+
1581
+
1582
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:01 -0300
1583
+
1584
+
1585
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:01 -0300
1586
+
1587
+
1588
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:01 -0300
1589
+
1590
+
1591
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:50:01 -0300
1592
+
1593
+
1594
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:50:20 -0300
1595
+ Processing by HomeController#index as HTML
1596
+ Rendered app/components/header/_header.html.erb (0.1ms)
1597
+ Rendered home/index.html.erb within layouts/application (1.3ms)
1598
+ Completed 200 OK in 48ms (Views: 47.6ms | ActiveRecord: 0.0ms)
1599
+
1600
+
1601
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:20 -0300
1602
+
1603
+
1604
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:50:20 -0300
1605
+
1606
+
1607
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:20 -0300
1608
+
1609
+
1610
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:20 -0300
1611
+
1612
+
1613
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:50:25 -0300
1614
+ Processing by HomeController#index as HTML
1615
+ Rendered app/components/header/_header.html.erb (0.1ms)
1616
+ Rendered home/index.html.erb within layouts/application (1.6ms)
1617
+ Completed 200 OK in 66ms (Views: 65.6ms | ActiveRecord: 0.0ms)
1618
+
1619
+
1620
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:25 -0300
1621
+
1622
+
1623
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:25 -0300
1624
+
1625
+
1626
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:50:25 -0300
1627
+
1628
+
1629
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:25 -0300
1630
+
1631
+
1632
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:50:30 -0300
1633
+ Processing by HomeController#index as HTML
1634
+ Rendered app/components/header/_header.html.erb (0.1ms)
1635
+ Rendered home/index.html.erb within layouts/application (1.3ms)
1636
+ Completed 200 OK in 66ms (Views: 65.9ms | ActiveRecord: 0.0ms)
1637
+
1638
+
1639
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:31 -0300
1640
+
1641
+
1642
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:31 -0300
1643
+
1644
+
1645
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:50:31 -0300
1646
+
1647
+
1648
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:50:31 -0300
1649
+
1650
+
1651
+ Started GET "/" for 127.0.0.1 at 2015-03-19 22:51:11 -0300
1652
+ Processing by HomeController#index as HTML
1653
+ Rendered app/components/header/_header.html.erb (0.1ms)
1654
+ Rendered home/index.html.erb within layouts/application (1.4ms)
1655
+ Completed 200 OK in 35ms (Views: 35.2ms | ActiveRecord: 0.0ms)
1656
+
1657
+
1658
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-19 22:51:11 -0300
1659
+
1660
+
1661
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-19 22:51:11 -0300
1662
+
1663
+
1664
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-19 22:51:11 -0300
1665
+
1666
+
1667
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-19 22:51:11 -0300
1668
+
1669
+
1670
+ Started GET "/" for 127.0.0.1 at 2015-03-20 10:56:50 -0300
1671
+ Processing by HomeController#index as HTML
1672
+ Rendered app/components/header/_header.html.erb (0.4ms)
1673
+ Rendered home/index.html.erb within layouts/application (5.7ms)
1674
+ Completed 200 OK in 49ms (Views: 48.8ms | ActiveRecord: 0.0ms)
1675
+
1676
+
1677
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:50 -0300
1678
+
1679
+
1680
+ Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:50 -0300
1681
+
1682
+
1683
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 10:56:50 -0300
1684
+
1685
+
1686
+ Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:50 -0300