mountain_view 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e5372e43b1558e8d4bb5311670139d5e64314ae
4
- data.tar.gz: 54e9f3117a3621881bb0cbabf9b4676a4857e2cc
3
+ metadata.gz: de8d6a68fe5b721363589f4ee2bcec09831143da
4
+ data.tar.gz: 402bee4ffd3787e923c06916a883adf54239b1a2
5
5
  SHA512:
6
- metadata.gz: 66ae520bd6291a77ea1092a3fb1b88122d16b6d73736be3229fb9e574c73000ea2b7f8419b4aff2b83d4a48c7430faac24f1b2c6a91ead371144ce7c52ae1285
7
- data.tar.gz: 46f45ab23a85b023023f8d630a2bc5fffe17985eb0e7e6a7bd38d6743d90633e31fb75a277dc61bc6c2246b94ef8f8896045e2bf8838ebe3d91da8b622fe2592
6
+ metadata.gz: 14f7ae2e16e61da464a49e9cab0f099dd7999eceaf7d7e0b9c6290327f658eb4dd249197b2ac783eaa814ad13e9ce19c77a6978b8ba330f131383ba5b3c2519d
7
+ data.tar.gz: ae27ace55d6f01e533604d018167a48f1b68ea0a3935b4db85730450a298e680cf34d2c81bdb5125bbf3abe8617861c96d4eeb3587051dbb9ca3af73d3e2f105
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # Mountain View
1
+ ![Mountain View](https://cloud.githubusercontent.com/assets/623766/7324123/e4f4a9fe-ea89-11e4-97cd-006314593252.png)
2
+
2
3
 
3
4
  [![Build Status](https://travis-ci.org/jgnatch/mountain_view.svg?branch=master)](https://travis-ci.org/jgnatch/mountain_view)
4
5
  [![Code Climate](https://codeclimate.com/github/jgnatch/mountain_view/badges/gpa.svg)](https://codeclimate.com/github/jgnatch/mountain_view)
@@ -125,3 +125,37 @@ body{
125
125
  padding: 30px 20px;
126
126
  }
127
127
 
128
+
129
+ /* HINT */
130
+ .mv-hint{
131
+ margin: 40px 0;
132
+ padding: 30px;
133
+ font-size: 14px;
134
+ border-top: 2px solid #FCCC37;
135
+ color: #777;
136
+ box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
137
+ }
138
+
139
+ .mv-hint h2{
140
+ font-size: 19px;
141
+ margin-bottom: 20px;
142
+ color: #000;
143
+ }
144
+ .mv-hint h2 span{
145
+ color: #FCCC37;
146
+ margin-right: 5px;
147
+ font-weight: bold;
148
+ }
149
+
150
+ .mv-hint ul{
151
+ list-style-type: disc;
152
+ margin-left: 15px;
153
+ }
154
+ .mv-hint ul li{
155
+ margin-bottom: 10px;
156
+ line-height: 1.5;
157
+ }
158
+
159
+ .mv-hint strong{
160
+ font-weight: bold;
161
+ }
@@ -2,20 +2,33 @@
2
2
  <h1><%= @component.title %></h1>
3
3
  </div>
4
4
 
5
- <% @component.styleguide_stubs.each_with_index do |component_properties, index| %>
6
- <div class="mv-component">
7
- <div class="mv-component__item">
8
- <%= render_component @component.name, component_properties %>
9
- </div>
10
- <div class="mv-component__description">
11
- <h2><%= @component.title %> <%= index + 1 %></h2>
12
- <div class="mv-component__description__definition">
13
- <code class="language-ruby">&lt;%= render_component("<%= @component.name %>", {properties as below}) %&gt;</code>
5
+ <% if @component.stubs? %>
6
+ <% @component.styleguide_stubs.each_with_index do |component_properties, index| %>
7
+ <div class="mv-component">
8
+ <div class="mv-component__item">
9
+ <%= render_component @component.name, component_properties %>
14
10
  </div>
15
- <%- formatted = JSON.pretty_generate component_properties %>
16
- <div class="mv-component__description__properties">
17
- <code class="language-ruby"><%= formatted.gsub(/\"(\S+)?\":/, '\1:') %></code>
11
+ <div class="mv-component__description">
12
+ <h2><%= @component.title %> <%= index + 1 %></h2>
13
+ <div class="mv-component__description__definition">
14
+ <code class="language-ruby">&lt;%= render_component("<%= @component.name %>", {properties as below}) %&gt;</code>
15
+ </div>
16
+ <%- formatted = JSON.pretty_generate component_properties %>
17
+ <div class="mv-component__description__properties">
18
+ <code class="language-ruby"><%= formatted.gsub(/\"(\S+)?\":/, '\1:') %></code>
19
+ </div>
18
20
  </div>
19
21
  </div>
22
+ <% end %>
23
+ <% else %>
24
+ <div class="mv-hint">
25
+ <h2><span>Hint:</span>To see your component make sure you've created stubs:</h2>
26
+ <ul>
27
+ <li>
28
+ You should write stub examples here:
29
+ <br>
30
+ <strong><%= @component.stubs_file %></strong>
31
+ </li>
32
+ </ul>
20
33
  </div>
21
34
  <% end %>
@@ -14,10 +14,14 @@ module MountainView
14
14
  YAML.load_file stubs_file
15
15
  end
16
16
 
17
- private
18
-
19
17
  def stubs_file
20
18
  Rails.root.join("app/components/#{name}/#{name}.yml")
21
19
  end
20
+
21
+ def stubs?
22
+ styleguide_stubs.is_a?(Array) && styleguide_stubs.any?
23
+ rescue Errno::ENOENT
24
+ false
25
+ end
22
26
  end
23
27
  end
@@ -1,3 +1,3 @@
1
1
  module MountainView
2
- VERSION = "0.4.1"
2
+ VERSION = "0.4.2"
3
3
  end
@@ -1,1845 +1,2199 @@
1
1
 
2
2
 
3
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:23:51 -0400
3
+ Started GET "/" for 127.0.0.1 at 2015-04-10 16:09:52 -0300
4
4
  Processing by HomeController#index as HTML
5
- Rendered app/components/header/_header.html.erb (0.6ms)
6
- Rendered home/index.html.erb within layouts/application (6.1ms)
7
- Completed 500 Internal Server Error in 24ms
5
+ Rendered app/components/header/_header.html.erb (0.5ms)
6
+ Rendered home/index.html.erb within layouts/application (6.4ms)
7
+ Completed 200 OK in 38ms (Views: 37.7ms)
8
8
 
9
- ActionView::Template::Error (couldn't find file 'mountain_view'
10
- (in /Users/kito/dev/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
11
- 2: <html>
12
- 3: <head>
13
- 4: <title>Dummy</title>
14
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
15
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
16
- 7: <%= csrf_meta_tags %>
17
- 8: </head>
18
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2566864838426536269_70296456626660'
19
9
 
10
+ Started GET "/assets/application.css" for 127.0.0.1 at 2015-04-10 16:09:52 -0300
20
11
 
21
- Rendered /Users/kito/.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)
22
- Rendered /Users/kito/.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.9ms)
23
- Rendered /Users/kito/.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)
24
12
 
13
+ Started GET "/assets/application.js" for 127.0.0.1 at 2015-04-10 16:09:52 -0300
25
14
 
26
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:28:39 -0400
27
- Processing by HomeController#index as HTML
28
- Rendered app/components/header/_header.html.erb (0.3ms)
29
- Rendered home/index.html.erb within layouts/application (3.1ms)
30
- Completed 500 Internal Server Error in 14ms
31
15
 
32
- ActionView::Template::Error (couldn't find file 'mountain_view'
33
- (in /Users/kito/dev/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
34
- 2: <html>
35
- 3: <head>
36
- 4: <title>Dummy</title>
37
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
38
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
39
- 7: <%= csrf_meta_tags %>
40
- 8: </head>
41
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__130930298707786993_70122142037360'
16
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-04-10 16:10:34 -0300
17
+ Processing by StyleguideController#index as HTML
18
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/index.html.erb within layouts/mountain_view (0.8ms)
19
+ Completed 200 OK in 28ms (Views: 27.9ms)
42
20
 
43
21
 
44
- Rendered /Users/kito/.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)
45
- Rendered /Users/kito/.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)
46
- Rendered /Users/kito/.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.8ms)
22
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:10:34 -0300
47
23
 
48
24
 
49
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:28:41 -0400
50
- Processing by HomeController#index as HTML
25
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:10:39 -0300
26
+ Processing by StyleguideController#show as HTML
27
+ Parameters: {"id"=>"card"}
28
+ Rendered app/components/card/_card.html.erb (0.9ms)
29
+ Rendered app/components/card/_card.html.erb (0.1ms)
30
+ Rendered app/components/card/_card.html.erb (0.1ms)
31
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (9.4ms)
32
+ Completed 200 OK in 12ms (Views: 11.8ms)
33
+
34
+
35
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 16:10:44 -0300
36
+ Processing by StyleguideController#show as HTML
37
+ Parameters: {"id"=>"header"}
51
38
  Rendered app/components/header/_header.html.erb (0.1ms)
52
- Rendered home/index.html.erb within layouts/application (0.8ms)
53
- Completed 500 Internal Server Error in 10ms
39
+ Rendered app/components/header/_header.html.erb (0.1ms)
40
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (11.6ms)
41
+ Completed 200 OK in 14ms (Views: 13.6ms)
54
42
 
55
- ActionView::Template::Error (couldn't find file 'mountain_view'
56
- (in /Users/kito/dev/mountain_view/test/dummy/app/assets/stylesheets/application.css:15)):
57
- 2: <html>
58
- 3: <head>
59
- 4: <title>Dummy</title>
60
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
61
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
62
- 7: <%= csrf_meta_tags %>
63
- 8: </head>
64
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__130930298707786993_70122142037360'
65
43
 
44
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:10:46 -0300
45
+ Processing by StyleguideController#show as HTML
46
+ Parameters: {"id"=>"card"}
47
+ Rendered app/components/card/_card.html.erb (0.1ms)
48
+ Rendered app/components/card/_card.html.erb (0.2ms)
49
+ Rendered app/components/card/_card.html.erb (0.1ms)
50
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
51
+ Completed 200 OK in 6ms (Views: 6.2ms)
66
52
 
67
- Rendered /Users/kito/.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)
68
- Rendered /Users/kito/.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)
69
- Rendered /Users/kito/.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.4ms)
70
53
 
54
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:32:32 -0300
55
+ Processing by StyleguideController#show as HTML
56
+ Parameters: {"id"=>"card"}
57
+ Rendered app/components/card/_card.html.erb (0.3ms)
58
+ Rendered app/components/card/_card.html.erb (0.3ms)
59
+ Rendered app/components/card/_card.html.erb (0.3ms)
60
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (14.6ms)
61
+ Completed 200 OK in 44ms (Views: 42.5ms)
71
62
 
72
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:31:56 -0400
73
- Processing by HomeController#index as HTML
74
- Rendered app/components/header/_header.html.erb (0.4ms)
75
- Rendered home/index.html.erb within layouts/application (3.5ms)
76
- Completed 500 Internal Server Error in 13ms
77
-
78
- SyntaxError (/Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2: syntax error, unexpected tSTRING_BEG, expecting keyword_end
79
- _erbout.concat "//= require "; _erbout.concat...
80
- ^
81
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3: syntax error, unexpected keyword_end
82
- ; - end -
83
- ^
84
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:6: syntax error, unexpected keyword_ensure, expecting keyword_end
85
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:10: syntax error, unexpected keyword_end, expecting ')'
86
- end;end;end;end
87
- ^
88
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb)):
89
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1179586538451912523_70233039647960'
90
-
91
-
92
- Rendered /Users/kito/.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)
93
- Rendered /Users/kito/.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)
94
- Rendered /Users/kito/.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.6ms)
95
- Rendered /Users/kito/.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 (23.6ms)
96
-
97
-
98
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:33:29 -0400
99
- Processing by HomeController#index as HTML
100
- Rendered app/components/header/_header.html.erb (0.3ms)
101
- Rendered home/index.html.erb within layouts/application (3.4ms)
102
- Completed 500 Internal Server Error in 15ms
103
63
 
104
- ActionView::Template::Error (wrong number of arguments (5 for 1)
105
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
106
- 2: <html>
107
- 3: <head>
108
- 4: <title>Dummy</title>
109
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
110
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
111
- 7: <%= csrf_meta_tags %>
112
- 8: </head>
113
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1497586862038409455_70222892644740'
64
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:32:33 -0300
114
65
 
115
66
 
116
- Rendered /Users/kito/.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)
117
- Rendered /Users/kito/.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)
118
- Rendered /Users/kito/.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.2ms)
67
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:32:34 -0300
68
+ Processing by StyleguideController#show as HTML
69
+ Parameters: {"id"=>"card"}
70
+ Rendered app/components/card/_card.html.erb (0.2ms)
71
+ Rendered app/components/card/_card.html.erb (0.1ms)
72
+ Rendered app/components/card/_card.html.erb (0.1ms)
73
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.5ms)
74
+ Completed 200 OK in 10ms (Views: 8.9ms)
119
75
 
120
76
 
121
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:33:30 -0400
122
- Processing by HomeController#index as HTML
123
- Rendered app/components/header/_header.html.erb (0.0ms)
124
- Rendered home/index.html.erb within layouts/application (0.8ms)
125
- Completed 500 Internal Server Error in 9ms
77
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:32:34 -0300
126
78
 
127
- ActionView::Template::Error (wrong number of arguments (5 for 1)
128
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
129
- 2: <html>
130
- 3: <head>
131
- 4: <title>Dummy</title>
132
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
133
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
134
- 7: <%= csrf_meta_tags %>
135
- 8: </head>
136
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1497586862038409455_70222892644740'
137
79
 
80
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:34:01 -0300
81
+ Processing by StyleguideController#show as HTML
82
+ Parameters: {"id"=>"card"}
83
+ Rendered app/components/card/_card.html.erb (0.4ms)
84
+ Rendered app/components/card/_card.html.erb (0.1ms)
85
+ Rendered app/components/card/_card.html.erb (0.1ms)
86
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.8ms)
87
+ Completed 200 OK in 11ms (Views: 11.0ms)
138
88
 
139
- Rendered /Users/kito/.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)
140
- Rendered /Users/kito/.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)
141
- Rendered /Users/kito/.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.9ms)
142
89
 
90
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:34:01 -0300
143
91
 
144
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:35:05 -0400
145
- Processing by HomeController#index as HTML
146
- Rendered app/components/header/_header.html.erb (0.1ms)
147
- Rendered home/index.html.erb within layouts/application (1.0ms)
148
- Completed 500 Internal Server Error in 17ms
149
92
 
150
- ActionView::Template::Error (wrong number of arguments (5 for 1)
151
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
152
- 2: <html>
153
- 3: <head>
154
- 4: <title>Dummy</title>
155
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
156
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
157
- 7: <%= csrf_meta_tags %>
158
- 8: </head>
159
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___1497586862038409455_70222892644740'
93
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:34:12 -0300
94
+ Processing by StyleguideController#show as HTML
95
+ Parameters: {"id"=>"card"}
96
+ Rendered app/components/card/_card.html.erb (0.1ms)
97
+ Rendered app/components/card/_card.html.erb (0.2ms)
98
+ Rendered app/components/card/_card.html.erb (0.1ms)
99
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.0ms)
100
+ Completed 200 OK in 8ms (Views: 8.1ms)
160
101
 
161
102
 
162
- Rendered /Users/kito/.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)
163
- Rendered /Users/kito/.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)
164
- Rendered /Users/kito/.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.8ms)
103
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:34:12 -0300
165
104
 
166
105
 
167
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:35:12 -0400
168
- Processing by HomeController#index as HTML
169
- Rendered app/components/header/_header.html.erb (0.3ms)
170
- Rendered home/index.html.erb within layouts/application (3.6ms)
171
- Completed 500 Internal Server Error in 15ms
106
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:35:54 -0300
107
+ Processing by StyleguideController#show as HTML
108
+ Parameters: {"id"=>"card"}
109
+ Rendered app/components/card/_card.html.erb (0.4ms)
110
+ Rendered app/components/card/_card.html.erb (0.2ms)
111
+ Rendered app/components/card/_card.html.erb (0.1ms)
112
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (9.0ms)
113
+ Completed 200 OK in 13ms (Views: 12.8ms)
172
114
 
173
- ActionView::Template::Error (wrong number of arguments (5 for 1)
174
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
175
- 2: <html>
176
- 3: <head>
177
- 4: <title>Dummy</title>
178
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
179
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
180
- 7: <%= csrf_meta_tags %>
181
- 8: </head>
182
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__4052890120338771872_70189130333240'
183
115
 
116
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:35:55 -0300
184
117
 
185
- Rendered /Users/kito/.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)
186
- Rendered /Users/kito/.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.6ms)
187
- Rendered /Users/kito/.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 (15.9ms)
188
118
 
119
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:36:27 -0300
120
+ Processing by StyleguideController#show as HTML
121
+ Parameters: {"id"=>"card"}
122
+ Rendered app/components/card/_card.html.erb (0.2ms)
123
+ Rendered app/components/card/_card.html.erb (0.2ms)
124
+ Rendered app/components/card/_card.html.erb (0.1ms)
125
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.0ms)
126
+ Completed 200 OK in 8ms (Views: 8.1ms)
189
127
 
