minimum_viable_product 0.0.35 → 0.0.36
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/app/assets/stylesheets/minimum_viable_product/application.scss +0 -2
- data/bin/mvp +3 -1
- data/lib/minimum_viable_product/version.rb +1 -1
- metadata +2 -9
- data/app/assets/stylesheets/minimum_viable_product/layout/basic.scss +0 -6
- data/app/assets/stylesheets/minimum_viable_product/layout/carousel.scss +0 -127
- data/app/assets/stylesheets/minimum_viable_product/layout/cover.scss +0 -111
- data/app/assets/stylesheets/minimum_viable_product/skin/style.scss +0 -8
- data/app/views/layouts/minimum_viable_product/basic.html.erb +0 -12
- data/app/views/layouts/minimum_viable_product/carousel.html.erb +0 -13
- data/app/views/layouts/minimum_viable_product/cover.html.erb +0 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c383a7c4d0abb2fb00eaffaf1c8eec69bc7ae5e7
|
4
|
+
data.tar.gz: def18c5c86fc8b3626668be19770bdf50a984f6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32bfd23351102c4e03132eafc7ea5979a8e529d8e6aaa3769853b0e2008d2071486f9e494d4dbeebb3ab7a826b83fb781fc215a9e40985b7a308d5a52931fabf
|
7
|
+
data.tar.gz: b040bd480104282aa823ca2690fe57d857532d47d9cfbcb0168f5488d9323c62d515a20680d04f6b8b50d751e8bf7b1c2b96f423b026e0b32daccfef05e64f46
|
data/bin/mvp
CHANGED
@@ -42,7 +42,9 @@ when 'new'
|
|
42
42
|
|
43
43
|
when 'update'
|
44
44
|
run "bundle update minimum_viable_product"
|
45
|
-
|
45
|
+
# npm has a bug where it won't update new dependencies
|
46
|
+
# https://github.com/npm/npm/issues/1341
|
47
|
+
run "rm -rf node_modules; npm install"
|
46
48
|
end
|
47
49
|
|
48
50
|
BEGIN {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minimum_viable_product
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.36
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Hunter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: analytics-ruby
|
@@ -434,10 +434,6 @@ files:
|
|
434
434
|
- app/assets/stylesheets/minimum_viable_product/components/typography.scss
|
435
435
|
- app/assets/stylesheets/minimum_viable_product/init/_reset.scss
|
436
436
|
- app/assets/stylesheets/minimum_viable_product/init/layout.scss
|
437
|
-
- app/assets/stylesheets/minimum_viable_product/layout/basic.scss
|
438
|
-
- app/assets/stylesheets/minimum_viable_product/layout/carousel.scss
|
439
|
-
- app/assets/stylesheets/minimum_viable_product/layout/cover.scss
|
440
|
-
- app/assets/stylesheets/minimum_viable_product/skin/style.scss
|
441
437
|
- app/controllers/concerns/minimum_viable_product/analytics_concern.rb
|
442
438
|
- app/controllers/concerns/minimum_viable_product/seo_concern.rb
|
443
439
|
- app/controllers/concerns/minimum_viable_product/session_concern.rb
|
@@ -454,9 +450,6 @@ files:
|
|
454
450
|
- app/views/layouts/minimum_viable_product/_instrumentation.html.erb
|
455
451
|
- app/views/layouts/minimum_viable_product/_meta.html.erb
|
456
452
|
- app/views/layouts/minimum_viable_product/application.html.erb
|
457
|
-
- app/views/layouts/minimum_viable_product/basic.html.erb
|
458
|
-
- app/views/layouts/minimum_viable_product/carousel.html.erb
|
459
|
-
- app/views/layouts/minimum_viable_product/cover.html.erb
|
460
453
|
- app/views/minimum_viable_product/styleguide/_example.html.erb
|
461
454
|
- app/views/minimum_viable_product/styleguide/bootstrap.html.erb
|
462
455
|
- app/views/minimum_viable_product/styleguide/bootstrap/_buttons.html.erb
|
@@ -1,127 +0,0 @@
|
|
1
|
-
/* GLOBAL STYLES
|
2
|
-
-------------------------------------------------- */
|
3
|
-
/* Padding below the footer and lighter body text */
|
4
|
-
|
5
|
-
body.body-carousel {
|
6
|
-
/* Special class on .container surrounding .navbar, used for positioning it into place. */
|
7
|
-
.navbar-wrapper {
|
8
|
-
position: absolute;
|
9
|
-
top: 0;
|
10
|
-
right: 0;
|
11
|
-
left: 0;
|
12
|
-
z-index: 20;
|
13
|
-
}
|
14
|
-
|
15
|
-
/* Flip around the padding for proper display in narrow viewports */
|
16
|
-
.navbar-wrapper > .container {
|
17
|
-
padding-right: 0;
|
18
|
-
padding-left: 0;
|
19
|
-
}
|
20
|
-
.navbar-wrapper .navbar {
|
21
|
-
padding-right: 15px;
|
22
|
-
padding-left: 15px;
|
23
|
-
}
|
24
|
-
.navbar-wrapper .navbar .container {
|
25
|
-
width: auto;
|
26
|
-
}
|
27
|
-
|
28
|
-
|
29
|
-
/* CUSTOMIZE THE CAROUSEL
|
30
|
-
-------------------------------------------------- */
|
31
|
-
|
32
|
-
/* Carousel base class */
|
33
|
-
.carousel {
|
34
|
-
height: 500px;
|
35
|
-
}
|
36
|
-
/* Since positioning the image, we need to help out the caption */
|
37
|
-
.carousel-caption {
|
38
|
-
z-index: 10;
|
39
|
-
}
|
40
|
-
|
41
|
-
/* Declare heights because of positioning of img element */
|
42
|
-
.carousel .item {
|
43
|
-
height: 500px;
|
44
|
-
background-color: #777;
|
45
|
-
}
|
46
|
-
.carousel-inner > .item > img {
|
47
|
-
position: absolute;
|
48
|
-
top: 0;
|
49
|
-
left: 0;
|
50
|
-
min-width: 100%;
|
51
|
-
height: 500px;
|
52
|
-
}
|
53
|
-
|
54
|
-
|
55
|
-
/* MARKETING CONTENT
|
56
|
-
-------------------------------------------------- */
|
57
|
-
|
58
|
-
/* Center align the text within the three columns below the carousel */
|
59
|
-
.marketing .col-lg-4 {
|
60
|
-
margin-bottom: 20px;
|
61
|
-
text-align: center;
|
62
|
-
}
|
63
|
-
.marketing h2 {
|
64
|
-
font-weight: normal;
|
65
|
-
}
|
66
|
-
.marketing .col-lg-4 p {
|
67
|
-
margin-right: 10px;
|
68
|
-
margin-left: 10px;
|
69
|
-
}
|
70
|
-
|
71
|
-
|
72
|
-
/* Featurettes
|
73
|
-
------------------------- */
|
74
|
-
|
75
|
-
.featurette-divider {
|
76
|
-
margin: 80px 0; /* Space out the Bootstrap <hr> more */
|
77
|
-
}
|
78
|
-
|
79
|
-
/* Thin out the marketing headings */
|
80
|
-
.featurette-heading {
|
81
|
-
font-weight: 300;
|
82
|
-
line-height: 1;
|
83
|
-
letter-spacing: -1px;
|
84
|
-
}
|
85
|
-
|
86
|
-
|
87
|
-
/* RESPONSIVE CSS
|
88
|
-
-------------------------------------------------- */
|
89
|
-
|
90
|
-
@media (min-width: 768px) {
|
91
|
-
/* Navbar positioning foo */
|
92
|
-
.navbar-wrapper {
|
93
|
-
margin-top: 20px;
|
94
|
-
}
|
95
|
-
.navbar-wrapper .container {
|
96
|
-
padding-right: 15px;
|
97
|
-
padding-left: 15px;
|
98
|
-
}
|
99
|
-
.navbar-wrapper .navbar {
|
100
|
-
padding-right: 0;
|
101
|
-
padding-left: 0;
|
102
|
-
}
|
103
|
-
|
104
|
-
/* The navbar becomes detached from the top, so we round the corners */
|
105
|
-
.navbar-wrapper .navbar {
|
106
|
-
border-radius: 4px;
|
107
|
-
}
|
108
|
-
|
109
|
-
/* Bump up size of carousel content */
|
110
|
-
.carousel-caption p {
|
111
|
-
margin-bottom: 20px;
|
112
|
-
font-size: 21px;
|
113
|
-
line-height: 1.4;
|
114
|
-
}
|
115
|
-
|
116
|
-
.featurette-heading {
|
117
|
-
font-size: 50px;
|
118
|
-
}
|
119
|
-
}
|
120
|
-
|
121
|
-
@media (min-width: 992px) {
|
122
|
-
.featurette-heading {
|
123
|
-
margin-top: 120px;
|
124
|
-
}
|
125
|
-
}
|
126
|
-
|
127
|
-
}
|
@@ -1,111 +0,0 @@
|
|
1
|
-
body.body-cover {
|
2
|
-
text-align: center;
|
3
|
-
|
4
|
-
.site-wrapper {
|
5
|
-
display: table;
|
6
|
-
width: 100%;
|
7
|
-
height: 100%; /* For at least Firefox */
|
8
|
-
min-height: 100%;
|
9
|
-
}
|
10
|
-
.site-wrapper-inner {
|
11
|
-
display: table-cell;
|
12
|
-
vertical-align: top;
|
13
|
-
}
|
14
|
-
.cover-container {
|
15
|
-
margin-right: auto;
|
16
|
-
margin-left: auto;
|
17
|
-
}
|
18
|
-
|
19
|
-
/* Padding for spacing */
|
20
|
-
.inner {
|
21
|
-
padding: 30px;
|
22
|
-
}
|
23
|
-
|
24
|
-
|
25
|
-
/*
|
26
|
-
* Header
|
27
|
-
*/
|
28
|
-
.masthead-brand {
|
29
|
-
margin-top: 10px;
|
30
|
-
margin-bottom: 10px;
|
31
|
-
}
|
32
|
-
|
33
|
-
.masthead-nav > li {
|
34
|
-
display: inline-block;
|
35
|
-
}
|
36
|
-
.masthead-nav > li + li {
|
37
|
-
margin-left: 20px;
|
38
|
-
}
|
39
|
-
.masthead-nav > li > a {
|
40
|
-
padding-right: 0;
|
41
|
-
padding-left: 0;
|
42
|
-
font-size: 16px;
|
43
|
-
font-weight: bold;
|
44
|
-
}
|
45
|
-
.masthead-nav > li > a:hover,
|
46
|
-
.masthead-nav > li > a:focus {
|
47
|
-
background-color: transparent;
|
48
|
-
}
|
49
|
-
.masthead-nav > .active > a,
|
50
|
-
.masthead-nav > .active > a:hover,
|
51
|
-
.masthead-nav > .active > a:focus {
|
52
|
-
|
53
|
-
}
|
54
|
-
|
55
|
-
@media (min-width: 768px) {
|
56
|
-
.masthead-brand {
|
57
|
-
float: left;
|
58
|
-
}
|
59
|
-
.masthead-nav {
|
60
|
-
float: right;
|
61
|
-
}
|
62
|
-
}
|
63
|
-
|
64
|
-
|
65
|
-
/*
|
66
|
-
* Cover
|
67
|
-
*/
|
68
|
-
|
69
|
-
.cover {
|
70
|
-
padding: 0 20px;
|
71
|
-
}
|
72
|
-
.cover .btn-lg {
|
73
|
-
padding: 10px 20px;
|
74
|
-
font-weight: bold;
|
75
|
-
}
|
76
|
-
|
77
|
-
|
78
|
-
/*
|
79
|
-
* Affix and center
|
80
|
-
*/
|
81
|
-
|
82
|
-
@media (min-width: 768px) {
|
83
|
-
/* Pull out the header and footer */
|
84
|
-
.masthead {
|
85
|
-
position: fixed;
|
86
|
-
top: 0;
|
87
|
-
}
|
88
|
-
.mastfoot {
|
89
|
-
position: fixed;
|
90
|
-
bottom: 0;
|
91
|
-
}
|
92
|
-
/* Start the vertical centering */
|
93
|
-
.site-wrapper-inner {
|
94
|
-
vertical-align: middle;
|
95
|
-
}
|
96
|
-
/* Handle the widths */
|
97
|
-
.masthead,
|
98
|
-
.mastfoot,
|
99
|
-
.cover-container {
|
100
|
-
width: 100%; /* Must be percentage or pixels for horizontal alignment */
|
101
|
-
}
|
102
|
-
}
|
103
|
-
|
104
|
-
@media (min-width: 992px) {
|
105
|
-
.masthead,
|
106
|
-
.mastfoot,
|
107
|
-
.cover-container {
|
108
|
-
width: 700px;
|
109
|
-
}
|
110
|
-
}
|
111
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
<% page.classes = "body-basic" %>
|
2
|
-
|
3
|
-
<%- content_for :body do %>
|
4
|
-
<% if content_for :header %>
|
5
|
-
<%= yield :header %>
|
6
|
-
<% end %>
|
7
|
-
<div class="container">
|
8
|
-
<%= yield %>
|
9
|
-
</div>
|
10
|
-
<% end %>
|
11
|
-
|
12
|
-
<%= render template: "layouts/minimum_viable_product/application" %>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<% page.classes = "body-carousel" %>
|
2
|
-
|
3
|
-
<%- content_for :body do %>
|
4
|
-
<% if content_for :header %>
|
5
|
-
<%= yield :header %>
|
6
|
-
<% end %>
|
7
|
-
<%= yield :carousel %>
|
8
|
-
<div class="container">
|
9
|
-
<%= yield %>
|
10
|
-
</div>
|
11
|
-
<% end %>
|
12
|
-
|
13
|
-
<%= render template: "layouts/minimum_viable_product/application" %>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<% page.classes = "body-cover" %>
|
2
|
-
|
3
|
-
<%- content_for :body do %>
|
4
|
-
<div class="site-wrapper">
|
5
|
-
<div class="site-wrapper-inner">
|
6
|
-
<div class="cover-container">
|
7
|
-
<%= yield %>
|
8
|
-
</div>
|
9
|
-
</div>
|
10
|
-
</div>
|
11
|
-
<% end %>
|
12
|
-
|
13
|
-
<%= render template: "layouts/minimum_viable_product/application" %>
|