mountain_view 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +21 -2
- data/app/helpers/mountain_view/application_helper.rb +27 -0
- data/lib/mountain_view/engine.rb +1 -0
- data/lib/mountain_view/version.rb +1 -1
- data/test/dummy/app/components/header/_header.html.erb +1 -1
- data/test/dummy/app/components/header/header.css +8 -0
- data/test/dummy/app/components/header/header.yml +2 -0
- data/test/dummy/app/views/home/index.html.erb +1 -1
- data/test/dummy/config/routes.rb +1 -1
- data/test/dummy/log/development.log +384 -0
- data/test/dummy/log/test.log +1161 -0
- data/test/helpers/mountain_view/component_helper_test.rb +2 -1
- data/test/mountain_view/component_test.rb +1 -0
- data/test/mountain_view_test.rb +7 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0305d3c9a0ff118d9cc7aa66edb9d465a0fddb40
|
|
4
|
+
data.tar.gz: 9b8f941a917df4013f6587808ebf3f4c0f79a699
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37ba111912d81f7d2ee90e005c38c58bd020e7d5ce45499e61483cfd59f3476e212dfff7ceb1826fcf0405f58a198279579a5eb9b892022e55595f0d1e34051f
|
|
7
|
+
data.tar.gz: 9f2527cdfb3dffe88b25374e6577b4518b2f48c9d8f9157e992be2aac660cbebe08211d3a998fd2b6f9d9f6c669c24764159de81be3c05306a5c6635baa7057a
|
data/README.md
CHANGED
|
@@ -71,14 +71,33 @@ helper:
|
|
|
71
71
|
<%= render_component "header", title: "This is a title", subtitle: "And this is a subtitle" %>
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
#### Note about URL helpers
|
|
75
|
+
|
|
76
|
+
If you want to use URL helpers in your components (eg: `<%= link_to "Users", users_path %>`) you should prefix the helper with `main_app`, so the component knows the proper route when displayed on the stylesheet.
|
|
77
|
+
With that, the example above would look like `<%= link_to "Users", main_app.users_path %>`.
|
|
78
|
+
|
|
79
|
+
**Important**: This is a temporary work-around, and will be fixed in future versions of Mountain View.
|
|
80
|
+
|
|
74
81
|
### Assets
|
|
75
82
|
You can require all the components CSS and JS automatically by requiring `mountain_view` in your main JS and CSS files.
|
|
76
83
|
|
|
84
|
+
### Global Stylesheets
|
|
85
|
+
In case you want to add global stylesheets (e.g. colors.scss, fonts.scss, etc.) to your Mountain View components you can do it by calling them with an initializer
|
|
86
|
+
|
|
87
|
+
```ruby
|
|
88
|
+
#config/initializers/mountain_view.rb
|
|
89
|
+
|
|
90
|
+
MountainView.configure do |config|
|
|
91
|
+
config.included_stylesheets = ["colors", "fonts"]
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
|
|
77
96
|
```
|
|
78
97
|
//= require mountain_view
|
|
79
98
|
```
|
|
80
99
|
|
|
81
|
-
|
|
100
|
+
## Automatically generated Style Guide
|
|
82
101
|
A style guide will be automatically generated. This style guide never falls behind and it reflects your components in their latest version.
|
|
83
102
|
|
|
84
103
|
#### Setting up the style guide
|
|
@@ -131,4 +150,4 @@ See the [contributing guide](./CONTRIBUTING.md).
|
|
|
131
150
|
* [Ignacio Gutierrez](https://github.com/jgnatch)
|
|
132
151
|
|
|
133
152
|
## Credits
|
|
134
|
-
This library was inspired by [Rizzo](rizzo.lonelyplanet.com/styleguide/ui-components), a wonderful living style guide created by the guys at LonelyPlanet. [More info here](http://engineering.lonelyplanet.com/2014/05/18/a-maintainable-styleguide.html)
|
|
153
|
+
This library was inspired by [Rizzo](http://rizzo.lonelyplanet.com/styleguide/ui-components/cards), a wonderful living style guide created by the guys at LonelyPlanet. [More info here](http://engineering.lonelyplanet.com/2014/05/18/a-maintainable-styleguide.html)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
module MountainView
|
|
2
|
+
module ApplicationHelper
|
|
3
|
+
def method_missing(method, *args, &block)
|
|
4
|
+
if method.to_s.end_with?("_path") || method.to_s.end_with?("_url")
|
|
5
|
+
if main_app.respond_to?(method)
|
|
6
|
+
main_app.send(method, *args)
|
|
7
|
+
else
|
|
8
|
+
super
|
|
9
|
+
end
|
|
10
|
+
else
|
|
11
|
+
super
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def respond_to?(method)
|
|
16
|
+
if method.to_s.end_with?("_path") || method.to_s.end_with?("_url")
|
|
17
|
+
if main_app.respond_to?(method)
|
|
18
|
+
true
|
|
19
|
+
else
|
|
20
|
+
super
|
|
21
|
+
end
|
|
22
|
+
else
|
|
23
|
+
super
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
data/lib/mountain_view/engine.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<%= render_component "header", title: "Pepe" %>
|
|
1
|
+
<%= render_component "header", id: 1, title: "Pepe" %>
|
|
2
2
|
Hello
|
data/test/dummy/config/routes.rb
CHANGED
|
@@ -14,7 +14,7 @@ Dummy::Application.routes.draw do
|
|
|
14
14
|
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
|
15
15
|
|
|
16
16
|
# Example resource route (maps HTTP verbs to controller actions automatically):
|
|
17
|
-
|
|
17
|
+
resources :products
|
|
18
18
|
|
|
19
19
|
# Example resource route with options:
|
|
20
20
|
# resources :products do
|
|
@@ -5066,3 +5066,387 @@ Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2015-05-21 18:47:03 -03
|
|
|
5066
5066
|
|
|
5067
5067
|
Started GET "/assets/mountain_view.css" for 127.0.0.1 at 2015-05-21 18:48:12 -0300
|
|
5068
5068
|
MountainView: stylesheet not found for component 'paragraph'
|
|
5069
|
+
|
|
5070
|
+
|
|
5071
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 11:11:37 -0300
|
|
5072
|
+
Processing by HomeController#index as HTML
|
|
5073
|
+
Rendered app/components/header/_header.html.erb (0.5ms)
|
|
5074
|
+
Rendered home/index.html.erb within layouts/application (5.7ms)
|
|
5075
|
+
MountainView: stylesheet not found for component 'paragraph'
|
|
5076
|
+
Completed 200 OK in 43ms (Views: 43.2ms)
|
|
5077
|
+
|
|
5078
|
+
|
|
5079
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-06-17 11:11:37 -0300
|
|
5080
|
+
|
|
5081
|
+
|
|
5082
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-06-17 11:11:37 -0300
|
|
5083
|
+
|
|
5084
|
+
|
|
5085
|
+
Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-06-17 11:11:47 -0300
|
|
5086
|
+
Processing by MountainView::StyleguideController#index as HTML
|
|
5087
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.8ms)
|
|
5088
|
+
MountainView: javascript not found for component 'paragraph'
|
|
5089
|
+
Completed 200 OK in 44ms (Views: 43.4ms)
|
|
5090
|
+
|
|
5091
|
+
|
|
5092
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:11:47 -0300
|
|
5093
|
+
|
|
5094
|
+
|
|
5095
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:11:47 -0300
|
|
5096
|
+
|
|
5097
|
+
|
|
5098
|
+
Started GET "/mountain_view/styleguide/breadcrumbs" for 127.0.0.1 at 2015-06-17 11:11:49 -0300
|
|
5099
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5100
|
+
Parameters: {"id"=>"breadcrumbs"}
|
|
5101
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (1.5ms)
|
|
5102
|
+
Completed 200 OK in 6ms (Views: 6.0ms)
|
|
5103
|
+
|
|
5104
|
+
|
|
5105
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:11:51 -0300
|
|
5106
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5107
|
+
Parameters: {"id"=>"card"}
|
|
5108
|
+
Rendered app/components/card/_card.html.erb (0.7ms)
|
|
5109
|
+
Rendered app/components/card/_card.html.erb (0.1ms)
|
|
5110
|
+
Rendered app/components/card/_card.html.erb (0.1ms)
|
|
5111
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (14.2ms)
|
|
5112
|
+
Completed 200 OK in 17ms (Views: 17.1ms)
|
|
5113
|
+
|
|
5114
|
+
|
|
5115
|
+
Started GET "/rails/info/routes" for 127.0.0.1 at 2015-06-17 11:12:54 -0300
|
|
5116
|
+
Processing by Rails::InfoController#routes as HTML
|
|
5117
|
+
Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.10/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
|
|
5118
|
+
Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.10/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
|
|
5119
|
+
Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.10/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.1ms)
|
|
5120
|
+
Rendered /Users/nachogutierrez/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.1.10/lib/rails/templates/rails/info/routes.html.erb within layouts/application (13.0ms)
|
|
5121
|
+
Completed 200 OK in 17ms (Views: 16.5ms)
|
|
5122
|
+
|
|
5123
|
+
|
|
5124
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:14:04 -0300
|
|
5125
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5126
|
+
Parameters: {"id"=>"card"}
|
|
5127
|
+
Rendered app/components/card/_card.html.erb (10.7ms)
|
|
5128
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (13.0ms)
|
|
5129
|
+
Completed 500 Internal Server Error in 15ms
|
|
5130
|
+
|
|
5131
|
+
|
|
5132
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:14:15 -0300
|
|
5133
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5134
|
+
Parameters: {"id"=>"card"}
|
|
5135
|
+
Rendered app/components/card/_card.html.erb (10.1ms)
|
|
5136
|
+
Rendered app/components/card/_card.html.erb (0.2ms)
|
|
5137
|
+
Rendered app/components/card/_card.html.erb (0.2ms)
|
|
5138
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (15.2ms)
|
|
5139
|
+
Completed 200 OK in 19ms (Views: 18.5ms)
|
|
5140
|
+
|
|
5141
|
+
|
|
5142
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:14:16 -0300
|
|
5143
|
+
|
|
5144
|
+
|
|
5145
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:14:16 -0300
|
|
5146
|
+
|
|
5147
|
+
|
|
5148
|
+
Started GET "/products" for 127.0.0.1 at 2015-06-17 11:14:21 -0300
|
|
5149
|
+
|
|
5150
|
+
|
|
5151
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:15:45 -0300
|
|
5152
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5153
|
+
Parameters: {"id"=>"card"}
|
|
5154
|
+
Rendered app/components/card/_card.html.erb (2.2ms)
|
|
5155
|
+
Rendered app/components/card/_card.html.erb (0.4ms)
|
|
5156
|
+
Rendered app/components/card/_card.html.erb (0.6ms)
|
|
5157
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (13.1ms)
|
|
5158
|
+
Completed 200 OK in 42ms (Views: 41.8ms)
|
|
5159
|
+
|
|
5160
|
+
|
|
5161
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:15:45 -0300
|
|
5162
|
+
|
|
5163
|
+
|
|
5164
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:15:45 -0300
|
|
5165
|
+
|
|
5166
|
+
|
|
5167
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:15:56 -0300
|
|
5168
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5169
|
+
Parameters: {"id"=>"card"}
|
|
5170
|
+
Rendered app/components/card/_card.html.erb (1.0ms)
|
|
5171
|
+
Rendered app/components/card/_card.html.erb (0.4ms)
|
|
5172
|
+
Rendered app/components/card/_card.html.erb (0.3ms)
|
|
5173
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (7.1ms)
|
|
5174
|
+
Completed 200 OK in 11ms (Views: 11.0ms)
|
|
5175
|
+
|
|
5176
|
+
|
|
5177
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:15:56 -0300
|
|
5178
|
+
|
|
5179
|
+
|
|
5180
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:15:56 -0300
|
|
5181
|
+
|
|
5182
|
+
|
|
5183
|
+
Started GET "/mountain_view/products" for 127.0.0.1 at 2015-06-17 11:16:01 -0300
|
|
5184
|
+
|
|
5185
|
+
|
|
5186
|
+
Started GET "/mountain_view/assets?action=show&controller=mountain_view%2Fstyleguide&id=header" for 127.0.0.1 at 2015-06-17 11:17:09 -0300
|
|
5187
|
+
|
|
5188
|
+
|
|
5189
|
+
Started GET "/mountain_view" for 127.0.0.1 at 2015-06-17 11:18:32 -0300
|
|
5190
|
+
Processing by MountainView::StyleguideController#index as HTML
|
|
5191
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.5ms)
|
|
5192
|
+
Completed 500 Internal Server Error in 17ms
|
|
5193
|
+
|
|
5194
|
+
|
|
5195
|
+
Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-06-17 11:18:36 -0300
|
|
5196
|
+
Processing by MountainView::StyleguideController#index as HTML
|
|
5197
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.4ms)
|
|
5198
|
+
Completed 500 Internal Server Error in 3ms
|
|
5199
|
+
|
|
5200
|
+
|
|
5201
|
+
Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-06-17 11:19:47 -0300
|
|
5202
|
+
Processing by MountainView::StyleguideController#index as HTML
|
|
5203
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (0.2ms)
|
|
5204
|
+
Completed 500 Internal Server Error in 3ms
|
|
5205
|
+
|
|
5206
|
+
|
|
5207
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:19:50 -0300
|
|
5208
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5209
|
+
Parameters: {"id"=>"card"}
|
|
5210
|
+
Rendered app/components/card/_card.html.erb (1.7ms)
|
|
5211
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (7.9ms)
|
|
5212
|
+
Completed 500 Internal Server Error in 10ms
|
|
5213
|
+
|
|
5214
|
+
|
|
5215
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:19:57 -0300
|
|
5216
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5217
|
+
Parameters: {"id"=>"card"}
|
|
5218
|
+
Rendered app/components/card/_card.html.erb (1.7ms)
|
|
5219
|
+
Rendered app/components/card/_card.html.erb (0.5ms)
|
|
5220
|
+
Rendered app/components/card/_card.html.erb (0.3ms)
|
|
5221
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (9.2ms)
|
|
5222
|
+
Completed 200 OK in 31ms (Views: 30.2ms)
|
|
5223
|
+
|
|
5224
|
+
|
|
5225
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:19:57 -0300
|
|
5226
|
+
|
|
5227
|
+
|
|
5228
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:19:57 -0300
|
|
5229
|
+
|
|
5230
|
+
|
|
5231
|
+
Started GET "/products" for 127.0.0.1 at 2015-06-17 11:19:59 -0300
|
|
5232
|
+
|
|
5233
|
+
|
|
5234
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:20:14 -0300
|
|
5235
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5236
|
+
Parameters: {"id"=>"card"}
|
|
5237
|
+
Rendered app/components/card/_card.html.erb (0.4ms)
|
|
5238
|
+
Rendered app/components/card/_card.html.erb (0.2ms)
|
|
5239
|
+
Rendered app/components/card/_card.html.erb (0.2ms)
|
|
5240
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.7ms)
|
|
5241
|
+
Completed 200 OK in 10ms (Views: 9.3ms)
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:20:14 -0300
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:20:14 -0300
|
|
5248
|
+
|
|
5249
|
+
|
|
5250
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 11:20:46 -0300
|
|
5251
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5252
|
+
Parameters: {"id"=>"card"}
|
|
5253
|
+
Rendered app/components/card/_card.html.erb (1.3ms)
|
|
5254
|
+
Rendered app/components/card/_card.html.erb (0.3ms)
|
|
5255
|
+
Rendered app/components/card/_card.html.erb (0.3ms)
|
|
5256
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (8.1ms)
|
|
5257
|
+
Completed 200 OK in 11ms (Views: 10.9ms)
|
|
5258
|
+
|
|
5259
|
+
|
|
5260
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 11:20:46 -0300
|
|
5261
|
+
|
|
5262
|
+
|
|
5263
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 11:20:46 -0300
|
|
5264
|
+
|
|
5265
|
+
|
|
5266
|
+
Started GET "/products" for 127.0.0.1 at 2015-06-17 11:20:49 -0300
|
|
5267
|
+
|
|
5268
|
+
|
|
5269
|
+
Started GET "/mountain_view/styleguides/header" for 127.0.0.1 at 2015-06-17 16:52:10 -0300
|
|
5270
|
+
|
|
5271
|
+
|
|
5272
|
+
Started GET "/mountain_view/styleguide" for 127.0.0.1 at 2015-06-17 16:52:17 -0300
|
|
5273
|
+
Processing by MountainView::StyleguideController#index as HTML
|
|
5274
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/index.html.erb within layouts/mountain_view (1.8ms)
|
|
5275
|
+
MountainView: stylesheet not found for component 'paragraph'
|
|
5276
|
+
MountainView: javascript not found for component 'paragraph'
|
|
5277
|
+
Completed 200 OK in 70ms (Views: 68.6ms)
|
|
5278
|
+
|
|
5279
|
+
|
|
5280
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:52:17 -0300
|
|
5281
|
+
|
|
5282
|
+
|
|
5283
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:52:17 -0300
|
|
5284
|
+
|
|
5285
|
+
|
|
5286
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:52:19 -0300
|
|
5287
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5288
|
+
Parameters: {"id"=>"header"}
|
|
5289
|
+
Rendered app/components/header/_header.html.erb (1.8ms)
|
|
5290
|
+
Rendered app/components/header/_header.html.erb (0.4ms)
|
|
5291
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (26.3ms)
|
|
5292
|
+
Completed 200 OK in 33ms (Views: 33.1ms)
|
|
5293
|
+
|
|
5294
|
+
|
|
5295
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:52:19 -0300
|
|
5296
|
+
|
|
5297
|
+
|
|
5298
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:52:19 -0300
|
|
5299
|
+
|
|
5300
|
+
|
|
5301
|
+
Started GET "/mountain_view/styleguide/card" for 127.0.0.1 at 2015-06-17 16:52:34 -0300
|
|
5302
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5303
|
+
Parameters: {"id"=>"card"}
|
|
5304
|
+
Rendered app/components/card/_card.html.erb (1.4ms)
|
|
5305
|
+
Rendered app/components/card/_card.html.erb (0.1ms)
|
|
5306
|
+
Rendered app/components/card/_card.html.erb (0.1ms)
|
|
5307
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (17.4ms)
|
|
5308
|
+
Completed 200 OK in 21ms (Views: 20.7ms)
|
|
5309
|
+
|
|
5310
|
+
|
|
5311
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:52:35 -0300
|
|
5312
|
+
|
|
5313
|
+
|
|
5314
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:52:35 -0300
|
|
5315
|
+
|
|
5316
|
+
|
|
5317
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:53:38 -0300
|
|
5318
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5319
|
+
Parameters: {"id"=>"header"}
|
|
5320
|
+
Rendered app/components/header/_header.html.erb (0.9ms)
|
|
5321
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (2.6ms)
|
|
5322
|
+
Completed 500 Internal Server Error in 4ms
|
|
5323
|
+
|
|
5324
|
+
|
|
5325
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:53:39 -0300
|
|
5326
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5327
|
+
Parameters: {"id"=>"header"}
|
|
5328
|
+
Rendered app/components/header/_header.html.erb (0.8ms)
|
|
5329
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.6ms)
|
|
5330
|
+
Completed 500 Internal Server Error in 5ms
|
|
5331
|
+
|
|
5332
|
+
|
|
5333
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:54:00 -0300
|
|
5334
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5335
|
+
Parameters: {"id"=>"header"}
|
|
5336
|
+
Rendered app/components/header/_header.html.erb (0.7ms)
|
|
5337
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5338
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.7ms)
|
|
5339
|
+
Completed 200 OK in 6ms (Views: 6.1ms)
|
|
5340
|
+
|
|
5341
|
+
|
|
5342
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:54:00 -0300
|
|
5343
|
+
|
|
5344
|
+
|
|
5345
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:54:00 -0300
|
|
5346
|
+
|
|
5347
|
+
|
|
5348
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:55:06 -0300
|
|
5349
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5350
|
+
Parameters: {"id"=>"header"}
|
|
5351
|
+
Rendered app/components/header/_header.html.erb (0.7ms)
|
|
5352
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5353
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.8ms)
|
|
5354
|
+
MountainView: stylesheet not found for component 'paragraph'
|
|
5355
|
+
Completed 200 OK in 41ms (Views: 40.9ms)
|
|
5356
|
+
|
|
5357
|
+
|
|
5358
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:55:06 -0300
|
|
5359
|
+
|
|
5360
|
+
|
|
5361
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:55:06 -0300
|
|
5362
|
+
|
|
5363
|
+
|
|
5364
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 16:55:29 -0300
|
|
5365
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5366
|
+
Parameters: {"id"=>"header"}
|
|
5367
|
+
Rendered app/components/header/_header.html.erb (0.4ms)
|
|
5368
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5369
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (4.1ms)
|
|
5370
|
+
MountainView: stylesheet not found for component 'paragraph'
|
|
5371
|
+
Completed 200 OK in 27ms (Views: 26.3ms)
|
|
5372
|
+
|
|
5373
|
+
|
|
5374
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 16:55:29 -0300
|
|
5375
|
+
|
|
5376
|
+
|
|
5377
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 16:55:29 -0300
|
|
5378
|
+
|
|
5379
|
+
|
|
5380
|
+
Started GET "/mountain_view/styleguide/header" for 127.0.0.1 at 2015-06-17 17:03:22 -0300
|
|
5381
|
+
Processing by MountainView::StyleguideController#show as HTML
|
|
5382
|
+
Parameters: {"id"=>"header"}
|
|
5383
|
+
Rendered app/components/header/_header.html.erb (0.4ms)
|
|
5384
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5385
|
+
Rendered /Users/nachogutierrez/Projects/mountain_view/app/views/mountain_view/styleguide/show.html.erb within layouts/mountain_view (3.8ms)
|
|
5386
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
|
5387
|
+
|
|
5388
|
+
|
|
5389
|
+
Started GET "/assets/mountain_view/styleguide.css" for 127.0.0.1 at 2015-06-17 17:03:23 -0300
|
|
5390
|
+
|
|
5391
|
+
|
|
5392
|
+
Started GET "/assets/mountain_view/styleguide.js" for 127.0.0.1 at 2015-06-17 17:03:23 -0300
|
|
5393
|
+
|
|
5394
|
+
|
|
5395
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 17:03:27 -0300
|
|
5396
|
+
Processing by HomeController#index as HTML
|
|
5397
|
+
Rendered app/components/header/_header.html.erb (3.1ms)
|
|
5398
|
+
Rendered home/index.html.erb within layouts/application (4.4ms)
|
|
5399
|
+
Completed 500 Internal Server Error in 7ms
|
|
5400
|
+
|
|
5401
|
+
|
|
5402
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 17:03:45 -0300
|
|
5403
|
+
Processing by HomeController#index as HTML
|
|
5404
|
+
Rendered app/components/header/_header.html.erb (0.3ms)
|
|
5405
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
5406
|
+
MountainView: stylesheet not found for component 'paragraph'
|
|
5407
|
+
Completed 200 OK in 48ms (Views: 47.7ms)
|
|
5408
|
+
|
|
5409
|
+
|
|
5410
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-06-17 17:03:45 -0300
|
|
5411
|
+
|
|
5412
|
+
|
|
5413
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-06-17 17:03:45 -0300
|
|
5414
|
+
|
|
5415
|
+
|
|
5416
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 17:05:41 -0300
|
|
5417
|
+
Processing by HomeController#index as HTML
|
|
5418
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5419
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
5420
|
+
Completed 200 OK in 4ms (Views: 3.7ms)
|
|
5421
|
+
|
|
5422
|
+
|
|
5423
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-06-17 17:05:41 -0300
|
|
5424
|
+
|
|
5425
|
+
|
|
5426
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-06-17 17:05:41 -0300
|
|
5427
|
+
|
|
5428
|
+
|
|
5429
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|
|
5430
|
+
Processing by HomeController#index as HTML
|
|
5431
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5432
|
+
Rendered home/index.html.erb within layouts/application (1.1ms)
|
|
5433
|
+
Completed 200 OK in 3ms (Views: 3.1ms)
|
|
5434
|
+
|
|
5435
|
+
|
|
5436
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|
|
5437
|
+
|
|
5438
|
+
|
|
5439
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|
|
5440
|
+
|
|
5441
|
+
|
|
5442
|
+
Started GET "/" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|
|
5443
|
+
Processing by HomeController#index as HTML
|
|
5444
|
+
Rendered app/components/header/_header.html.erb (0.2ms)
|
|
5445
|
+
Rendered home/index.html.erb within layouts/application (0.9ms)
|
|
5446
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
|
5447
|
+
|
|
5448
|
+
|
|
5449
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|
|
5450
|
+
|
|
5451
|
+
|
|
5452
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-06-17 17:05:42 -0300
|