190
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:35:13 -0400
191
- Processing by HomeController#index as HTML
192
- Rendered app/components/header/_header.html.erb (0.1ms)
193
- Rendered home/index.html.erb within layouts/application (0.8ms)
194
- Completed 500 Internal Server Error in 8ms
195
128
 
196
- ActionView::Template::Error (wrong number of arguments (5 for 1)
197
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
198
- 2: <html>
199
- 3: <head>
200
- 4: <title>Dummy</title>
201
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
202
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
203
- 7: <%= csrf_meta_tags %>
204
- 8: </head>
205
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__4052890120338771872_70189130333240'
129
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:36:27 -0300
206
130
 
207
131
 
208
- Rendered /Users/kito/.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)
209
- Rendered /Users/kito/.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)
210
- Rendered /Users/kito/.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.2ms)
132
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:37:01 -0300
133
+ Processing by StyleguideController#show as HTML
134
+ Parameters: {"id"=>"card"}
135
+ Rendered app/components/card/_card.html.erb (0.1ms)
136
+ Rendered app/components/card/_card.html.erb (0.1ms)
137
+ Rendered app/components/card/_card.html.erb (0.1ms)
138
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
139
+ Completed 200 OK in 50ms (Views: 49.6ms)
211
140
 
212
141
 
213
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:37:34 -0400
214
- Processing by HomeController#index as HTML
215
- Rendered app/components/header/_header.html.erb (0.3ms)
216
- Rendered home/index.html.erb within layouts/application (3.4ms)
217
- Completed 500 Internal Server Error in 15ms
142
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:37:01 -0300
218
143
 
219
- ActionView::Template::Error (wrong number of arguments (5 for 1)
220
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
221
- 2: <html>
222
- 3: <head>
223
- 4: <title>Dummy</title>
224
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
225
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
226
- 7: <%= csrf_meta_tags %>
227
- 8: </head>
228
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2574220921171978312_70162229466440'
229
144
 
145
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:37:17 -0300
146
+ Processing by StyleguideController#show as HTML
147
+ Parameters: {"id"=>"card"}
148
+ Rendered app/components/card/_card.html.erb (0.2ms)
149
+ Rendered app/components/card/_card.html.erb (0.2ms)
150
+ Rendered app/components/card/_card.html.erb (0.1ms)
151
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.4ms)
152
+ Completed 200 OK in 27ms (Views: 26.6ms)
230
153
 
231
- Rendered /Users/kito/.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)
232
- Rendered /Users/kito/.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)
233
- Rendered /Users/kito/.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.1ms)
234
154
 
155
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:37:17 -0300
235
156
 
236
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:37:35 -0400
237
- Processing by HomeController#index as HTML
238
- Rendered app/components/header/_header.html.erb (0.0ms)
239
- Rendered home/index.html.erb within layouts/application (0.7ms)
240
- Completed 500 Internal Server Error in 7ms
241
157
 
242
- ActionView::Template::Error (wrong number of arguments (5 for 1)
243
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
244
- 2: <html>
245
- 3: <head>
246
- 4: <title>Dummy</title>
247
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
248
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
249
- 7: <%= csrf_meta_tags %>
250
- 8: </head>
251
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2574220921171978312_70162229466440'
158
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:39:37 -0300
159
+ Processing by StyleguideController#show as HTML
160
+ Parameters: {"id"=>"card"}
161
+ Rendered app/components/card/_card.html.erb (0.2ms)
162
+ Rendered app/components/card/_card.html.erb (0.1ms)
163
+ Rendered app/components/card/_card.html.erb (0.7ms)
164
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (7.4ms)
165
+ Completed 200 OK in 24ms (Views: 23.6ms)
252
166
 
253
167
 
254
- Rendered /Users/kito/.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)
255
- Rendered /Users/kito/.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)
256
- Rendered /Users/kito/.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)
168
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:39:38 -0300
257
169
 
258
170
 
259
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:39:10 -0400
260
- Processing by HomeController#index as HTML
261
- Rendered app/components/header/_header.html.erb (0.3ms)
262
- Rendered home/index.html.erb within layouts/application (3.2ms)
263
- Completed 500 Internal Server Error in 14ms
264
-
265
- SyntaxError (/Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:1: syntax error, unexpected ';'
266
- ...onents')) do |component_dir| -; _erbout.concat "\n"
267
- ... ^
268
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2: syntax error, unexpected tIDENTIFIER, expecting keyword_end
269
- ; - component = File.basename component_dir -
270
- ^
271
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3: syntax error, unexpected tSTRING_BEG, expecting keyword_end
272
- _erbout.concat "*= foo "; _erbout.concat(( co...
273
- ^
274
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4: syntax error, unexpected keyword_end
275
- ; - end -; _erbout.concat "*/\n"
276
- ^
277
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:8: syntax error, unexpected keyword_ensure, expecting keyword_end
278
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:12: syntax error, unexpected end-of-input, expecting keyword_end
279
- end;end;end;end
280
- ^
281
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb)):
282
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2111703186748766454_70225177990700'
283
-
284
-
285
- Rendered /Users/kito/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
286
- Rendered /Users/kito/.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)
287
- Rendered /Users/kito/.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)
288
- Rendered /Users/kito/.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 (22.6ms)
289
-
290
-
291
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:39:37 -0400
292
- Processing by HomeController#index as HTML
293
- Rendered app/components/header/_header.html.erb (0.3ms)
294
- Rendered home/index.html.erb within layouts/application (3.3ms)
295
- Completed 500 Internal Server Error in 14ms
171
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:39:48 -0300
172
+ Processing by StyleguideController#show as HTML
173
+ Parameters: {"id"=>"card"}
174
+ Rendered app/components/card/_card.html.erb (0.2ms)
175
+ Rendered app/components/card/_card.html.erb (0.2ms)
176
+ Rendered app/components/card/_card.html.erb (0.1ms)
177
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.7ms)
178
+ Completed 200 OK in 26ms (Views: 25.4ms)
296
179
 
297
- ActionView::Template::Error (wrong number of arguments (5 for 0..1)
298
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
299
- 2: <html>
300
- 3: <head>
301
- 4: <title>Dummy</title>
302
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
303
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
304
- 7: <%= csrf_meta_tags %>
305
- 8: </head>
306
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2655546020838188657_70366746376860'
307
180
 
181
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:39:49 -0300
308
182
 
309
- Rendered /Users/kito/.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)
310
- Rendered /Users/kito/.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.9ms)
311
- Rendered /Users/kito/.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.3ms)
312
183
 
184
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:40:03 -0300
185
+ Processing by StyleguideController#show as HTML
186
+ Parameters: {"id"=>"card"}
187
+ Rendered app/components/card/_card.html.erb (0.1ms)
188
+ Rendered app/components/card/_card.html.erb (0.1ms)
189
+ Rendered app/components/card/_card.html.erb (0.1ms)
190
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
191
+ Completed 200 OK in 24ms (Views: 23.4ms)
313
192
 
314
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:39:40 -0400
315
- Processing by HomeController#index as HTML
316
- Rendered app/components/header/_header.html.erb (0.0ms)
317
- Rendered home/index.html.erb within layouts/application (0.7ms)
318
- Completed 500 Internal Server Error in 10ms
319
193
 
320
- ActionView::Template::Error (wrong number of arguments (5 for 0..1)
321
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
322
- 2: <html>
323
- 3: <head>
324
- 4: <title>Dummy</title>
325
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
326
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
327
- 7: <%= csrf_meta_tags %>
328
- 8: </head>
329
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__2655546020838188657_70366746376860'
194
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:03 -0300
330
195
 
331
196
 
332
- Rendered /Users/kito/.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)
333
- Rendered /Users/kito/.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/kito/.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.4ms)
197
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:08 -0300
335
198
 
336
199
 
337
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:40:12 -0400
338
- Processing by HomeController#index as HTML
339
- Rendered app/components/header/_header.html.erb (0.3ms)
340
- Rendered home/index.html.erb within layouts/application (3.1ms)
341
- Completed 500 Internal Server Error in 13ms
342
-
343
- SyntaxError (/Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:1: syntax error, unexpected ';'
344
- ...onents')) do |component_dir| -; _erbout.concat "\n"
345
- ... ^
346
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2: syntax error, unexpected tIDENTIFIER, expecting keyword_end
347
- ; - component = File.basename component_dir -
348
- ^
349
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3: syntax error, unexpected tSTRING_BEG, expecting keyword_end
350
- _erbout.concat "*= "; _erbout.concat(( "requi...
351
- ^
352
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4: syntax error, unexpected keyword_end
353
- ; - end -; _erbout.concat "*/\n"
354
- ^
355
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:8: syntax error, unexpected keyword_ensure, expecting keyword_end
356
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:12: syntax error, unexpected end-of-input, expecting keyword_end
357
- end;end;end;end
358
- ^
359
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb)):
360
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2277357110982036595_70164239194860'
361
-
362
-
363
- Rendered /Users/kito/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
364
- Rendered /Users/kito/.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)
365
- Rendered /Users/kito/.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)
366
- Rendered /Users/kito/.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 (19.9ms)
367
-
368
-
369
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:40:12 -0400
370
- Processing by HomeController#index as HTML
200
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 16:40:40 -0300
201
+ Processing by StyleguideController#show as HTML
202
+ Parameters: {"id"=>"header"}
203
+ Rendered app/components/header/_header.html.erb (0.1ms)
371
204
  Rendered app/components/header/_header.html.erb (0.0ms)
372
- Rendered home/index.html.erb within layouts/application (0.8ms)
373
- Completed 500 Internal Server Error in 8ms
374
-
375
- SyntaxError (/Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:1: syntax error, unexpected ';'
376
- ...onents')) do |component_dir| -; _erbout.concat "\n"
377
- ... ^
378
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2: syntax error, unexpected tIDENTIFIER, expecting keyword_end
379
- ; - component = File.basename component_dir -
380
- ^
381
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3: syntax error, unexpected tSTRING_BEG, expecting keyword_end
382
- _erbout.concat "*= "; _erbout.concat(( "requi...
383
- ^
384
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4: syntax error, unexpected keyword_end
385
- ; - end -; _erbout.concat "*/\n"
386
- ^
387
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:8: syntax error, unexpected keyword_ensure, expecting keyword_end
388
- /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:12: syntax error, unexpected end-of-input, expecting keyword_end
389
- end;end;end;end
390
- ^
391
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb)):
392
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2277357110982036595_70164239194860'
393
-
394
-
395
- Rendered /Users/kito/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
396
- Rendered /Users/kito/.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)
397
- Rendered /Users/kito/.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)
398
- Rendered /Users/kito/.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 (11.9ms)
399
-
400
-
401
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:42:16 -0400
402
- Processing by HomeController#index as HTML
403
- Rendered app/components/header/_header.html.erb (0.3ms)
404
- Rendered home/index.html.erb within layouts/application (3.6ms)
405
- Completed 200 OK in 58ms (Views: 57.7ms | ActiveRecord: 0.0ms)
205
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (10.9ms)
206
+ Completed 200 OK in 14ms (Views: 14.0ms)
406
207
 
407
208
 
408
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 10:42:16 -0400
209
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:40 -0300
409
210
 
410
211
 
411
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:42:16 -0400
212
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:40:43 -0300
213
+ Processing by StyleguideController#show as HTML
214
+ Parameters: {"id"=>"card"}
215
+ Rendered app/components/card/_card.html.erb (0.2ms)
216
+ Rendered app/components/card/_card.html.erb (0.2ms)
217
+ Rendered app/components/card/_card.html.erb (0.1ms)
218
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.7ms)
219
+ Completed 200 OK in 8ms (Views: 8.2ms)
412
220
 
413
221
 
414
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 10:42:16 -0400
222
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:43 -0300
415
223
 
416
224
 
417
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:42:21 -0400
225
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 16:40:45 -0300
226
+ Processing by StyleguideController#show as HTML
227
+ Parameters: {"id"=>"header"}
228
+ Rendered app/components/header/_header.html.erb (0.0ms)
229
+ Rendered app/components/header/_header.html.erb (0.0ms)
230
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (1.8ms)
231
+ Completed 200 OK in 4ms (Views: 3.8ms)
418
232
 
419
233
 
420
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:42:45 -0400
234
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:45 -0300
421
235
 
422
236
 
423
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:42:49 -0400
237
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:40:49 -0300
238
+ Processing by StyleguideController#show as HTML
239
+ Parameters: {"id"=>"card"}
240
+ Rendered app/components/card/_card.html.erb (0.1ms)
241
+ Rendered app/components/card/_card.html.erb (0.1ms)
242
+ Rendered app/components/card/_card.html.erb (0.0ms)
243
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (2.8ms)
244
+ Completed 200 OK in 5ms (Views: 4.6ms)
424
245
 
425
246
 
426
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:43:02 -0400
427
- Processing by HomeController#index as HTML
428
- Rendered app/components/header/_header.html.erb (0.1ms)
429
- Rendered home/index.html.erb within layouts/application (0.8ms)
430
- Completed 200 OK in 43ms (Views: 43.1ms | ActiveRecord: 0.0ms)
247
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:49 -0300
431
248
 
432
249
 
433
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:43:53 -0400
434
- Processing by HomeController#index as HTML
435
- Rendered app/components/header/_header.html.erb (0.1ms)
436
- Rendered home/index.html.erb within layouts/application (0.9ms)
437
- Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
250
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:40:54 -0300
251
+ Processing by StyleguideController#show as HTML
252
+ Parameters: {"id"=>"card"}
253
+ Rendered app/components/card/_card.html.erb (0.1ms)
254
+ Rendered app/components/card/_card.html.erb (0.1ms)
255
+ Rendered app/components/card/_card.html.erb (0.0ms)
256
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (2.9ms)
257
+ Completed 200 OK in 5ms (Views: 4.5ms)
438
258
 
439
259
 
440
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:43:54 -0400
260
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:54 -0300
441
261
 
442
262
 
443
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:43:55 -0400
263
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 16:40:55 -0300
264
+ Processing by StyleguideController#show as HTML
265
+ Parameters: {"id"=>"header"}
266
+ Rendered app/components/header/_header.html.erb (0.0ms)
267
+ Rendered app/components/header/_header.html.erb (0.0ms)
268
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (2.0ms)
269
+ Completed 200 OK in 4ms (Views: 3.6ms)
444
270
 
445
271
 
446
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:44:14 -0400
272
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:40:56 -0300
447
273
 
448
274
 
449
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:44:18 -0400
450
- Processing by HomeController#index as HTML
451
- Rendered app/components/header/_header.html.erb (0.1ms)
452
- Rendered home/index.html.erb within layouts/application (1.3ms)
453
- Completed 500 Internal Server Error in 9ms
275
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:41:00 -0300
276
+ Processing by StyleguideController#show as HTML
277
+ Parameters: {"id"=>"card"}
278
+ Rendered app/components/card/_card.html.erb (0.1ms)
279
+ Rendered app/components/card/_card.html.erb (0.1ms)
280
+ Rendered app/components/card/_card.html.erb (0.1ms)
281
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.5ms)
282
+ Completed 200 OK in 7ms (Views: 7.0ms)
454
283
 
455
- ActionView::Template::Error (wrong number of arguments (5 for 1)
456
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
457
- 2: <html>
458
- 3: <head>
459
- 4: <title>Dummy</title>
460
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
461
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
462
- 7: <%= csrf_meta_tags %>
463
- 8: </head>
464
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
465
284
 
285
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:41:00 -0300
466
286
 
467
- Rendered /Users/kito/.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)
468
- Rendered /Users/kito/.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)
469
- Rendered /Users/kito/.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.4ms)
470
287
 
288
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 16:41:01 -0300
289
+ Processing by StyleguideController#show as HTML
290
+ Parameters: {"id"=>"header"}
291
+ Rendered app/components/header/_header.html.erb (0.0ms)
292
+ Rendered app/components/header/_header.html.erb (0.0ms)
293
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (1.8ms)
294
+ Completed 200 OK in 4ms (Views: 3.4ms)
471
295
 
472
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:44:35 -0400
473
296
 
297
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:41:01 -0300
474
298
 
475
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:46:19 -0400
476
299
 
300
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:41:07 -0300
477
301
 
478
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:54:59 -0400
479
- Processing by HomeController#index as HTML
480
- Rendered app/components/header/_header.html.erb (0.1ms)
481
- Rendered home/index.html.erb within layouts/application (1.1ms)
482
- Completed 500 Internal Server Error in 9ms
483
302
 
484
- ActionView::Template::Error (wrong number of arguments (3 for 1)
485
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
486
- 2: <html>
487
- 3: <head>
488
- 4: <title>Dummy</title>
489
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
490
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
491
- 7: <%= csrf_meta_tags %>
492
- 8: </head>
493
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
303
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:41:24 -0300
304
+ Processing by StyleguideController#show as HTML
305
+ Parameters: {"id"=>"card"}
306
+ Rendered app/components/card/_card.html.erb (0.1ms)
307
+ Rendered app/components/card/_card.html.erb (0.1ms)
308
+ Rendered app/components/card/_card.html.erb (0.1ms)
309
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.6ms)
310
+ Completed 200 OK in 6ms (Views: 5.6ms)
494
311
 
