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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7daef684bbf98f49d9e1e4ee6bc1dd8489695274
4
- data.tar.gz: f85b515fdcad4dbe349567dcad10ec701e92c4d4
3
+ metadata.gz: c383a7c4d0abb2fb00eaffaf1c8eec69bc7ae5e7
4
+ data.tar.gz: def18c5c86fc8b3626668be19770bdf50a984f6c
5
5
  SHA512:
6
- metadata.gz: 8b907760e7834e855af2fce8cb7bb09e5a3aab2e7b5c91fc9c51992c0dd152484d83177dfa6157b3ea4df65cd219b3dbd7a066a3625f0ec5b16fc910de39744b
7
- data.tar.gz: 9c9a413d73436d6d295b65df3ea4981d8f86b86b7d1b4b3c967ad7d51c4ebabd0b56302a10b676a5c74221c86bcb1090aa4ea8b3feba6bb6a4a25db7ce83a720
6
+ metadata.gz: 32bfd23351102c4e03132eafc7ea5979a8e529d8e6aaa3769853b0e2008d2071486f9e494d4dbeebb3ab7a826b83fb781fc215a9e40985b7a308d5a52931fabf
7
+ data.tar.gz: b040bd480104282aa823ca2690fe57d857532d47d9cfbcb0168f5488d9323c62d515a20680d04f6b8b50d751e8bf7b1c2b96f423b026e0b32daccfef05e64f46
@@ -11,9 +11,7 @@
11
11
  * file per style scope.
12
12
  *
13
13
  *= require_tree ./init
14
- *= require_tree ./layout
15
14
  *= require_tree ./components
16
- *= require_tree ./skin
17
15
  *
18
16
  *= require_self
19
17
  */
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
- run "npm update minimum_viable_product"
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 {
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.0.35"
2
+ VERSION = "0.0.36"
3
3
  end
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.35
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-18 00:00:00.000000000 Z
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,6 +0,0 @@
1
- body.body-basic {
2
- .starter-template {
3
- padding: 40px 15px;
4
- text-align: center;
5
- }
6
- }
@@ -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,8 +0,0 @@
1
- body {
2
- background: #F3F3F3;
3
- font-family: 'Open Sans', sans-serif;
4
- }
5
-
6
- h1,h2,h3,h4,h5,h6 {
7
- font-weight: 700;
8
- }
@@ -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" %>