mountain_view 0.7.1 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/mountain_view/prism.js +7 -5
- data/app/assets/stylesheets/mountain_view/prism.css +137 -129
- data/app/assets/stylesheets/mountain_view/styleguide.css +11 -0
- data/app/views/mountain_view/styleguide/_example.html.erb +11 -0
- data/app/views/mountain_view/styleguide/show.html.erb +39 -14
- data/lib/mountain_view/component.rb +36 -4
- data/lib/mountain_view/version.rb +1 -1
- data/test/dummy/app/components/header/header.yml +9 -7
- data/test/generators/component_generator_test.rb +4 -0
- data/test/mountain_view/component_test.rb +93 -7
- metadata +4 -13
- data/test/dummy/log/test.log +0 -2775
- data/test/tmp/app/components/widget/_widget.html.haml +0 -0
- data/test/tmp/app/components/widget/widget.coffee +0 -0
- data/test/tmp/app/components/widget/widget.scss +0 -0
- data/test/tmp/app/components/widget/widget.yml +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mountain_view
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ignacio Gutierrez
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-01-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -62,6 +62,7 @@ files:
|
|
62
62
|
- app/helpers/mountain_view/component_helper.rb
|
63
63
|
- app/helpers/mountain_view/styleguide_helper.rb
|
64
64
|
- app/views/layouts/mountain_view.html.erb
|
65
|
+
- app/views/mountain_view/styleguide/_example.html.erb
|
65
66
|
- app/views/mountain_view/styleguide/index.html.erb
|
66
67
|
- app/views/mountain_view/styleguide/show.html.erb
|
67
68
|
- config/routes.rb
|
@@ -119,7 +120,6 @@ files:
|
|
119
120
|
- test/dummy/config/locales/en.yml
|
120
121
|
- test/dummy/config/routes.rb
|
121
122
|
- test/dummy/config/secrets.yml
|
122
|
-
- test/dummy/log/test.log
|
123
123
|
- test/dummy/public/404.html
|
124
124
|
- test/dummy/public/422.html
|
125
125
|
- test/dummy/public/500.html
|
@@ -130,10 +130,6 @@ files:
|
|
130
130
|
- test/mountain_view/configuration_test.rb
|
131
131
|
- test/mountain_view_test.rb
|
132
132
|
- test/test_helper.rb
|
133
|
-
- test/tmp/app/components/widget/_widget.html.haml
|
134
|
-
- test/tmp/app/components/widget/widget.coffee
|
135
|
-
- test/tmp/app/components/widget/widget.scss
|
136
|
-
- test/tmp/app/components/widget/widget.yml
|
137
133
|
homepage: http://github.com/jgnatch/mountain_view
|
138
134
|
licenses:
|
139
135
|
- MIT
|
@@ -154,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
150
|
version: '0'
|
155
151
|
requirements: []
|
156
152
|
rubyforge_project:
|
157
|
-
rubygems_version: 2.
|
153
|
+
rubygems_version: 2.5.1
|
158
154
|
signing_key:
|
159
155
|
specification_version: 4
|
160
156
|
summary: Mountain View helps you create reusable visual components on your Rails Application.
|
@@ -204,7 +200,6 @@ test_files:
|
|
204
200
|
- test/dummy/config/routes.rb
|
205
201
|
- test/dummy/config/secrets.yml
|
206
202
|
- test/dummy/config.ru
|
207
|
-
- test/dummy/log/test.log
|
208
203
|
- test/dummy/public/404.html
|
209
204
|
- test/dummy/public/422.html
|
210
205
|
- test/dummy/public/500.html
|
@@ -217,7 +212,3 @@ test_files:
|
|
217
212
|
- test/mountain_view/configuration_test.rb
|
218
213
|
- test/mountain_view_test.rb
|
219
214
|
- test/test_helper.rb
|
220
|
-
- test/tmp/app/components/widget/_widget.html.haml
|
221
|
-
- test/tmp/app/components/widget/widget.coffee
|
222
|
-
- test/tmp/app/components/widget/widget.scss
|
223
|
-
- test/tmp/app/components/widget/widget.yml
|