495
312
 
496
- Rendered /Users/kito/.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)
497
- Rendered /Users/kito/.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.5ms)
498
- Rendered /Users/kito/.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.8ms)
313
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:41:25 -0300
499
314
 
500
315
 
501
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:00 -0400
502
- Processing by HomeController#index as HTML
503
- Rendered app/components/header/_header.html.erb (0.0ms)
504
- Rendered home/index.html.erb within layouts/application (0.8ms)
505
- Completed 500 Internal Server Error in 7ms
316
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:41:38 -0300
317
+ Processing by StyleguideController#show as HTML
318
+ Parameters: {"id"=>"card"}
319
+ Rendered app/components/card/_card.html.erb (0.2ms)
320
+ Rendered app/components/card/_card.html.erb (0.2ms)
321
+ Rendered app/components/card/_card.html.erb (0.1ms)
322
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.5ms)
323
+ Completed 200 OK in 18ms (Views: 17.8ms)
506
324
 
507
- ActionView::Template::Error (wrong number of arguments (3 for 1)
508
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
509
- 2: <html>
510
- 3: <head>
511
- 4: <title>Dummy</title>
512
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
513
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
514
- 7: <%= csrf_meta_tags %>
515
- 8: </head>
516
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
517
325
 
326
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:41:38 -0300
518
327
 
519
- Rendered /Users/kito/.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)
520
- Rendered /Users/kito/.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)
521
- Rendered /Users/kito/.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.4ms)
522
328
 
329
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:42:10 -0300
523
330
 
524
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:01 -0400
525
- Processing by HomeController#index as HTML
526
- Rendered app/components/header/_header.html.erb (0.1ms)
527
- Rendered home/index.html.erb within layouts/application (0.8ms)
528
- Completed 500 Internal Server Error in 7ms
529
331
 
530
- ActionView::Template::Error (wrong number of arguments (3 for 1)
531
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
532
- 2: <html>
533
- 3: <head>
534
- 4: <title>Dummy</title>
535
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
536
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
537
- 7: <%= csrf_meta_tags %>
538
- 8: </head>
539
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
332
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:43:03 -0300
333
+ Processing by StyleguideController#show as HTML
334
+ Parameters: {"id"=>"card"}
335
+ Rendered app/components/card/_card.html.erb (0.1ms)
336
+ Rendered app/components/card/_card.html.erb (0.1ms)
337
+ Rendered app/components/card/_card.html.erb (0.1ms)
338
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.3ms)
339
+ Completed 200 OK in 19ms (Views: 18.8ms)
540
340
 
541
341
 
542
- Rendered /Users/kito/.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)
543
- Rendered /Users/kito/.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)
544
- Rendered /Users/kito/.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)
342
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:43:03 -0300
545
343
 
546
344
 
547
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:02 -0400
548
- Processing by HomeController#index as HTML
549
- Rendered app/components/header/_header.html.erb (0.1ms)
550
- Rendered home/index.html.erb within layouts/application (1.0ms)
551
- Completed 500 Internal Server Error in 6ms
345
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:43:53 -0300
346
+ Processing by StyleguideController#show as HTML
347
+ Parameters: {"id"=>"card"}
348
+ Rendered app/components/card/_card.html.erb (0.1ms)
349
+ Rendered app/components/card/_card.html.erb (0.1ms)
350
+ Rendered app/components/card/_card.html.erb (0.1ms)
351
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (2.8ms)
352
+ Completed 200 OK in 19ms (Views: 18.9ms)
552
353
 
553
- ActionView::Template::Error (wrong number of arguments (3 for 1)
554
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
555
- 2: <html>
556
- 3: <head>
557
- 4: <title>Dummy</title>
558
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
559
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
560
- 7: <%= csrf_meta_tags %>
561
- 8: </head>
562
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
563
354
 
355
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:43:53 -0300
564
356
 
565
- Rendered /Users/kito/.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)
566
- Rendered /Users/kito/.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 (0.9ms)
567
- Rendered /Users/kito/.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.4ms)
568
357
 
358
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:44:44 -0300
359
+ Processing by StyleguideController#show as HTML
360
+ Parameters: {"id"=>"card"}
361
+ Rendered app/components/card/_card.html.erb (0.1ms)
362
+ Rendered app/components/card/_card.html.erb (0.1ms)
363
+ Rendered app/components/card/_card.html.erb (0.1ms)
364
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.3ms)
365
+ Completed 200 OK in 20ms (Views: 20.3ms)
569
366
 
570
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:03 -0400
571
- Processing by HomeController#index as HTML
572
- Rendered app/components/header/_header.html.erb (0.0ms)
573
- Rendered home/index.html.erb within layouts/application (0.7ms)
574
- Completed 500 Internal Server Error in 5ms
575
367
 
576
- ActionView::Template::Error (wrong number of arguments (3 for 1)
577
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
578
- 2: <html>
579
- 3: <head>
580
- 4: <title>Dummy</title>
581
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
582
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
583
- 7: <%= csrf_meta_tags %>
584
- 8: </head>
585
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
368
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:44:44 -0300
586
369
 
587
370
 
588
- Rendered /Users/kito/.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)
589
- Rendered /Users/kito/.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)
590
- Rendered /Users/kito/.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.1ms)
371
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:45:14 -0300
372
+ Processing by StyleguideController#show as HTML
373
+ Parameters: {"id"=>"card"}
374
+ Rendered app/components/card/_card.html.erb (0.1ms)
375
+ Rendered app/components/card/_card.html.erb (0.2ms)
376
+ Rendered app/components/card/_card.html.erb (0.1ms)
377
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.9ms)
378
+ Completed 200 OK in 7ms (Views: 6.4ms)
591
379
 
592
380
 
593
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:03 -0400
594
- Processing by HomeController#index as HTML
595
- Rendered app/components/header/_header.html.erb (0.1ms)
596
- Rendered home/index.html.erb within layouts/application (0.8ms)
597
- Completed 500 Internal Server Error in 8ms
381
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:45:14 -0300
598
382
 
599
- ActionView::Template::Error (wrong number of arguments (3 for 1)
600
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
601
- 2: <html>
602
- 3: <head>
603
- 4: <title>Dummy</title>
604
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
605
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
606
- 7: <%= csrf_meta_tags %>
607
- 8: </head>
608
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
609
383
 
384
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:45:16 -0300
385
+ Processing by StyleguideController#show as HTML
386
+ Parameters: {"id"=>"card"}
387
+ Rendered app/components/card/_card.html.erb (0.2ms)
388
+ Rendered app/components/card/_card.html.erb (0.1ms)
389
+ Rendered app/components/card/_card.html.erb (0.1ms)
390
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (8.3ms)
391
+ Completed 200 OK in 14ms (Views: 13.3ms)
610
392
 
611
- Rendered /Users/kito/.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)
612
- Rendered /Users/kito/.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)
613
- Rendered /Users/kito/.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)
614
393
 
394
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:45:16 -0300
615
395
 
616
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:21 -0400
617
- Processing by HomeController#index as HTML
618
- Rendered app/components/header/_header.html.erb (0.0ms)
619
- Rendered home/index.html.erb within layouts/application (0.6ms)
620
- Completed 200 OK in 34ms (Views: 33.4ms | ActiveRecord: 0.0ms)
621
396
 
397
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:45:39 -0300
398
+ Processing by StyleguideController#show as HTML
399
+ Parameters: {"id"=>"card"}
400
+ Rendered app/components/card/_card.html.erb (0.1ms)
401
+ Rendered app/components/card/_card.html.erb (0.1ms)
402
+ Rendered app/components/card/_card.html.erb (0.0ms)
403
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.2ms)
404
+ Completed 200 OK in 12ms (Views: 11.8ms)
622
405
 
623
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 10:55:21 -0400
624
406
 
407
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:45:39 -0300
625
408
 
626
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 10:55:21 -0400
627
409
 
410
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:45:48 -0300
411
+ Processing by StyleguideController#show as HTML
412
+ Parameters: {"id"=>"card"}
413
+ Rendered app/components/card/_card.html.erb (0.1ms)
414
+ Rendered app/components/card/_card.html.erb (0.1ms)
415
+ Rendered app/components/card/_card.html.erb (0.1ms)
416
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.9ms)
417
+ Completed 200 OK in 23ms (Views: 22.3ms)
628
418
 
629
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:55:21 -0400
630
419
 
420
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:45:48 -0300
631
421
 
632
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 10:55:21 -0400
633
422
 
423
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:47:26 -0300
424
+ Processing by StyleguideController#show as HTML
425
+ Parameters: {"id"=>"card"}
426
+ Rendered app/components/card/_card.html.erb (0.2ms)
427
+ Rendered app/components/card/_card.html.erb (0.1ms)
428
+ Rendered app/components/card/_card.html.erb (0.0ms)
429
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.0ms)
430
+ Completed 200 OK in 7ms (Views: 6.5ms)
634
431
 
635
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:40 -0400
636
- Processing by HomeController#index as HTML
637
- Rendered app/components/header/_header.html.erb (0.0ms)
638
- Rendered home/index.html.erb within layouts/application (0.7ms)
639
- Completed 500 Internal Server Error in 10ms
640
432
 
641
- ActionView::Template::Error (wrong number of arguments (5 for 1)
642
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
643
- 2: <html>
644
- 3: <head>
645
- 4: <title>Dummy</title>
646
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
647
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
648
- 7: <%= csrf_meta_tags %>
649
- 8: </head>
650
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
433
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:47:26 -0300
651
434
 
652
435
 
653
- Rendered /Users/kito/.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.3ms)
654
- Rendered /Users/kito/.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 (2.0ms)
655
- Rendered /Users/kito/.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 (14.2ms)
436
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:54:05 -0300
437
+ Processing by StyleguideController#show as HTML
438
+ Parameters: {"id"=>"card"}
439
+ Rendered app/components/card/_card.html.erb (0.2ms)
440
+ Rendered app/components/card/_card.html.erb (0.1ms)
441
+ Rendered app/components/card/_card.html.erb (0.1ms)
442
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (8.7ms)
443
+ Completed 200 OK in 13ms (Views: 12.8ms)
656
444
 
657
445
 
658
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:44 -0400
659
- Processing by HomeController#index as HTML
660
- Rendered app/components/header/_header.html.erb (0.0ms)
661
- Rendered home/index.html.erb within layouts/application (0.7ms)
662
- Completed 500 Internal Server Error in 7ms
446
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:54:05 -0300
663
447
 
664
- ActionView::Template::Error (wrong number of arguments (5 for 1)
665
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
666
- 2: <html>
667
- 3: <head>
668
- 4: <title>Dummy</title>
669
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
670
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
671
- 7: <%= csrf_meta_tags %>
672
- 8: </head>
673
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
674
448
 
449
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:54:24 -0300
450
+ Processing by StyleguideController#show as HTML
451
+ Parameters: {"id"=>"card"}
452
+ Rendered app/components/card/_card.html.erb (0.1ms)
453
+ Rendered app/components/card/_card.html.erb (0.1ms)
454
+ Rendered app/components/card/_card.html.erb (0.0ms)
455
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.8ms)
456
+ Completed 200 OK in 6ms (Views: 5.5ms)
675
457
 
676
- Rendered /Users/kito/.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)
677
- Rendered /Users/kito/.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)
678
- Rendered /Users/kito/.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.3ms)
679
458
 
459
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:54:24 -0300
680
460
 
681
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:55:44 -0400
682
- Processing by HomeController#index as HTML
683
- Rendered app/components/header/_header.html.erb (0.1ms)
684
- Rendered home/index.html.erb within layouts/application (1.2ms)
685
- Completed 500 Internal Server Error in 10ms
686
461
 
687
- ActionView::Template::Error (wrong number of arguments (5 for 1)
688
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
689
- 2: <html>
690
- 3: <head>
691
- 4: <title>Dummy</title>
692
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
693
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
694
- 7: <%= csrf_meta_tags %>
695
- 8: </head>
696
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb___2059436624283148770_70302272428140'
462
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:54:34 -0300
463
+ Processing by StyleguideController#show as HTML
464
+ Parameters: {"id"=>"card"}
465
+ Rendered app/components/card/_card.html.erb (0.2ms)
466
+ Rendered app/components/card/_card.html.erb (0.2ms)
467
+ Rendered app/components/card/_card.html.erb (0.1ms)
468
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.1ms)
469
+ Completed 200 OK in 9ms (Views: 8.6ms)
697
470
 
698
471
 
699
- Rendered /Users/kito/.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)
700
- Rendered /Users/kito/.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.5ms)
701
- Rendered /Users/kito/.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.0ms)
472
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:54:34 -0300
702
473
 
703
474
 
704
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:56:00 -0400
705
- Processing by HomeController#index as HTML
706
- Rendered app/components/header/_header.html.erb (0.0ms)
707
- Rendered home/index.html.erb within layouts/application (0.7ms)
708
- Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.0ms)
475
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:54:48 -0300
476
+ Processing by StyleguideController#show as HTML
477
+ Parameters: {"id"=>"card"}
478
+ Rendered app/components/card/_card.html.erb (0.1ms)
479
+ Rendered app/components/card/_card.html.erb (0.1ms)
480
+ Rendered app/components/card/_card.html.erb (0.1ms)
481
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.7ms)
482
+ Completed 200 OK in 8ms (Views: 7.4ms)
709
483
 
710
484
 
711
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:00 -0400
485
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:54:48 -0300
712
486
 
713
487
 
714
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:00 -0400
488
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 16:55:10 -0300
489
+ Processing by StyleguideController#show as HTML
490
+ Parameters: {"id"=>"card"}
491
+ Rendered app/components/card/_card.html.erb (0.1ms)
492
+ Rendered app/components/card/_card.html.erb (0.1ms)
493
+ Rendered app/components/card/_card.html.erb (0.1ms)
494
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.3ms)
495
+ Completed 200 OK in 10ms (Views: 9.8ms)
715
496
 
716
497
 
717
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 10:56:00 -0400
498
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 16:55:10 -0300
718
499
 
719
500
 
720
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:56:01 -0400
721
- Processing by HomeController#index as HTML
722
- Rendered app/components/header/_header.html.erb (0.1ms)
723
- Rendered home/index.html.erb within layouts/application (1.3ms)
724
- Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
501
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:10:47 -0300
502
+ Processing by StyleguideController#show as HTML
503
+ Parameters: {"id"=>"card"}
504
+ Rendered app/components/card/_card.html.erb (0.3ms)
505
+ Rendered app/components/card/_card.html.erb (0.2ms)
506
+ Rendered app/components/card/_card.html.erb (0.2ms)
507
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (7.3ms)
508
+ Completed 200 OK in 49ms (Views: 48.8ms)
725
509
 
726
510
 
727
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:01 -0400
511
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:10:47 -0300
728
512
 
729
513
 
730
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 10:56:01 -0400
514
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:12:45 -0300
515
+ Processing by StyleguideController#show as HTML
516
+ Parameters: {"id"=>"card"}
517
+ Rendered app/components/card/_card.html.erb (0.1ms)
518
+ Rendered app/components/card/_card.html.erb (0.2ms)
519
+ Rendered app/components/card/_card.html.erb (0.0ms)
520
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.2ms)
521
+ Completed 200 OK in 12ms (Views: 12.1ms)
731
522
 
732
523
 
733
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:01 -0400
524
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:12:46 -0300
734
525
 
735
526
 
736
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:04 -0400
527
+ Started GET "/javascripts/styleguide.js" for 127.0.0.1 at 2015-04-10 17:12:46 -0300
737
528
 
738
529
 
739
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:19 -0400
530
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:12:47 -0300
531
+ Processing by StyleguideController#show as HTML
532
+ Parameters: {"id"=>"card"}
533
+ Rendered app/components/card/_card.html.erb (0.3ms)
534
+ Rendered app/components/card/_card.html.erb (0.2ms)
535
+ Rendered app/components/card/_card.html.erb (0.1ms)
536
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (7.8ms)
537
+ Completed 200 OK in 25ms (Views: 25.3ms)
740
538
 
741
539
 
742
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:19 -0400
540
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:12:47 -0300
743
541
 
744
542
 
745
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:56:20 -0400
543
+ Started GET "/javascripts/styleguide.js" for 127.0.0.1 at 2015-04-10 17:12:47 -0300
746
544
 
747
545
 
748
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:59:02 -0400
546
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:14:46 -0300
547
+ Processing by StyleguideController#show as HTML
548
+ Parameters: {"id"=>"card"}
549
+ Rendered app/components/card/_card.html.erb (0.1ms)
550
+ Rendered app/components/card/_card.html.erb (0.1ms)
551
+ Rendered app/components/card/_card.html.erb (0.1ms)
552
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.0ms)
553
+ Completed 200 OK in 32ms (Views: 31.5ms)
749
554
 
750
555
 
751
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:04 -0400
752
- Processing by HomeController#index as HTML
753
- Rendered app/components/header/_header.html.erb (0.4ms)
754
- Rendered home/index.html.erb within layouts/application (3.8ms)
755
- Completed 500 Internal Server Error in 15ms
556
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:14:47 -0300
756
557
 
757
- ActionView::Template::Error (wrong number of arguments (5 for 1)
758
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
759
- 2: <html>
760
- 3: <head>
761
- 4: <title>Dummy</title>
762
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
763
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
764
- 7: <%= csrf_meta_tags %>
765
- 8: </head>
766
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3637985149907674267_70288522853220'
767
558
 
559
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:14:47 -0300
768
560
 
769
- Rendered /Users/kito/.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)
770
- Rendered /Users/kito/.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.7ms)
771
- Rendered /Users/kito/.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.7ms)
772
561
 
562
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:15:09 -0300
773
563
 
774
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:17 -0400
775
- Processing by HomeController#index as HTML
776
- Rendered app/components/header/_header.html.erb (0.1ms)
777
- Rendered home/index.html.erb within layouts/application (1.2ms)
778
- Completed 200 OK in 58ms (Views: 57.9ms | ActiveRecord: 0.0ms)
779
564
 
565
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:17:05 -0300
566
+ Processing by StyleguideController#show as HTML
567
+ Parameters: {"id"=>"card"}
568
+ Rendered app/components/card/_card.html.erb (0.2ms)
569
+ Rendered app/components/card/_card.html.erb (0.1ms)
570
+ Rendered app/components/card/_card.html.erb (0.1ms)
571
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.7ms)
572
+ Completed 200 OK in 31ms (Views: 31.1ms)
780
573
 
781
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:18 -0400
782
- Processing by HomeController#index as HTML
783
- Rendered app/components/header/_header.html.erb (0.0ms)
784
- Rendered home/index.html.erb within layouts/application (0.7ms)
785
- Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
786
574
 
575
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:17:05 -0300
787
576
 
788
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:19 -0400
789
- Processing by HomeController#index as HTML
790
- Rendered app/components/header/_header.html.erb (0.0ms)
791
- Rendered home/index.html.erb within layouts/application (0.7ms)
792
- Completed 200 OK in 14ms (Views: 14.3ms | ActiveRecord: 0.0ms)
793
577
 
578
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:17:05 -0300
794
579
 
795
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 10:59:21 -0400
796
580
 
581
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:17:29 -0300
582
+ Processing by StyleguideController#show as HTML
583
+ Parameters: {"id"=>"card"}
584
+ Rendered app/components/card/_card.html.erb (0.1ms)
585
+ Rendered app/components/card/_card.html.erb (0.1ms)
586
+ Rendered app/components/card/_card.html.erb (0.1ms)
587
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.3ms)
588
+ Completed 200 OK in 18ms (Views: 17.9ms)
797
589
 
798
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:39 -0400
799
- Processing by HomeController#index as HTML
800
- Rendered app/components/header/_header.html.erb (0.0ms)
801
- Rendered home/index.html.erb within layouts/application (0.6ms)
802
- Completed 500 Internal Server Error in 6ms
803
590
 
804
- ActionView::Template::Error (wrong number of arguments (3 for 1)
805
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
806
- 2: <html>
807
- 3: <head>
808
- 4: <title>Dummy</title>
809
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
810
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
811
- 7: <%= csrf_meta_tags %>
812
- 8: </head>
813
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3637985149907674267_70288522853220'
591
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:17:29 -0300
814
592
 
815
593
 
816
- Rendered /Users/kito/.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)
817
- Rendered /Users/kito/.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.5ms)
818
- Rendered /Users/kito/.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)
594
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:17:29 -0300
819
595
 
820
596
 
821
- Started GET "/" for 127.0.0.1 at 2015-03-20 10:59:42 -0400
822
- Processing by HomeController#index as HTML
823
- Rendered app/components/header/_header.html.erb (0.0ms)
824
- Rendered home/index.html.erb within layouts/application (0.6ms)
825
- Completed 500 Internal Server Error in 6ms
597
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:19:26 -0300
598
+ Processing by StyleguideController#show as HTML
599
+ Parameters: {"id"=>"card"}
600
+ Rendered app/components/card/_card.html.erb (0.3ms)
601
+ Rendered app/components/card/_card.html.erb (0.1ms)
602
+ Rendered app/components/card/_card.html.erb (0.1ms)
603
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (5.8ms)
604
+ Completed 200 OK in 9ms (Views: 9.2ms)
826
605
 
827
- ActionView::Template::Error (wrong number of arguments (3 for 1)
828
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:3)):
829
- 2: <html>
830
- 3: <head>
831
- 4: <title>Dummy</title>
832
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
833
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
834
- 7: <%= csrf_meta_tags %>
835
- 8: </head>
836
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3637985149907674267_70288522853220'
837
606
 
607
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:19:26 -0300
838
608
 
839
- Rendered /Users/kito/.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.0ms)
840
- Rendered /Users/kito/.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)
841
- Rendered /Users/kito/.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.1ms)
842
609
 
610
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:19:26 -0300
843
611
 
844
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 10:59:42 -0400
845
612
 
613
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:19:48 -0300
614
+ Processing by StyleguideController#show as HTML
615
+ Parameters: {"id"=>"card"}
616
+ Rendered app/components/card/_card.html.erb (0.1ms)
617
+ Rendered app/components/card/_card.html.erb (0.2ms)
618
+ Rendered app/components/card/_card.html.erb (0.1ms)
619
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
620
+ Completed 200 OK in 26ms (Views: 25.3ms)
846
621
 
847
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:02:40 -0400
848
622
 
623
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:19:49 -0300
849
624
 
850
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:02:40 -0400
851
625
 
626
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:19:49 -0300
852
627
 
853
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:02:41 -0400
854
- Processing by HomeController#index as HTML
855
- Rendered app/components/header/_header.html.erb (0.6ms)
856
- Rendered home/index.html.erb within layouts/application (4.0ms)
857
- Completed 500 Internal Server Error in 18ms
858
628
 
859
- LoadError (cannot load such file -- sass
860
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.scss.erb)):
861
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
629
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:19:51 -0300
630
+ Processing by StyleguideController#show as HTML
631
+ Parameters: {"id"=>"card"}
632
+ Rendered app/components/card/_card.html.erb (0.1ms)
633
+ Rendered app/components/card/_card.html.erb (0.1ms)
634
+ Rendered app/components/card/_card.html.erb (0.1ms)
635
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.3ms)
636
+ Completed 200 OK in 5ms (Views: 5.3ms)
862
637
 
863
638
 
864
- Rendered /Users/kito/.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.3ms)
865
- Rendered /Users/kito/.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)
866
- Rendered /Users/kito/.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)
867
- Rendered /Users/kito/.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 (24.0ms)
639
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:19:51 -0300
868
640
 
869
641
 
870
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:02:42 -0400
871
- Processing by HomeController#index as HTML
872
- Rendered app/components/header/_header.html.erb (0.1ms)
873
- Rendered home/index.html.erb within layouts/application (0.8ms)
874
- Completed 500 Internal Server Error in 11ms
642
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:19:51 -0300
875
643
 
876
- LoadError (cannot load such file -- sass
877
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.scss.erb)):
878
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
879
644
 
645
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:20:46 -0300
646
+ Processing by StyleguideController#show as HTML
647
+ Parameters: {"id"=>"card"}
648
+ Rendered app/components/card/_card.html.erb (0.1ms)
649
+ Rendered app/components/card/_card.html.erb (0.1ms)
650
+ Rendered app/components/card/_card.html.erb (0.1ms)
651
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.5ms)
652
+ Completed 200 OK in 24ms (Views: 23.8ms)
880
653
 
881
- Rendered /Users/kito/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.9/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
882
- Rendered /Users/kito/.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)
883
- Rendered /Users/kito/.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)
884
- Rendered /Users/kito/.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 (13.2ms)
885
654
 
655
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:20:46 -0300
886
656
 
887
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:03:00 -0400
888
- Processing by HomeController#index as HTML
889
- Rendered app/components/header/_header.html.erb (0.3ms)
890
- Rendered home/index.html.erb within layouts/application (1.4ms)
891
- Completed 200 OK in 40ms (Views: 39.6ms | ActiveRecord: 0.0ms)
892
657
 
658
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:20:46 -0300
893
659
 
894
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:00 -0400
895
660
 
661
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:20:48 -0300
662
+ Processing by StyleguideController#show as HTML
663
+ Parameters: {"id"=>"card"}
664
+ Rendered app/components/card/_card.html.erb (0.1ms)
665
+ Rendered app/components/card/_card.html.erb (0.1ms)
666
+ Rendered app/components/card/_card.html.erb (0.1ms)
667
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.0ms)
668
+ Completed 200 OK in 5ms (Views: 4.9ms)
896
669
 
897
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:00 -0400
898
670
 
671
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:20:48 -0300
899
672
 
900
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 11:03:00 -0400
901
673
 
674
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:20:48 -0300
902
675
 
903
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:03:01 -0400
904
- Processing by HomeController#index as HTML
905
- Rendered app/components/header/_header.html.erb (0.1ms)
906
- Rendered home/index.html.erb within layouts/application (0.8ms)
907
- Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
908
676
 
677
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:21:04 -0300
678
+ Processing by StyleguideController#show as HTML
679
+ Parameters: {"id"=>"card"}
680
+ Rendered app/components/card/_card.html.erb (0.1ms)
681
+ Rendered app/components/card/_card.html.erb (0.2ms)
682
+ Rendered app/components/card/_card.html.erb (0.1ms)
683
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (6.4ms)
684
+ Completed 200 OK in 25ms (Views: 24.5ms)
909
685
 
910
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:01 -0400
911
686
 
687
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:21:05 -0300
912
688
 
913
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:01 -0400
914
689
 
690
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:21:05 -0300
915
691
 
916
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 11:03:01 -0400
917
692
 
693
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:21:22 -0300
694
+ Processing by StyleguideController#show as HTML
695
+ Parameters: {"id"=>"card"}
696
+ Rendered app/components/card/_card.html.erb (0.1ms)
697
+ Rendered app/components/card/_card.html.erb (0.1ms)
698
+ Rendered app/components/card/_card.html.erb (0.1ms)
699
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.7ms)
700
+ Completed 200 OK in 22ms (Views: 21.6ms)
918
701
 
919
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:04 -0400
920
702
 
703
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:21:22 -0300
921
704
 
922
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:03:28 -0400
923
- Processing by HomeController#index as HTML
924
- Rendered app/components/header/_header.html.erb (0.0ms)
925
- Rendered home/index.html.erb within layouts/application (0.7ms)
926
- Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
927
705
 
706
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:21:22 -0300
928
707
 
929
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:03:29 -0400
930
- Processing by HomeController#index as HTML
931
- Rendered app/components/header/_header.html.erb (0.1ms)
932
- Rendered home/index.html.erb within layouts/application (0.8ms)
933
- Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
934
708
 
709
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:21:35 -0300
710
+ Processing by StyleguideController#show as HTML
711
+ Parameters: {"id"=>"card"}
712
+ Rendered app/components/card/_card.html.erb (0.1ms)
713
+ Rendered app/components/card/_card.html.erb (0.1ms)
714
+ Rendered app/components/card/_card.html.erb (0.1ms)
715
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.6ms)
716
+ Completed 200 OK in 22ms (Views: 21.4ms)
935
717
 
936
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:31 -0400
937
718
 
719
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:21:35 -0300
938
720
 
939
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:31 -0400
940
721
 
722
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:21:35 -0300
941
723
 
942
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:32 -0400
943
724
 
725
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:21:51 -0300
944
726
 
945
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:37 -0400
946
727
 
728
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:22:22 -0300
729
+ Processing by StyleguideController#show as HTML
730
+ Parameters: {"id"=>"card"}
731
+ Rendered app/components/card/_card.html.erb (0.1ms)
732
+ Rendered app/components/card/_card.html.erb (0.1ms)
733
+ Rendered app/components/card/_card.html.erb (0.1ms)
734
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
735
+ Completed 200 OK in 23ms (Views: 23.0ms)
947
736
 
948
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:38 -0400
949
737
 
738
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:22:22 -0300
950
739
 
951
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:38 -0400
952
740
 
741
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:22:22 -0300
953
742
 
954
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:39 -0400
955
743
 
744
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 17:22:31 -0300
745
+ Processing by StyleguideController#show as HTML
746
+ Parameters: {"id"=>"header"}
747
+ Rendered app/components/header/_header.html.erb (0.2ms)
748
+ Rendered app/components/header/_header.html.erb (0.1ms)
749
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (12.3ms)
750
+ Completed 200 OK in 15ms (Views: 14.8ms)
956
751
 
957
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:39 -0400
958
752
 
753
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:22:31 -0300
959
754
 
960
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:39 -0400
961
755
 
756
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:22:31 -0300
962
757
 
963
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:40 -0400
964
758
 
759
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:22:47 -0300
760
+ Processing by StyleguideController#show as HTML
761
+ Parameters: {"id"=>"card"}
762
+ Rendered app/components/card/_card.html.erb (0.1ms)
763
+ Rendered app/components/card/_card.html.erb (0.1ms)
764
+ Rendered app/components/card/_card.html.erb (0.1ms)
765
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
766
+ Completed 200 OK in 7ms (Views: 7.0ms)
965
767
 
966
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:52 -0400
967
768
 
769
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:22:47 -0300
968
770
 
969
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:03:52 -0400
970
771
 
772
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:22:47 -0300
971
773
 
972
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:04:00 -0400
973
774
 
775
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:23:18 -0300
776
+ Processing by StyleguideController#show as HTML
777
+ Parameters: {"id"=>"card"}
778
+ Rendered app/components/card/_card.html.erb (0.1ms)
779
+ Rendered app/components/card/_card.html.erb (0.1ms)
780
+ Rendered app/components/card/_card.html.erb (0.1ms)
781
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (4.0ms)
782
+ Completed 200 OK in 29ms (Views: 28.3ms)
974
783
 
975
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:04:01 -0400
976
784
 
785
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:23:18 -0300
977
786
 
978
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 11:04:11 -0400
979
787
 
788
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:23:18 -0300
980
789
 
981
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:04:20 -0400
982
- Processing by HomeController#index as HTML
983
- Rendered app/components/header/_header.html.erb (0.1ms)
984
- Rendered home/index.html.erb within layouts/application (1.0ms)
985
- Completed 500 Internal Server Error in 6ms
986
790
 
987
- ActionView::Template::Error (wrong number of arguments (5 for 1)
988
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
989
- 2: <html>
990
- 3: <head>
991
- 4: <title>Dummy</title>
992
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
993
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
994
- 7: <%= csrf_meta_tags %>
995
- 8: </head>
996
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
791
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:23:30 -0300
792
+ Processing by StyleguideController#show as HTML
793
+ Parameters: {"id"=>"card"}
794
+ Rendered app/components/card/_card.html.erb (0.1ms)
795
+ Rendered app/components/card/_card.html.erb (0.1ms)
796
+ Rendered app/components/card/_card.html.erb (0.0ms)
797
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/styleguide/show.html.erb within layouts/mountain_view (3.1ms)
798
+ Completed 200 OK in 21ms (Views: 21.0ms)
997
799
 
998
800
 
999
- Rendered /Users/kito/.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)
1000
- Rendered /Users/kito/.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)
1001
- Rendered /Users/kito/.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.3ms)
801
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:23:30 -0300
1002
802
 
1003
803
 
1004
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:07:45 -0400
1005
- Processing by HomeController#index as HTML
1006
- Rendered app/components/header/_header.html.erb (0.0ms)
1007
- Rendered home/index.html.erb within layouts/application (0.7ms)
1008
- Completed 500 Internal Server Error in 6ms
804
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:23:30 -0300
1009
805
 
1010
- ActionView::Template::Error (wrong number of arguments (3 for 0..1)
1011
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1012
- 2: <html>
1013
- 3: <head>
1014
- 4: <title>Dummy</title>
1015
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1016
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1017
- 7: <%= csrf_meta_tags %>
1018
- 8: </head>
1019
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1020
806
 
807
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 17:25:01 -0300
1021
808
 
1022
- Rendered /Users/kito/.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)
1023
- Rendered /Users/kito/.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)
1024
- Rendered /Users/kito/.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)
1025
809
 
810
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 17:25:05 -0300
1026
811
 
1027
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:07:45 -0400
1028
- Processing by HomeController#index as HTML
1029
- Rendered app/components/header/_header.html.erb (0.0ms)
1030
- Rendered home/index.html.erb within layouts/application (0.7ms)
1031
- Completed 500 Internal Server Error in 7ms
1032
812
 
1033
- ActionView::Template::Error (wrong number of arguments (3 for 0..1)
1034
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1035
- 2: <html>
1036
- 3: <head>
1037
- 4: <title>Dummy</title>
1038
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1039
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1040
- 7: <%= csrf_meta_tags %>
1041
- 8: </head>
1042
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
813
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:25:09 -0300
1043
814
 
1044
815
 
1045
- Rendered /Users/kito/.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)
1046
- Rendered /Users/kito/.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)
1047
- Rendered /Users/kito/.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.4ms)
816
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:26:51 -0300
817
+ Processing by MountainView::StyleguideController#show as HTML
818
+ Parameters: {"id"=>"card"}
819
+ Rendered app/components/card/_card.html.erb (0.7ms)
820
+ Rendered app/components/card/_card.html.erb (0.1ms)
821
+ Rendered app/components/card/_card.html.erb (0.1ms)
822
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (8.8ms)
823
+ Completed 200 OK in 49ms (Views: 48.2ms)
1048
824
 
1049
825
 
1050
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:07:53 -0400
1051
- Processing by HomeController#index as HTML
1052
- Rendered app/components/header/_header.html.erb (0.1ms)
1053
- Rendered home/index.html.erb within layouts/application (0.7ms)
1054
- Completed 500 Internal Server Error in 6ms
826
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:26:51 -0300
827
+
1055
828
 
1056
- ActionView::Template::Error (require_tree argument must be a relative path
1057
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1058
- 2: <html>
1059
- 3: <head>
1060
- 4: <title>Dummy</title>
1061
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1062
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1063
- 7: <%= csrf_meta_tags %>
1064
- 8: </head>
1065
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
829
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:26:51 -0300
1066
830
 
1067
831
 
1068
- Rendered /Users/kito/.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)
1069
- Rendered /Users/kito/.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)
1070
- Rendered /Users/kito/.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)
832
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:28:00 -0300
833
+ Processing by MountainView::StyleguideController#show as HTML
834
+ Parameters: {"id"=>"card"}
835
+ Rendered app/components/card/_card.html.erb (0.2ms)
836
+ Rendered app/components/card/_card.html.erb (0.1ms)
837
+ Rendered app/components/card/_card.html.erb (0.1ms)
838
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.2ms)
839
+ Completed 200 OK in 20ms (Views: 19.7ms)
1071
840
 
1072
841
 
1073
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:07:54 -0400
1074
- Processing by HomeController#index as HTML
1075
- Rendered app/components/header/_header.html.erb (0.0ms)
1076
- Rendered home/index.html.erb within layouts/application (0.7ms)
1077
- Completed 500 Internal Server Error in 6ms
842
+ Started GET "/assets/styleguide.css" for 127.0.0.1 at 2015-04-10 17:28:00 -0300
1078
843
 
1079
- ActionView::Template::Error (require_tree argument must be a relative path
1080
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1081
- 2: <html>
1082
- 3: <head>
1083
- 4: <title>Dummy</title>
1084
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1085
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1086
- 7: <%= csrf_meta_tags %>
1087
- 8: </head>
1088
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1089
844
 
845
+ Started GET "/assets/styleguide.js" for 127.0.0.1 at 2015-04-10 17:28:00 -0300
1090
846
 
1091
- Rendered /Users/kito/.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)
1092
- Rendered /Users/kito/.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)
1093
- Rendered /Users/kito/.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.0ms)
1094
847
 
848
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 17:50:07 -0300
849
+ Processing by MountainView::StyleguideController#show as HTML
850
+ Parameters: {"id"=>"card"}
851
+ Rendered app/components/card/_card.html.erb (0.1ms)
852
+ Rendered app/components/card/_card.html.erb (0.1ms)
853
+ Rendered app/components/card/_card.html.erb (0.0ms)
854
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.8ms)
855
+ Completed 200 OK in 47ms (Views: 47.0ms)
1095
856
 
1096
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:07:55 -0400
1097
- Processing by HomeController#index as HTML
1098
- Rendered app/components/header/_header.html.erb (0.0ms)
1099
- Rendered home/index.html.erb within layouts/application (0.7ms)
1100
- Completed 500 Internal Server Error in 6ms
1101
857
 
1102
- ActionView::Template::Error (require_tree argument must be a relative path
1103
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1104
- 2: <html>
1105
- 3: <head>
1106
- 4: <title>Dummy</title>
1107
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1108
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1109
- 7: <%= csrf_meta_tags %>
1110
- 8: </head>
1111
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
858
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 17:50:08 -0300
1112
859
 
1113
860
 
1114
- Rendered /Users/kito/.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)
1115
- Rendered /Users/kito/.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)
1116
- Rendered /Users/kito/.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.0ms)
861
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-10 17:50:08 -0300
1117
862
 
1118
863
 
1119
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:08:06 -0400
864
+ Started GET "/" for 127.0.0.1 at 2015-04-10 18:06:56 -0300
1120
865
  Processing by HomeController#index as HTML
1121
- Rendered app/components/header/_header.html.erb (0.1ms)
1122
- Rendered home/index.html.erb within layouts/application (0.9ms)
1123
- Completed 500 Internal Server Error in 7ms
866
+ Rendered app/components/header/_header.html.erb (1.0ms)
867
+ Rendered home/index.html.erb within layouts/application (5.5ms)
868
+ Completed 200 OK in 33ms (Views: 32.9ms)
1124
869
 
1125
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1126
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1127
- 2: <html>
1128
- 3: <head>
1129
- 4: <title>Dummy</title>
1130
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1131
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1132
- 7: <%= csrf_meta_tags %>
1133
- 8: </head>
1134
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1135
870
 
871
+ Started GET "/assets/application.css" for 127.0.0.1 at 2015-04-10 18:06:56 -0300
1136
872
 
1137
- Rendered /Users/kito/.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)
1138
- Rendered /Users/kito/.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)
1139
- Rendered /Users/kito/.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.8ms)
1140
873
 
874
+ Started GET "/assets/application.js" for 127.0.0.1 at 2015-04-10 18:06:56 -0300
1141
875
 
1142
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:08:07 -0400
1143
- Processing by HomeController#index as HTML
1144
- Rendered app/components/header/_header.html.erb (0.0ms)
1145
- Rendered home/index.html.erb within layouts/application (0.7ms)
1146
- Completed 500 Internal Server Error in 8ms
1147
876
 
1148
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1149
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
877
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-04-10 22:26:29 -0300
878
+ Processing by MountainView::StyleguideController#index as HTML
879
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.5ms)
880
+ Completed 200 OK in 50ms (Views: 49.3ms)
1158
881
 
1159
882
 
1160
- Rendered /Users/kito/.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)
1161
- Rendered /Users/kito/.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)
1162
- Rendered /Users/kito/.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.2ms)
883
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-10 22:26:29 -0300
1163
884
 
1164
885
 
1165
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:08:17 -0400
1166
- Processing by HomeController#index as HTML
1167
- Rendered app/components/header/_header.html.erb (0.0ms)
1168
- Rendered home/index.html.erb within layouts/application (0.7ms)
1169
- Completed 500 Internal Server Error in 9ms
886
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 22:26:29 -0300
1170
887
 
1171
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1172
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
1181
888
 
889
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 22:26:31 -0300
890
+ Processing by MountainView::StyleguideController#show as HTML
891
+ Parameters: {"id"=>"card"}
892
+ Rendered app/components/card/_card.html.erb (0.8ms)
893
+ Rendered app/components/card/_card.html.erb (0.1ms)
894
+ Rendered app/components/card/_card.html.erb (0.1ms)
895
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (16.1ms)
896
+ Completed 200 OK in 20ms (Views: 19.6ms)
1182
897
 
1183
- Rendered /Users/kito/.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)
1184
- Rendered /Users/kito/.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)
1185
- Rendered /Users/kito/.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.3ms)
1186
898
 
899
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-10 22:26:31 -0300
1187
900
 
1188
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:08:18 -0400
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.7ms)
1192
- Completed 500 Internal Server Error in 8ms
1193
901
 
1194
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1195
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
902
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 22:30:25 -0300
903
+ Processing by MountainView::StyleguideController#show as HTML
904
+ Parameters: {"id"=>"card"}
905
+ Rendered app/components/card/_card.html.erb (0.1ms)
906
+ Rendered app/components/card/_card.html.erb (0.1ms)
907
+ Rendered app/components/card/_card.html.erb (0.1ms)
908
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.4ms)
909
+ Completed 200 OK in 9ms (Views: 8.9ms)
1204
910
 
1205
911
 
1206
- Rendered /Users/kito/.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)
1207
- Rendered /Users/kito/.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)
1208
- Rendered /Users/kito/.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.9ms)
912
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 22:30:25 -0300
1209
913
 
1210
914
 
1211
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:19 -0400
1212
- Processing by HomeController#index as HTML
1213
- Rendered app/components/header/_header.html.erb (0.1ms)
1214
- Rendered home/index.html.erb within layouts/application (1.4ms)
1215
- Completed 500 Internal Server Error in 12ms
915
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-10 22:30:25 -0300
1216
916
 
1217
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1218
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
1227
917
 
918
+ Started GET "/apple-touch-icon-precomposed.png" for 127.0.0.1 at 2015-04-10 22:30:35 -0300
1228
919
 
1229
- Rendered /Users/kito/.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)
1230
- Rendered /Users/kito/.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.5ms)
1231
- Rendered /Users/kito/.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.0ms)
1232
920
 
921
+ Started GET "/apple-touch-icon.png" for 127.0.0.1 at 2015-04-10 22:30:35 -0300
1233
922
 
1234
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:19 -0400
1235
- Processing by HomeController#index as HTML
1236
- Rendered app/components/header/_header.html.erb (0.1ms)
1237
- Rendered home/index.html.erb within layouts/application (0.7ms)
1238
- Completed 500 Internal Server Error in 8ms
1239
923
 
1240
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1241
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
924
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 22:49:28 -0300
925
+ Processing by MountainView::StyleguideController#show as HTML
926
+ Parameters: {"id"=>"card"}
927
+ Rendered app/components/card/_card.html.erb (0.1ms)
928
+ Rendered app/components/card/_card.html.erb (0.1ms)
929
+ Rendered app/components/card/_card.html.erb (0.1ms)
930
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.4ms)
931
+ Completed 200 OK in 13ms (Views: 12.6ms)
1250
932
 
1251
933
 
1252
- Rendered /Users/kito/.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)
1253
- Rendered /Users/kito/.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)
1254
- Rendered /Users/kito/.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.7ms)
934
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 22:49:29 -0300
1255
935
 
1256
936
 
1257
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:20 -0400
1258
- Processing by HomeController#index as HTML
1259
- Rendered app/components/header/_header.html.erb (0.0ms)
1260
- Rendered home/index.html.erb within layouts/application (0.7ms)
1261
- Completed 500 Internal Server Error in 6ms
937
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-10 22:52:14 -0300
938
+ Processing by MountainView::StyleguideController#show as HTML
939
+ Parameters: {"id"=>"header"}
940
+ Rendered app/components/header/_header.html.erb (1.2ms)
941
+ Rendered app/components/header/_header.html.erb (0.1ms)
942
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.5ms)
943
+ Completed 200 OK in 11ms (Views: 11.2ms)
1262
944
 
1263
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1264
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
1273
945
 
946
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 22:52:14 -0300
1274
947
 
1275
- Rendered /Users/kito/.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.7ms)
1276
- Rendered /Users/kito/.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)
1277
- Rendered /Users/kito/.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.2ms)
1278
948
 
949
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-10 22:52:16 -0300
950
+ Processing by MountainView::StyleguideController#show as HTML
951
+ Parameters: {"id"=>"card"}
952
+ Rendered app/components/card/_card.html.erb (0.3ms)
953
+ Rendered app/components/card/_card.html.erb (0.1ms)
954
+ Rendered app/components/card/_card.html.erb (0.1ms)
955
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
956
+ Completed 200 OK in 8ms (Views: 7.8ms)
1279
957
 
1280
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:20 -0400
1281
- Processing by HomeController#index as HTML
1282
- Rendered app/components/header/_header.html.erb (0.0ms)
1283
- Rendered home/index.html.erb within layouts/application (0.7ms)
1284
- Completed 500 Internal Server Error in 7ms
1285
958
 
1286
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1287
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
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__3050144920259907435_70345910979120'
959
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-10 22:52:16 -0300
960
+
1296
961
 
962
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-04-17 15:43:14 -0300
963
+ Processing by MountainView::StyleguideController#index as HTML
964
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.4ms)
965
+ Completed 200 OK in 54ms (Views: 54.2ms)
1297
966
 
1298
- Rendered /Users/kito/.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)
1299
- Rendered /Users/kito/.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)
1300
- Rendered /Users/kito/.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.3ms)
1301
967
 
968
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-17 15:43:14 -0300
1302
969
 
1303
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:21 -0400
1304
- Processing by HomeController#index as HTML
1305
- Rendered app/components/header/_header.html.erb (0.0ms)
1306
- Rendered home/index.html.erb within layouts/application (0.7ms)
1307
- Completed 500 Internal Server Error in 7ms
1308
970
 
1309
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1310
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1311
- 2: <html>
1312
- 3: <head>
1313
- 4: <title>Dummy</title>
1314
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1315
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1316
- 7: <%= csrf_meta_tags %>
1317
- 8: </head>
1318
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
971
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-17 15:43:14 -0300
972
+
973
+
974
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-17 15:43:16 -0300
975
+ Processing by MountainView::StyleguideController#show as HTML
976
+ Parameters: {"id"=>"card"}
977
+ Rendered app/components/card/_card.html.erb (1.0ms)
978
+ Rendered app/components/card/_card.html.erb (0.1ms)
979
+ Rendered app/components/card/_card.html.erb (0.1ms)
980
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (9.5ms)
981
+ Completed 200 OK in 13ms (Views: 13.0ms)
1319
982
 
1320
983
 
1321
- Rendered /Users/kito/.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)
1322
- Rendered /Users/kito/.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)
1323
- Rendered /Users/kito/.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.1ms)
984
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-17 15:44:13 -0300
985
+ Processing by MountainView::StyleguideController#show as HTML
986
+ Parameters: {"id"=>"header"}
987
+ Rendered app/components/header/_header.html.erb (0.6ms)
988
+ Rendered app/components/header/_header.html.erb (0.1ms)
989
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.9ms)
990
+ Completed 200 OK in 9ms (Views: 8.7ms)
1324
991
 
1325
992
 
1326
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:21 -0400
993
+ Started GET "/" for 127.0.0.1 at 2015-04-17 15:44:33 -0300
1327
994
  Processing by HomeController#index as HTML
1328
995
  Rendered app/components/header/_header.html.erb (0.1ms)
1329
- Rendered home/index.html.erb within layouts/application (1.5ms)
1330
- Completed 500 Internal Server Error in 8ms
996
+ Rendered home/index.html.erb within layouts/application (1.4ms)
997
+ Completed 200 OK in 16ms (Views: 15.9ms)
1331
998
 
1332
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1333
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1334
- 2: <html>
1335
- 3: <head>
1336
- 4: <title>Dummy</title>
1337
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1338
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1339
- 7: <%= csrf_meta_tags %>
1340
- 8: </head>
1341
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1342
999
 
1000
+ Started GET "/assets/application.css" for 127.0.0.1 at 2015-04-17 15:44:33 -0300
1343
1001
 
1344
- Rendered /Users/kito/.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)
1345
- Rendered /Users/kito/.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)
1346
- Rendered /Users/kito/.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.3ms)
1347
1002
 
1003
+ Started GET "/assets/application.js" for 127.0.0.1 at 2015-04-17 15:44:33 -0300
1348
1004
 
1349
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:29 -0400
1350
- Processing by HomeController#index as HTML
1351
- Rendered app/components/header/_header.html.erb (0.0ms)
1352
- Rendered home/index.html.erb within layouts/application (0.7ms)
1353
- Completed 500 Internal Server Error in 8ms
1354
1005
 
1355
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1356
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1357
- 2: <html>
1358
- 3: <head>
1359
- 4: <title>Dummy</title>
1360
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1361
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1362
- 7: <%= csrf_meta_tags %>
1363
- 8: </head>
1364
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1006
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-17 15:44:44 -0300
1007
+ Processing by MountainView::StyleguideController#show as HTML
1008
+ Parameters: {"id"=>"card"}
1009
+ Rendered app/components/header/_header.html.erb (0.1ms)
1010
+ Rendered app/components/card/_card.html.erb (1.9ms)
1011
+ Rendered app/components/header/_header.html.erb (0.1ms)
1012
+ Rendered app/components/card/_card.html.erb (1.2ms)
1013
+ Rendered app/components/header/_header.html.erb (0.0ms)
1014
+ Rendered app/components/card/_card.html.erb (0.7ms)
1015
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (15.4ms)
1016
+ Completed 200 OK in 19ms (Views: 18.3ms)
1365
1017
 
1366
1018
 
1367
- Rendered /Users/kito/.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)
1368
- Rendered /Users/kito/.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.5ms)
1369
- Rendered /Users/kito/.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 (12.3ms)
1019
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 10:55:29 -0300
1020
+ Processing by MountainView::StyleguideController#show as HTML
1021
+ Parameters: {"id"=>"card"}
1022
+ Rendered app/components/card/_card.html.erb (0.8ms)
1023
+ Rendered app/components/card/_card.html.erb (0.2ms)
1024
+ Rendered app/components/card/_card.html.erb (0.1ms)
1025
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.1ms)
1026
+ Completed 200 OK in 71ms (Views: 70.8ms)
1370
1027
 
1371
1028
 
1372
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:29 -0400
1373
- Processing by HomeController#index as HTML
1374
- Rendered app/components/header/_header.html.erb (0.1ms)
1375
- Rendered home/index.html.erb within layouts/application (1.1ms)
1376
- Completed 500 Internal Server Error in 9ms
1029
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:55:29 -0300
1377
1030
 
1378
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1379
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1380
- 2: <html>
1381
- 3: <head>
1382
- 4: <title>Dummy</title>
1383
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1384
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1385
- 7: <%= csrf_meta_tags %>
1386
- 8: </head>
1387
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1388
1031
 
1032
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:55:29 -0300
1389
1033
 
1390
- Rendered /Users/kito/.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)
1391
- Rendered /Users/kito/.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 (2.9ms)
1392
- Rendered /Users/kito/.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.1ms)
1393
1034
 
1035
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 10:55:31 -0300
1036
+ Processing by MountainView::StyleguideController#show as HTML
1037
+ Parameters: {"id"=>"card"}
1038
+ Rendered app/components/card/_card.html.erb (0.3ms)
1039
+ Rendered app/components/card/_card.html.erb (0.4ms)
1040
+ Rendered app/components/card/_card.html.erb (0.0ms)
1041
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (8.5ms)
1042
+ Completed 200 OK in 13ms (Views: 12.5ms)
1394
1043
 
1395
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:30 -0400
1396
- Processing by HomeController#index as HTML
1397
- Rendered app/components/header/_header.html.erb (0.0ms)
1398
- Rendered home/index.html.erb within layouts/application (0.7ms)
1399
- Completed 500 Internal Server Error in 7ms
1400
1044
 
1401
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1402
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1403
- 2: <html>
1404
- 3: <head>
1405
- 4: <title>Dummy</title>
1406
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1407
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1408
- 7: <%= csrf_meta_tags %>
1409
- 8: </head>
1410
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1045
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:55:33 -0300
1046
+ Processing by MountainView::StyleguideController#show as HTML
1047
+ Parameters: {"id"=>"header"}
1048
+ Rendered app/components/header/_header.html.erb (0.8ms)
1049
+ Rendered app/components/header/_header.html.erb (0.1ms)
1050
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (12.4ms)
1051
+ Completed 200 OK in 17ms (Views: 17.3ms)
1411
1052
 
1412
1053
 
1413
- Rendered /Users/kito/.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.7ms)
1414
- Rendered /Users/kito/.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)
1415
- Rendered /Users/kito/.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)
1054
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 10:55:34 -0300
1055
+ Processing by MountainView::StyleguideController#show as HTML
1056
+ Parameters: {"id"=>"card"}
1057
+ Rendered app/components/card/_card.html.erb (0.1ms)
1058
+ Rendered app/components/card/_card.html.erb (0.2ms)
1059
+ Rendered app/components/card/_card.html.erb (0.2ms)
1060
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (6.5ms)
1061
+ Completed 200 OK in 10ms (Views: 9.9ms)
1416
1062
 
1417
1063
 
1418
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:30 -0400
1419
- Processing by HomeController#index as HTML
1420
- Rendered app/components/header/_header.html.erb (0.0ms)
1421
- Rendered home/index.html.erb within layouts/application (0.9ms)
1422
- Completed 500 Internal Server Error in 6ms
1064
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:55:35 -0300
1065
+ Processing by MountainView::StyleguideController#show as HTML
1066
+ Parameters: {"id"=>"header"}
1067
+ Rendered app/components/header/_header.html.erb (0.1ms)
1068
+ Rendered app/components/header/_header.html.erb (0.1ms)
1069
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.7ms)
1070
+ Completed 200 OK in 6ms (Views: 5.6ms)
1423
1071
 
1424
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1425
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1426
- 2: <html>
1427
- 3: <head>
1428
- 4: <title>Dummy</title>
1429
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1430
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1431
- 7: <%= csrf_meta_tags %>
1432
- 8: </head>
1433
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1434
1072
 
1073
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 10:55:36 -0300
1074
+ Processing by MountainView::StyleguideController#show as HTML
1075
+ Parameters: {"id"=>"card"}
1076
+ Rendered app/components/card/_card.html.erb (0.2ms)
1077
+ Rendered app/components/card/_card.html.erb (0.4ms)
1078
+ Rendered app/components/card/_card.html.erb (0.1ms)
1079
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (8.9ms)
1080
+ Completed 200 OK in 12ms (Views: 12.1ms)
1435
1081
 
1436
- Rendered /Users/kito/.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)
1437
- Rendered /Users/kito/.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)
1438
- Rendered /Users/kito/.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.4ms)
1439
1082
 
1083
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:56:15 -0300
1084
+ Processing by MountainView::StyleguideController#show as HTML
1085
+ Parameters: {"id"=>"header"}
1086
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.7ms)
1087
+ Completed 500 Internal Server Error in 5ms
1440
1088
 
1441
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:25:31 -0400
1442
- Processing by HomeController#index as HTML
1443
- Rendered app/components/header/_header.html.erb (0.1ms)
1444
- Rendered home/index.html.erb within layouts/application (1.4ms)
1445
- Completed 500 Internal Server Error in 11ms
1446
1089
 
1447
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1448
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1449
- 2: <html>
1450
- 3: <head>
1451
- 4: <title>Dummy</title>
1452
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1453
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1454
- 7: <%= csrf_meta_tags %>
1455
- 8: </head>
1456
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1090
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:57:25 -0300
1091
+ Processing by MountainView::StyleguideController#show as HTML
1092
+ Parameters: {"id"=>"header"}
1093
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.6ms)
1094
+ Completed 500 Internal Server Error in 4ms
1457
1095
 
1458
1096
 
1459
- Rendered /Users/kito/.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.2ms)
1460
- Rendered /Users/kito/.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)
1461
- Rendered /Users/kito/.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.1ms)
1097
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:57:32 -0300
1098
+ Processing by MountainView::StyleguideController#show as HTML
1099
+ Parameters: {"id"=>"header"}
1100
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.1ms)
1101
+ Completed 200 OK in 16ms (Views: 15.8ms)
1462
1102
 
1463
1103
 
1464
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:37:20 -0400
1465
- Processing by HomeController#index as HTML
1466
- Rendered app/components/header/_header.html.erb (0.1ms)
1467
- Rendered home/index.html.erb within layouts/application (0.7ms)
1468
- Completed 500 Internal Server Error in 5ms
1104
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:57:32 -0300
1469
1105
 
1470
- ActionView::Template::Error (require_tree argument must be a relative path
1471
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1472
- 2: <html>
1473
- 3: <head>
1474
- 4: <title>Dummy</title>
1475
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1476
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1477
- 7: <%= csrf_meta_tags %>
1478
- 8: </head>
1479
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1480
1106
 
1107
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:57:32 -0300
1481
1108
 
1482
- Rendered /Users/kito/.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)
1483
- Rendered /Users/kito/.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)
1484
- Rendered /Users/kito/.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)
1485
1109
 
1110
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:58:41 -0300
1111
+ Processing by MountainView::StyleguideController#show as HTML
1112
+ Parameters: {"id"=>"header"}
1113
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.8ms)
1114
+ Completed 200 OK in 4ms (Views: 3.5ms)
1486
1115
 
1487
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:37:21 -0400
1488
- Processing by HomeController#index as HTML
1489
- Rendered app/components/header/_header.html.erb (0.1ms)
1490
- Rendered home/index.html.erb within layouts/application (0.8ms)
1491
- Completed 500 Internal Server Error in 6ms
1492
1116
 
1493
- ActionView::Template::Error (require_tree argument must be a relative path
1494
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1495
- 2: <html>
1496
- 3: <head>
1497
- 4: <title>Dummy</title>
1498
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1499
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1500
- 7: <%= csrf_meta_tags %>
1501
- 8: </head>
1502
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1117
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:58:41 -0300
1503
1118
 
1504
1119
 
1505
- Rendered /Users/kito/.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)
1506
- Rendered /Users/kito/.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)
1507
- Rendered /Users/kito/.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.0ms)
1120
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:58:41 -0300
1508
1121
 
1509
1122
 
1510
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:37:27 -0400
1511
- Processing by HomeController#index as HTML
1512
- Rendered app/components/header/_header.html.erb (0.1ms)
1513
- Rendered home/index.html.erb within layouts/application (0.8ms)
1514
- Completed 500 Internal Server Error in 7ms
1123
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:58:49 -0300
1124
+ Processing by MountainView::StyleguideController#show as HTML
1125
+ Parameters: {"id"=>"header"}
1126
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.8ms)
1127
+ Completed 200 OK in 3ms (Views: 3.3ms)
1515
1128
 
1516
- ActionView::Template::Error (require_tree argument must be a directory
1517
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1518
- 2: <html>
1519
- 3: <head>
1520
- 4: <title>Dummy</title>
1521
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1522
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1523
- 7: <%= csrf_meta_tags %>
1524
- 8: </head>
1525
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1526
1129
 
1130
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:58:49 -0300
1527
1131
 
1528
- Rendered /Users/kito/.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)
1529
- Rendered /Users/kito/.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)
1530
- Rendered /Users/kito/.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.3ms)
1531
1132
 
1133
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:58:49 -0300
1532
1134
 
1533
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:37:28 -0400
1534
- Processing by HomeController#index as HTML
1535
- Rendered app/components/header/_header.html.erb (0.0ms)
1536
- Rendered home/index.html.erb within layouts/application (0.7ms)
1537
- Completed 500 Internal Server Error in 6ms
1538
1135
 
1539
- ActionView::Template::Error (require_tree argument must be a directory
1540
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1541
- 2: <html>
1542
- 3: <head>
1543
- 4: <title>Dummy</title>
1544
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1545
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1546
- 7: <%= csrf_meta_tags %>
1547
- 8: </head>
1548
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1136
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:58:51 -0300
1137
+ Processing by MountainView::StyleguideController#show as HTML
1138
+ Parameters: {"id"=>"header"}
1139
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1140
+ Completed 200 OK in 4ms (Views: 3.8ms)
1549
1141
 
1550
1142
 
1551
- Rendered /Users/kito/.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)
1552
- Rendered /Users/kito/.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)
1553
- Rendered /Users/kito/.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.9ms)
1143
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:58:51 -0300
1554
1144
 
1555
1145
 
1556
- Started GET "/" for 127.0.0.1 at 2015-03-20 11:37:30 -0400
1557
- Processing by HomeController#index as HTML
1558
- Rendered app/components/header/_header.html.erb (0.0ms)
1559
- Rendered home/index.html.erb within layouts/application (0.7ms)
1560
- Completed 500 Internal Server Error in 8ms
1146
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:58:51 -0300
1561
1147
 
1562
- ActionView::Template::Error (require_tree argument must be a directory
1563
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1564
- 2: <html>
1565
- 3: <head>
1566
- 4: <title>Dummy</title>
1567
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1568
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1569
- 7: <%= csrf_meta_tags %>
1570
- 8: </head>
1571
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1572
1148
 
1149
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 10:58:51 -0300
1150
+ Processing by MountainView::StyleguideController#show as HTML
1151
+ Parameters: {"id"=>"header"}
1152
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1153
+ Completed 200 OK in 4ms (Views: 3.3ms)
1573
1154
 
1574
- Rendered /Users/kito/.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)
1575
- Rendered /Users/kito/.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)
1576
- Rendered /Users/kito/.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)
1577
1155
 
1156
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 10:58:52 -0300
1578
1157
 
1579
- Started GET "/" for 127.0.0.1 at 2015-03-20 12:14:05 -0400
1580
- Processing by HomeController#index as HTML
1581
- Rendered app/components/header/_header.html.erb (0.1ms)
1582
- Rendered home/index.html.erb within layouts/application (1.4ms)
1583
- Completed 500 Internal Server Error in 9ms
1584
1158
 
1585
- ActionView::Template::Error (require_tree argument must be a relative path
1586
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1587
- 2: <html>
1588
- 3: <head>
1589
- 4: <title>Dummy</title>
1590
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1591
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1592
- 7: <%= csrf_meta_tags %>
1593
- 8: </head>
1594
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1159
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 10:58:52 -0300
1595
1160
 
1596
1161
 
1597
- Rendered /Users/kito/.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)
1598
- Rendered /Users/kito/.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)
1599
- Rendered /Users/kito/.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.7ms)
1162
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:00:22 -0300
1163
+ Processing by MountainView::StyleguideController#show as HTML
1164
+ Parameters: {"id"=>"header"}
1165
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.8ms)
1166
+ Completed 200 OK in 7ms (Views: 7.0ms)
1600
1167
 
1601
1168
 
1602
- Started GET "/" for 127.0.0.1 at 2015-03-20 12:14:06 -0400
1603
- Processing by HomeController#index as HTML
1604
- Rendered app/components/header/_header.html.erb (0.1ms)
1605
- Rendered home/index.html.erb within layouts/application (0.7ms)
1606
- Completed 500 Internal Server Error in 6ms
1169
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:00:22 -0300
1607
1170
 
1608
- ActionView::Template::Error (require_tree argument must be a relative path
1609
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:2)):
1610
- 2: <html>
1611
- 3: <head>
1612
- 4: <title>Dummy</title>
1613
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1614
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1615
- 7: <%= csrf_meta_tags %>
1616
- 8: </head>
1617
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1618
1171
 
1172
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:00:22 -0300
1619
1173
 
1620
- Rendered /Users/kito/.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)
1621
- Rendered /Users/kito/.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)
1622
- Rendered /Users/kito/.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)
1623
1174
 
1175
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:00:33 -0300
1176
+ Processing by MountainView::StyleguideController#show as HTML
1177
+ Parameters: {"id"=>"header"}
1178
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.1ms)
1179
+ Completed 200 OK in 11ms (Views: 10.4ms)
1624
1180
 
1625
- Started GET "/" for 127.0.0.1 at 2015-03-20 12:54:33 -0400
1626
- Processing by HomeController#index as HTML
1627
- Rendered app/components/header/_header.html.erb (0.1ms)
1628
- Rendered home/index.html.erb within layouts/application (2.4ms)
1629
- Completed 500 Internal Server Error in 17ms
1630
1181
 
1631
- ActionView::Template::Error (couldn't find file '<%=component%>/<%=component%>'
1632
- (in /Users/kito/dev/mountain_view/app/assets/stylesheets/mountain_view.css.erb:4)):
1633
- 2: <html>
1634
- 3: <head>
1635
- 4: <title>Dummy</title>
1636
- 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1637
- 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1638
- 7: <%= csrf_meta_tags %>
1639
- 8: </head>
1640
- app/views/layouts/application.html.erb:5:in `_app_views_layouts_application_html_erb__3050144920259907435_70345910979120'
1182
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:00:33 -0300
1641
1183
 
1642
1184
 
1643
- Rendered /Users/kito/.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)
1644
- Rendered /Users/kito/.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.5ms)
1645
- Rendered /Users/kito/.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 (12.4ms)
1185
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:00:33 -0300
1646
1186
 
1647
1187
 
1648
- Started GET "/" for 127.0.0.1 at 2015-03-20 13:20:13 -0400
1649
- Processing by HomeController#index as HTML
1650
- Rendered app/components/header/_header.html.erb (0.4ms)
1651
- Rendered home/index.html.erb within layouts/application (3.9ms)
1652
- Completed 200 OK in 60ms (Views: 59.9ms | ActiveRecord: 0.0ms)
1188
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:00:36 -0300
1189
+ Processing by MountainView::StyleguideController#show as HTML
1190
+ Parameters: {"id"=>"header"}
1191
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1192
+ Completed 200 OK in 3ms (Views: 2.9ms)
1653
1193
 
1654
1194
 
1655
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:13 -0400
1195
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:00:36 -0300
1656
1196
 
1657
1197
 
1658
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:13 -0400
1198
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:00:36 -0300
1659
1199
 
1660
1200
 
1661
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 13:20:13 -0400
1201
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:00:36 -0300
1202
+ Processing by MountainView::StyleguideController#show as HTML
1203
+ Parameters: {"id"=>"header"}
1204
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1205
+ Completed 200 OK in 3ms (Views: 3.1ms)
1662
1206
 
1663
1207
 
1664
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:13 -0400
1208
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:00:37 -0300
1665
1209
 
1666
1210
 
1667
- Started GET "/" for 127.0.0.1 at 2015-03-20 13:20:14 -0400
1668
- Processing by HomeController#index as HTML
1669
- Rendered app/components/header/_header.html.erb (0.1ms)
1670
- Rendered home/index.html.erb within layouts/application (0.9ms)
1671
- Completed 200 OK in 23ms (Views: 23.0ms | ActiveRecord: 0.0ms)
1211
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:00:37 -0300
1672
1212
 
1673
1213
 
1674
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:14 -0400
1214
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:02:40 -0300
1215
+ Processing by MountainView::StyleguideController#show as HTML
1216
+ Parameters: {"id"=>"header"}
1217
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
1218
+ Completed 200 OK in 5ms (Views: 4.5ms)
1675
1219
 
1676
1220
 
1677
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:14 -0400
1221
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:02:40 -0300
1678
1222
 
1679
1223
 
1680
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:14 -0400
1224
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:02:40 -0300
1681
1225
 
1682
1226
 
1683
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 13:20:14 -0400
1227
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:03:16 -0300
1228
+ Processing by MountainView::StyleguideController#show as HTML
1229
+ Parameters: {"id"=>"header"}
1230
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1231
+ Completed 200 OK in 24ms (Views: 23.3ms)
1684
1232
 
1685
1233
 
1686
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:39 -0400
1234
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:16 -0300
1687
1235
 
1688
1236
 
1689
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 13:20:41 -0400
1237
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:03:16 -0300
1690
1238
 
1691
1239
 
1692
- Started GET "/" for 127.0.0.1 at 2015-03-20 15:00:46 -0400
1693
- Processing by HomeController#index as HTML
1694
- Rendered app/components/header/_header.html.erb (0.3ms)
1695
- Rendered home/index.html.erb within layouts/application (3.6ms)
1696
- Completed 200 OK in 66ms (Views: 65.7ms | ActiveRecord: 0.0ms)
1240
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:03:17 -0300
1241
+ Processing by MountainView::StyleguideController#show as HTML
1242
+ Parameters: {"id"=>"header"}
1243
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1244
+ Completed 200 OK in 5ms (Views: 4.4ms)
1697
1245
 
1698
1246
 
1699
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 15:00:46 -0400
1247
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:18 -0300
1700
1248
 
1701
1249
 
1702
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 15:00:46 -0400
1250
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:03:18 -0300
1703
1251
 
1704
1252
 
1705
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 15:00:46 -0400
1253
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:03:35 -0300
1254
+ Processing by MountainView::StyleguideController#show as HTML
1255
+ Parameters: {"id"=>"header"}
1256
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.0ms)
1257
+ Completed 200 OK in 36ms (Views: 35.3ms)
1706
1258
 
1707
1259
 
1708
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2015-03-20 15:00:46 -0400
1260
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:35 -0300
1709
1261
 
1710
1262
 
1711
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 15:00:49 -0400
1263
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:03:35 -0300
1712
1264
 
1713
1265
 
1714
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 15:00:51 -0400
1266
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:03:36 -0300
1267
+ Processing by MountainView::StyleguideController#show as HTML
1268
+ Parameters: {"id"=>"header"}
1269
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1270
+ Completed 200 OK in 5ms (Views: 5.0ms)
1715
1271
 
1716
1272
 
1717
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2015-03-20 15:00:54 -0400
1273
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:36 -0300
1718
1274
 
1719
1275
 
1720
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2015-03-20 15:48:30 -0400
1276
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:03:36 -0300
1721
1277
 
1722
1278
 
1723
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 15:48:37 -0400
1279
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:03:42 -0300
1280
+ Processing by MountainView::StyleguideController#show as HTML
1281
+ Parameters: {"id"=>"header"}
1282
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1283
+ Completed 200 OK in 3ms (Views: 2.8ms)
1724
1284
 
1725
1285
 
1726
- Started GET "/assets/header/header.css?body=1" for 127.0.0.1 at 2015-03-20 15:48:40 -0400
1286
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:03:42 -0300
1727
1287
 
1728
1288
 
1729
- Started GET "/assets/mountain_view.css?body=1" for 127.0.0.1 at 2015-03-20 15:48:49 -0400
1289
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:42 -0300
1730
1290
 
1731
1291
 
1732
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2015-03-20 15:48:51 -0400
1292
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:03:45 -0300
1733
1293
 
1734
1294
 
1735
- Started GET "/assets/mountain_view.js" for 127.0.0.1 at 2015-03-20 15:49:07 -0400
1295
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:06:38 -0300
1296
+ Processing by MountainView::StyleguideController#show as HTML
1297
+ Parameters: {"id"=>"header"}
1298
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1299
+ Completed 200 OK in 3ms (Views: 3.1ms)
1736
1300
 
1737
1301
 
1738
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2015-03-20 15:49:09 -0400
1302
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:06:38 -0300
1739
1303
 
1740
1304
 
1741
- Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2015-03-20 15:49:10 -0400
1305
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:06:38 -0300
1742
1306
 
1743
1307
 
1744
- Started GET "/" for ::1 at 2015-04-15 12:25:37 -0400
1745
- Processing by HomeController#index as HTML
1746
- Rendered app/components/header/_header.html.erb (0.6ms)
1747
- Rendered home/index.html.erb within layouts/application (9.1ms)
1748
- Completed 200 OK in 317ms (Views: 316.7ms)
1308
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:06:57 -0300
1309
+ Processing by MountainView::StyleguideController#show as HTML
1310
+ Parameters: {"id"=>"header"}
1311
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.6ms)
1312
+ Completed 200 OK in 42ms (Views: 42.1ms)
1749
1313
 
1750
1314
 
1751
- Started GET "/assets/application.js" for ::1 at 2015-04-15 12:25:38 -0400
1315
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:06:58 -0300
1752
1316
 
1753
1317
 
1754
- Started GET "/assets/application.css" for ::1 at 2015-04-15 12:25:38 -0400
1318
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:06:58 -0300
1755
1319
 
1756
1320
 
1757
- Started GET "/mountain_view" for ::1 at 2015-04-15 12:25:43 -0400
1758
- Processing by MountainView::StyleguideController#index as HTML
1759
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.5ms)
1760
- Completed 200 OK in 69ms (Views: 68.5ms)
1321
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:07:07 -0300
1322
+ Processing by MountainView::StyleguideController#show as HTML
1323
+ Parameters: {"id"=>"header"}
1324
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1325
+ Completed 200 OK in 24ms (Views: 24.0ms)
1761
1326
 
1762
1327
 
1763
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-15 12:25:43 -0400
1328
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:07:07 -0300
1764
1329
 
1765
1330
 
1766
- Started GET "/assets/mountain_view/styleguide.js" for ::1 at 2015-04-15 12:25:43 -0400
1331
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:07:07 -0300
1767
1332
 
1768
1333
 
1769
- Started GET "/" for ::1 at 2015-04-22 10:09:10 -0400
1770
- Processing by HomeController#index as HTML
1771
- Rendered app/components/header/_header.html.erb (0.4ms)
1772
- Rendered home/index.html.erb within layouts/application (3.8ms)
1773
- Completed 200 OK in 179ms (Views: 179.1ms)
1334
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:07:11 -0300
1335
+ Processing by MountainView::StyleguideController#show as HTML
1336
+ Parameters: {"id"=>"header"}
1337
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1338
+ Completed 200 OK in 27ms (Views: 26.4ms)
1774
1339
 
1775
1340
 
1776
- Started GET "/assets/application.js" for ::1 at 2015-04-22 10:09:11 -0400
1341
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:07:11 -0300
1777
1342
 
1778
1343
 
1779
- Started GET "/assets/application.css" for ::1 at 2015-04-22 10:09:11 -0400
1344
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:07:11 -0300
1780
1345
 
1781
1346
 
1782
- Started GET "/mountain_view/styleguide/header" for ::1 at 2015-04-22 10:09:12 -0400
1347
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:07:17 -0300
1783
1348
  Processing by MountainView::StyleguideController#show as HTML
1784
1349
  Parameters: {"id"=>"header"}
1785
- Rendered app/components/header/_header.html.erb (0.1ms)
1786
- Rendered app/components/header/_header.html.erb (0.0ms)
1787
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.9ms)
1788
- Completed 200 OK in 68ms (Views: 67.8ms)
1350
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1351
+ Completed 200 OK in 24ms (Views: 23.8ms)
1352
+
1353
+
1354
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:07:17 -0300
1355
+
1789
1356
 
1357
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:07:17 -0300
1790
1358
 
1791
- Started GET "/assets/mountain_view/styleguide.js" for ::1 at 2015-04-22 10:09:12 -0400
1792
1359
 
1360
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:07:24 -0300
1361
+ Processing by MountainView::StyleguideController#show as HTML
1362
+ Parameters: {"id"=>"header"}
1363
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1364
+ Completed 200 OK in 20ms (Views: 19.3ms)
1793
1365
 
1794
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:09:12 -0400
1795
1366
 
1367
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:07:24 -0300
1796
1368
 
1797
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:09:19 -0400
1798
1369
 
1370
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:07:24 -0300
1799
1371
 
1800
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:09:59 -0400
1801
1372
 
1373
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:07:28 -0300
1802
1374
 
1803
- Started GET "/mountain_view/styleguide/header" for ::1 at 2015-04-22 10:10:32 -0400
1375
+
1376
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:09:31 -0300
1804
1377
  Processing by MountainView::StyleguideController#show as HTML
1805
1378
  Parameters: {"id"=>"header"}
1806
- Rendered app/components/header/_header.html.erb (0.1ms)
1807
- Rendered app/components/header/_header.html.erb (0.1ms)
1808
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.2ms)
1809
- Completed 200 OK in 26ms (Views: 25.9ms)
1379
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1380
+ Completed 200 OK in 22ms (Views: 21.4ms)
1810
1381
 
1811
1382
 
1812
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:10:32 -0400
1383
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:09:31 -0300
1813
1384
 
1814
1385
 
1815
- Started GET "/assets/mountain_view/styleguide.js" for ::1 at 2015-04-22 10:10:32 -0400
1386
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:09:31 -0300
1816
1387
 
1817
1388
 
1818
- Started GET "/mountain_view/styleguide/header" for ::1 at 2015-04-22 10:10:33 -0400
1389
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:09:41 -0300
1819
1390
  Processing by MountainView::StyleguideController#show as HTML
1820
1391
  Parameters: {"id"=>"header"}
1821
- Rendered app/components/header/_header.html.erb (0.0ms)
1822
- Rendered app/components/header/_header.html.erb (0.0ms)
1823
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.3ms)
1824
- Completed 200 OK in 12ms (Views: 12.1ms)
1392
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1393
+ Completed 200 OK in 15ms (Views: 14.8ms)
1825
1394
 
1826
1395
 
1827
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:10:33 -0400
1396
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:09:41 -0300
1828
1397
 
1829
1398
 
1830
- Started GET "/assets/mountain_view/styleguide.js" for ::1 at 2015-04-22 10:10:33 -0400
1399
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:09:41 -0300
1831
1400
 
1832
1401
 
1833
- Started GET "/mountain_view/styleguide/header" for ::1 at 2015-04-22 10:11:30 -0400
1402
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:09:52 -0300
1834
1403
  Processing by MountainView::StyleguideController#show as HTML
1835
1404
  Parameters: {"id"=>"header"}
1405
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.1ms)
1406
+ Completed 200 OK in 8ms (Views: 7.5ms)
1407
+
1408
+
1409
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:09:52 -0300
1410
+
1411
+
1412
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:09:52 -0300
1413
+
1414
+
1415
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:10:01 -0300
1416
+ Processing by MountainView::StyleguideController#show as HTML
1417
+ Parameters: {"id"=>"header"}
1418
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1419
+ Completed 200 OK in 14ms (Views: 13.6ms)
1420
+
1421
+
1422
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:10:01 -0300
1423
+
1424
+
1425
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:10:01 -0300
1426
+
1427
+
1428
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:10:26 -0300
1429
+ Processing by MountainView::StyleguideController#show as HTML
1430
+ Parameters: {"id"=>"header"}
1431
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1432
+ Completed 200 OK in 19ms (Views: 18.8ms)
1433
+
1434
+
1435
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:10:26 -0300
1436
+
1437
+
1438
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:10:26 -0300
1439
+
1440
+
1441
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:10:33 -0300
1442
+ Processing by MountainView::StyleguideController#show as HTML
1443
+ Parameters: {"id"=>"header"}
1444
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1445
+ Completed 200 OK in 14ms (Views: 14.1ms)
1446
+
1447
+
1448
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:10:33 -0300
1449
+
1450
+
1451
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:10:33 -0300
1452
+
1453
+
1454
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:10:39 -0300
1455
+ Processing by MountainView::StyleguideController#show as HTML
1456
+ Parameters: {"id"=>"header"}
1457
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1458
+ Completed 200 OK in 18ms (Views: 18.0ms)
1459
+
1460
+
1461
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:10:40 -0300
1462
+
1463
+
1464
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:10:40 -0300
1465
+
1466
+
1467
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:10:53 -0300
1468
+ Processing by MountainView::StyleguideController#show as HTML
1469
+ Parameters: {"id"=>"header"}
1470
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1471
+ Completed 200 OK in 20ms (Views: 19.8ms)
1472
+
1473
+
1474
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:10:53 -0300
1475
+
1476
+
1477
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:10:53 -0300
1478
+
1479
+
1480
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:11:52 -0300
1481
+ Processing by MountainView::StyleguideController#show as HTML
1482
+ Parameters: {"id"=>"header"}
1483
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1484
+ Completed 200 OK in 4ms (Views: 3.4ms)
1485
+
1486
+
1487
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:11:52 -0300
1488
+
1489
+
1490
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:11:52 -0300
1491
+
1492
+
1493
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:12:36 -0300
1494
+ Processing by MountainView::StyleguideController#show as HTML
1495
+ Parameters: {"id"=>"header"}
1496
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1497
+ Completed 200 OK in 5ms (Views: 5.0ms)
1498
+
1499
+
1500
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:12:36 -0300
1501
+
1502
+
1503
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:12:36 -0300
1504
+
1505
+
1506
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:28 -0300
1507
+ Processing by MountainView::StyleguideController#show as HTML
1508
+ Parameters: {"id"=>"header"}
1509
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1510
+ Completed 200 OK in 3ms (Views: 2.9ms)
1511
+
1512
+
1513
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:13:28 -0300
1514
+
1515
+
1516
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:13:28 -0300
1517
+
1518
+
1519
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:30 -0300
1520
+ Processing by MountainView::StyleguideController#show as HTML
1521
+ Parameters: {"id"=>"header"}
1522
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1523
+ Completed 200 OK in 4ms (Views: 4.1ms)
1524
+
1525
+
1526
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:13:30 -0300
1527
+
1528
+
1529
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:13:30 -0300
1530
+
1531
+
1532
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1533
+ Processing by MountainView::StyleguideController#show as HTML
1534
+ Parameters: {"id"=>"header"}
1535
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1536
+ Completed 200 OK in 3ms (Views: 2.7ms)
1537
+
1538
+
1539
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1540
+
1541
+
1542
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1543
+
1544
+
1545
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1546
+ Processing by MountainView::StyleguideController#show as HTML
1547
+ Parameters: {"id"=>"header"}
1548
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1549
+ Completed 200 OK in 5ms (Views: 4.7ms)
1550
+
1551
+
1552
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1553
+
1554
+
1555
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1556
+
1557
+
1558
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1559
+ Processing by MountainView::StyleguideController#show as HTML
1560
+ Parameters: {"id"=>"header"}
1561
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1562
+ Completed 200 OK in 3ms (Views: 2.9ms)
1563
+
1564
+
1565
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1566
+
1567
+
1568
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:13:31 -0300
1569
+
1570
+
1571
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:13:57 -0300
1572
+ Processing by MountainView::StyleguideController#show as HTML
1573
+ Parameters: {"id"=>"header"}
1574
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (10.7ms)
1575
+ Completed 500 Internal Server Error in 12ms
1576
+
1577
+
1578
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:14:08 -0300
1579
+ Processing by MountainView::StyleguideController#show as HTML
1580
+ Parameters: {"id"=>"header"}
1581
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.5ms)
1582
+ Completed 200 OK in 27ms (Views: 27.1ms)
1583
+
1584
+
1585
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:14:09 -0300
1586
+
1587
+
1588
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:14:09 -0300
1589
+
1590
+
1591
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:14:32 -0300
1592
+ Processing by MountainView::StyleguideController#show as HTML
1593
+ Parameters: {"id"=>"header"}
1594
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.8ms)
1595
+ Completed 200 OK in 4ms (Views: 3.8ms)
1596
+
1597
+
1598
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:14:32 -0300
1599
+
1600
+
1601
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:14:32 -0300
1602
+
1603
+
1604
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1605
+ Processing by MountainView::StyleguideController#show as HTML
1606
+ Parameters: {"id"=>"header"}
1607
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1608
+ Completed 200 OK in 3ms (Views: 2.9ms)
1609
+
1610
+
1611
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1612
+
1613
+
1614
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1615
+
1616
+
1617
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1618
+ Processing by MountainView::StyleguideController#show as HTML
1619
+ Parameters: {"id"=>"header"}
1620
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.2ms)
1621
+ Completed 200 OK in 3ms (Views: 3.2ms)
1622
+
1623
+
1624
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1625
+
1626
+
1627
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:14:33 -0300
1628
+
1629
+
1630
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:15:16 -0300
1631
+ Processing by MountainView::StyleguideController#show as HTML
1632
+ Parameters: {"id"=>"header"}
1633
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
1634
+ Completed 200 OK in 21ms (Views: 20.5ms)
1635
+
1636
+
1637
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:15:16 -0300
1638
+
1639
+
1640
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:15:16 -0300
1641
+
1642
+
1643
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:20:30 -0300
1644
+ Processing by MountainView::StyleguideController#show as HTML
1645
+ Parameters: {"id"=>"header"}
1646
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
1647
+ Completed 200 OK in 5ms (Views: 4.9ms)
1648
+
1649
+
1650
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:20:30 -0300
1651
+
1652
+
1653
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:20:30 -0300
1654
+
1655
+
1656
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:20:54 -0300
1657
+ Processing by MountainView::StyleguideController#show as HTML
1658
+ Parameters: {"id"=>"header"}
1659
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.8ms)
1660
+ Completed 200 OK in 4ms (Views: 3.7ms)
1661
+
1662
+
1663
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:20:54 -0300
1664
+
1665
+
1666
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:20:54 -0300
1667
+
1668
+
1669
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:20:57 -0300
1670
+ Processing by MountainView::StyleguideController#show as HTML
1671
+ Parameters: {"id"=>"header"}
1672
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1673
+ Completed 200 OK in 4ms (Views: 3.3ms)
1674
+
1675
+
1676
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:20:57 -0300
1677
+
1678
+
1679
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:20:57 -0300
1680
+
1681
+
1682
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:20:57 -0300
1683
+ Processing by MountainView::StyleguideController#show as HTML
1684
+ Parameters: {"id"=>"header"}
1685
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
1686
+ Completed 200 OK in 3ms (Views: 3.0ms)
1687
+
1688
+
1689
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:20:58 -0300
1690
+
1691
+
1692
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:20:58 -0300
1693
+
1694
+
1695
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:21:05 -0300
1696
+ Processing by MountainView::StyleguideController#show as HTML
1697
+ Parameters: {"id"=>"header"}
1698
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.6ms)
1699
+ Completed 200 OK in 18ms (Views: 18.1ms)
1700
+
1701
+
1702
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:21:05 -0300
1703
+
1704
+
1705
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:21:05 -0300
1706
+
1707
+
1708
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:21:53 -0300
1709
+ Processing by MountainView::StyleguideController#show as HTML
1710
+ Parameters: {"id"=>"header"}
1711
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.5ms)
1712
+ Completed 200 OK in 20ms (Views: 19.6ms)
1713
+
1714
+
1715
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:21:54 -0300
1716
+
1717
+
1718
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:21:54 -0300
1719
+
1720
+
1721
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:23:03 -0300
1722
+ Processing by MountainView::StyleguideController#show as HTML
1723
+ Parameters: {"id"=>"header"}
1724
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (6.9ms)
1725
+ Completed 200 OK in 29ms (Views: 28.2ms)
1726
+
1727
+
1728
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:23:03 -0300
1729
+
1730
+
1731
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:23:03 -0300
1732
+
1733
+
1734
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:23:45 -0300
1735
+ Processing by MountainView::StyleguideController#show as HTML
1736
+ Parameters: {"id"=>"header"}
1737
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
1738
+ Completed 200 OK in 4ms (Views: 3.9ms)
1739
+
1740
+
1741
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:23:45 -0300
1742
+
1743
+
1744
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:23:45 -0300
1745
+
1746
+
1747
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:24:18 -0300
1748
+ Processing by MountainView::StyleguideController#show as HTML
1749
+ Parameters: {"id"=>"header"}
1750
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.1ms)
1751
+ Completed 200 OK in 6ms (Views: 6.0ms)
1752
+
1753
+
1754
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:24:18 -0300
1755
+
1756
+
1757
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:24:18 -0300
1758
+
1759
+
1760
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:24:38 -0300
1761
+ Processing by MountainView::StyleguideController#show as HTML
1762
+ Parameters: {"id"=>"header"}
1763
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.6ms)
1764
+ Completed 200 OK in 5ms (Views: 5.1ms)
1765
+
1766
+
1767
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:24:38 -0300
1768
+
1769
+
1770
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:24:38 -0300
1771
+
1772
+
1773
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 11:24:40 -0300
1774
+ Processing by MountainView::StyleguideController#show as HTML
1775
+ Parameters: {"id"=>"card"}
1776
+ Rendered app/components/card/_card.html.erb (2.1ms)
1777
+ Rendered app/components/card/_card.html.erb (0.1ms)
1778
+ Rendered app/components/card/_card.html.erb (0.0ms)
1779
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (19.3ms)
1780
+ Completed 200 OK in 23ms (Views: 22.4ms)
1781
+
1782
+
1783
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:24:40 -0300
1784
+
1785
+
1786
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:24:40 -0300
1787
+
1788
+
1789
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:24:55 -0300
1790
+ Processing by MountainView::StyleguideController#show as HTML
1791
+ Parameters: {"id"=>"header"}
1792
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.2ms)
1793
+ Completed 200 OK in 25ms (Views: 24.7ms)
1794
+
1795
+
1796
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:24:55 -0300
1797
+
1798
+
1799
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:24:55 -0300
1800
+
1801
+
1802
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:24:59 -0300
1803
+ Processing by MountainView::StyleguideController#show as HTML
1804
+ Parameters: {"id"=>"header"}
1805
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
1806
+ Completed 200 OK in 27ms (Views: 27.0ms)
1807
+
1808
+
1809
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:24:59 -0300
1810
+
1811
+
1812
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:24:59 -0300
1813
+
1814
+
1815
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:29:50 -0300
1816
+ Processing by MountainView::StyleguideController#show as HTML
1817
+ Parameters: {"id"=>"header"}
1818
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.7ms)
1819
+ Completed 200 OK in 9ms (Views: 8.7ms)
1820
+
1821
+
1822
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:29:50 -0300
1823
+
1824
+
1825
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:29:50 -0300
1826
+
1827
+
1828
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:34:12 -0300
1829
+
1830
+
1831
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:36:43 -0300
1832
+ Processing by MountainView::StyleguideController#show as HTML
1833
+ Parameters: {"id"=>"header"}
1834
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.5ms)
1835
+ Completed 200 OK in 30ms (Views: 30.2ms)
1836
+
1837
+
1838
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:36:43 -0300
1839
+
1840
+
1841
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:36:43 -0300
1842
+
1843
+
1844
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:39:08 -0300
1845
+ Processing by MountainView::StyleguideController#show as HTML
1846
+ Parameters: {"id"=>"header"}
1847
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1848
+ Completed 200 OK in 19ms (Views: 19.1ms)
1849
+
1850
+
1851
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:39:08 -0300
1852
+
1853
+
1854
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:39:08 -0300
1855
+
1856
+
1857
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:39:14 -0300
1858
+ Processing by MountainView::StyleguideController#show as HTML
1859
+ Parameters: {"id"=>"header"}
1860
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1861
+ Completed 200 OK in 20ms (Views: 20.2ms)
1862
+
1863
+
1864
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:39:14 -0300
1865
+
1866
+
1867
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:39:14 -0300
1868
+
1869
+
1870
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:39:36 -0300
1871
+ Processing by MountainView::StyleguideController#show as HTML
1872
+ Parameters: {"id"=>"header"}
1873
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1874
+ Completed 200 OK in 19ms (Views: 18.4ms)
1875
+
1876
+
1877
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:39:36 -0300
1878
+
1879
+
1880
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:39:36 -0300
1881
+
1882
+
1883
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:39:49 -0300
1884
+ Processing by MountainView::StyleguideController#show as HTML
1885
+ Parameters: {"id"=>"header"}
1886
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1887
+ Completed 200 OK in 16ms (Views: 15.5ms)
1888
+
1889
+
1890
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:39:49 -0300
1891
+
1892
+
1893
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:39:49 -0300
1894
+
1895
+
1896
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:40:38 -0300
1897
+ Processing by MountainView::StyleguideController#show as HTML
1898
+ Parameters: {"id"=>"header"}
1899
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
1900
+ Completed 200 OK in 5ms (Views: 5.3ms)
1901
+
1902
+
1903
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:40:38 -0300
1904
+
1905
+
1906
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:40:38 -0300
1907
+
1908
+
1909
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:41:25 -0300
1910
+
1911
+
1912
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:44:04 -0300
1913
+ Processing by MountainView::StyleguideController#show as HTML
1914
+ Parameters: {"id"=>"header"}
1915
+ Rendered app/components/header/_header.html.erb (0.5ms)
1836
1916
  Rendered app/components/header/_header.html.erb (0.1ms)
1837
- Rendered app/components/header/_header.html.erb (0.0ms)
1838
- Rendered /Users/kito/dev/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.9ms)
1839
- Completed 200 OK in 28ms (Views: 27.4ms)
1917
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.9ms)
1918
+ Completed 200 OK in 24ms (Views: 23.3ms)
1919
+
1920
+
1921
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:44:04 -0300
1922
+
1923
+
1924
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:44:04 -0300
1925
+
1926
+
1927
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 11:44:12 -0300
1928
+ Processing by MountainView::StyleguideController#show as HTML
1929
+ Parameters: {"id"=>"header"}
1930
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
1931
+ Completed 200 OK in 4ms (Views: 4.2ms)
1932
+
1933
+
1934
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 11:44:13 -0300
1935
+
1936
+
1937
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 11:44:13 -0300
1938
+
1939
+
1940
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-04-24 21:12:36 -0300
1941
+ Processing by MountainView::StyleguideController#index as HTML
1942
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.0ms)
1943
+ Completed 200 OK in 48ms (Views: 47.4ms)
1944
+
1945
+
1946
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:36 -0300
1947
+
1948
+
1949
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:36 -0300
1950
+
1951
+
1952
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:12:39 -0300
1953
+ Processing by MountainView::StyleguideController#show as HTML
1954
+ Parameters: {"id"=>"breadcrumbs"}
1955
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.2ms)
1956
+ Completed 200 OK in 7ms (Views: 6.3ms)
1957
+
1958
+
1959
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:39 -0300
1960
+
1961
+
1962
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:39 -0300
1963
+
1964
+
1965
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 21:12:42 -0300
1966
+ Processing by MountainView::StyleguideController#show as HTML
1967
+ Parameters: {"id"=>"card"}
1968
+ Rendered app/components/card/_card.html.erb (0.9ms)
1969
+ Rendered app/components/card/_card.html.erb (0.1ms)
1970
+ Rendered app/components/card/_card.html.erb (0.1ms)
1971
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (16.1ms)
1972
+ Completed 200 OK in 19ms (Views: 18.6ms)
1973
+
1974
+
1975
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:42 -0300
1976
+
1977
+
1978
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:42 -0300
1979
+
1980
+
1981
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 21:12:43 -0300
1982
+ Processing by MountainView::StyleguideController#show as HTML
1983
+ Parameters: {"id"=>"header"}
1984
+ Rendered app/components/header/_header.html.erb (0.7ms)
1985
+ Rendered app/components/header/_header.html.erb (0.1ms)
1986
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.5ms)
1987
+ Completed 200 OK in 8ms (Views: 7.9ms)
1988
+
1989
+
1990
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:43 -0300
1991
+
1992
+
1993
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:43 -0300
1994
+
1995
+
1996
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 21:12:44 -0300
1997
+ Processing by MountainView::StyleguideController#show as HTML
1998
+ Parameters: {"id"=>"card"}
1999
+ Rendered app/components/card/_card.html.erb (0.1ms)
2000
+ Rendered app/components/card/_card.html.erb (0.1ms)
2001
+ Rendered app/components/card/_card.html.erb (0.1ms)
2002
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.5ms)
2003
+ Completed 200 OK in 9ms (Views: 8.6ms)
2004
+
2005
+
2006
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:44 -0300
2007
+
2008
+
2009
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:44 -0300
2010
+
2011
+
2012
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:12:45 -0300
2013
+ Processing by MountainView::StyleguideController#show as HTML
2014
+ Parameters: {"id"=>"breadcrumbs"}
2015
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.9ms)
2016
+ Completed 200 OK in 7ms (Views: 6.5ms)
2017
+
2018
+
2019
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:45 -0300
2020
+
2021
+
2022
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:45 -0300
2023
+
2024
+
2025
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 21:12:51 -0300
2026
+ Processing by MountainView::StyleguideController#show as HTML
2027
+ Parameters: {"id"=>"card"}
2028
+ Rendered app/components/card/_card.html.erb (0.1ms)
2029
+ Rendered app/components/card/_card.html.erb (0.2ms)
2030
+ Rendered app/components/card/_card.html.erb (0.2ms)
2031
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (6.4ms)
2032
+ Completed 200 OK in 11ms (Views: 10.4ms)
2033
+
2034
+
2035
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:51 -0300
2036
+
2037
+
2038
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:51 -0300
2039
+
2040
+
2041
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:12:52 -0300
2042
+ Processing by MountainView::StyleguideController#show as HTML
2043
+ Parameters: {"id"=>"breadcrumbs"}
2044
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
2045
+ Completed 200 OK in 4ms (Views: 3.4ms)
2046
+
2047
+
2048
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:52 -0300
2049
+
2050
+
2051
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:52 -0300
2052
+
2053
+
2054
+ Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-04-24 21:12:53 -0300
2055
+ Processing by MountainView::StyleguideController#show as HTML
2056
+ Parameters: {"id"=>"header"}
2057
+ Rendered app/components/header/_header.html.erb (0.1ms)
2058
+ Rendered app/components/header/_header.html.erb (0.1ms)
2059
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.3ms)
2060
+ Completed 200 OK in 6ms (Views: 5.9ms)
2061
+
2062
+
2063
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:53 -0300
2064
+
2065
+
2066
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:53 -0300
2067
+
2068
+
2069
+ Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2070
+ Processing by MountainView::StyleguideController#show as HTML
2071
+ Parameters: {"id"=>"card"}
2072
+ Rendered app/components/card/_card.html.erb (0.1ms)
2073
+ Rendered app/components/card/_card.html.erb (0.2ms)
2074
+ Rendered app/components/card/_card.html.erb (0.1ms)
2075
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (5.7ms)
2076
+ Completed 200 OK in 8ms (Views: 8.1ms)
2077
+
2078
+
2079
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2080
+
2081
+
2082
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2083
+
2084
+
2085
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2086
+ Processing by MountainView::StyleguideController#show as HTML
2087
+ Parameters: {"id"=>"breadcrumbs"}
2088
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.5ms)
2089
+ Completed 200 OK in 4ms (Views: 3.7ms)
2090
+
2091
+
2092
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2093
+
2094
+
2095
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:12:54 -0300
2096
+
2097
+
2098
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:13:48 -0300
2099
+ Processing by MountainView::StyleguideController#show as HTML
2100
+ Parameters: {"id"=>"breadcrumbs"}
2101
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.5ms)
2102
+ Completed 200 OK in 31ms (Views: 30.6ms)
2103
+
2104
+
2105
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:13:48 -0300
2106
+
2107
+
2108
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:13:48 -0300
2109
+
2110
+
2111
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:13:48 -0300
2112
+ Processing by MountainView::StyleguideController#show as HTML
2113
+ Parameters: {"id"=>"breadcrumbs"}
2114
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
2115
+ Completed 200 OK in 3ms (Views: 2.9ms)
2116
+
2117
+
2118
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2119
+
2120
+
2121
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2122
+
2123
+
2124
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2125
+ Processing by MountainView::StyleguideController#show as HTML
2126
+ Parameters: {"id"=>"breadcrumbs"}
2127
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
2128
+ Completed 200 OK in 4ms (Views: 3.4ms)
2129
+
2130
+
2131
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2132
+
2133
+
2134
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2135
+
2136
+
2137
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:13:49 -0300
2138
+ Processing by MountainView::StyleguideController#show as HTML
2139
+ Parameters: {"id"=>"breadcrumbs"}
2140
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.4ms)
2141
+ Completed 200 OK in 3ms (Views: 2.5ms)
2142
+
2143
+
2144
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:13:50 -0300
2145
+
2146
+
2147
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:13:50 -0300
2148
+
2149
+
2150
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:13:59 -0300
2151
+ Processing by MountainView::StyleguideController#show as HTML
2152
+ Parameters: {"id"=>"breadcrumbs"}
2153
+ Rendered app/components/breadcrumbs/_breadcrumbs.html.erb (0.3ms)
2154
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.7ms)
2155
+ Completed 200 OK in 8ms (Views: 7.7ms)
2156
+
2157
+
2158
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:13:59 -0300
2159
+
2160
+
2161
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:13:59 -0300
2162
+
2163
+
2164
+ Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-04-24 21:27:56 -0300
2165
+ Processing by MountainView::StyleguideController#index as HTML
2166
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.6ms)
2167
+ Completed 200 OK in 60ms (Views: 59.3ms)
2168
+
2169
+
2170
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:27:56 -0300
2171
+
2172
+
2173
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:27:56 -0300
2174
+
2175
+
2176
+ Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-04-24 21:27:58 -0300
2177
+ Processing by MountainView::StyleguideController#show as HTML
2178
+ Parameters: {"id"=>"breadcrumbs"}
2179
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.1ms)
2180
+ Completed 200 OK in 12ms (Views: 12.2ms)
2181
+
2182
+
2183
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:27:58 -0300
2184
+
2185
+
2186
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:27:58 -0300
2187
+
2188
+
2189
+ Started GET "/mountain_view/styleguide/pepe" for 127.0.0.1 at 2015-04-24 21:33:07 -0300
2190
+ Processing by MountainView::StyleguideController#show as HTML
2191
+ Parameters: {"id"=>"pepe"}
2192
+ Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (0.3ms)
2193
+ Completed 200 OK in 4ms (Views: 3.5ms)
1840
2194
 
1841
2195
 
1842
- Started GET "/assets/mountain_view/styleguide.css" for ::1 at 2015-04-22 10:11:30 -0400
2196
+ Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-04-24 21:33:07 -0300
1843
2197
 
1844
2198
 
1845
- Started GET "/assets/mountain_view/styleguide.js" for ::1 at 2015-04-22 10:11:30 -0400
2199
+ Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-04-24 21:33:07 -0300