minimum-viable-product 0.0.2
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/mvp/application.js.erb +38 -0
- data/app/assets/javascripts/mvp/init/controllers.js +23 -0
- data/app/assets/stylesheets/mvp/application.scss +23 -0
- data/app/assets/stylesheets/mvp/components/buttons.scss +20 -0
- data/app/assets/stylesheets/mvp/components/fonts.scss +15 -0
- data/app/assets/stylesheets/mvp/components/spacing.scss +13 -0
- data/app/assets/stylesheets/mvp/components/typography.scss +40 -0
- data/app/assets/stylesheets/mvp/init/_reset.scss +43 -0
- data/app/assets/stylesheets/mvp/init/layout.scss +42 -0
- data/app/assets/stylesheets/mvp/layout/basic.scss +6 -0
- data/app/assets/stylesheets/mvp/layout/carousel.scss +128 -0
- data/app/assets/stylesheets/mvp/layout/cover.scss +111 -0
- data/app/assets/stylesheets/mvp/pages/sample.scss +14 -0
- data/app/assets/stylesheets/mvp/skin/style.scss +8 -0
- data/app/controllers/mvp/analytics_controller.rb +14 -0
- data/app/controllers/mvp/application_controller.rb +11 -0
- data/app/controllers/mvp/concerns/analytics_concern.rb +77 -0
- data/app/controllers/mvp/concerns/seo_concern.rb +25 -0
- data/app/controllers/mvp/concerns/session_concern.rb +40 -0
- data/app/controllers/mvp/seo_controller.rb +13 -0
- data/app/controllers/mvp/styleguide_controller.rb +17 -0
- data/app/helpers/mvp/analytics_helper.rb +4 -0
- data/app/helpers/mvp/application_helper.rb +15 -0
- data/app/helpers/mvp/bootstrap_helper.rb +38 -0
- data/app/helpers/mvp/seo_helper.rb +4 -0
- data/app/helpers/mvp/styleguide_helper.rb +4 -0
- data/app/models/concerns/slugification.rb +16 -0
- data/app/views/layouts/mvp/_header.html.erb +48 -0
- data/app/views/layouts/mvp/_instrumentation.html.erb +75 -0
- data/app/views/layouts/mvp/_meta.html.erb +37 -0
- data/app/views/layouts/mvp/application.html.erb +24 -0
- data/app/views/layouts/mvp/basic.html.erb +10 -0
- data/app/views/layouts/mvp/carousel.html.erb +13 -0
- data/app/views/layouts/mvp/cover.html.erb +13 -0
- data/bin/mvp +23 -0
- data/config/initializers/canonical_host.rb +3 -0
- data/config/initializers/client_side_validations.rb +20 -0
- data/config/initializers/cloudinary.rb +6 -0
- data/config/initializers/geocoder.rb +9 -0
- data/config/initializers/iteration.rb +33 -0
- data/config/initializers/rollbar.rb +59 -0
- data/config/initializers/segment.rb +5 -0
- data/config/initializers/simple_form.rb +165 -0
- data/config/initializers/simple_form_bootstrap.rb +149 -0
- data/config/initializers/spoof_ip.rb +33 -0
- data/config/initializers/ssl.rb +3 -0
- data/config/routes.rb +16 -0
- data/lib/mvp.rb +6 -0
- data/lib/mvp/engine.rb +20 -0
- data/lib/mvp/ext/nil.rb +5 -0
- data/lib/mvp/ext/string.rb +7 -0
- data/lib/mvp/version.rb +3 -0
- data/lib/tasks/sitemap.rake +42 -0
- metadata +521 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1176e281fa49b43b9d7a50c5dae95eacf278da29
|
4
|
+
data.tar.gz: cdbb256c81f5bfe09cf01a418ee23ae7e5a21144
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a62292a761233c6e371c3c615e56ca36cc92ae2757af2cc958f100578098979928411e4e231a7a21dc013184de5afccfc9775d792446e927b1770ba197ebc715
|
7
|
+
data.tar.gz: 755a655879f6d733be7ba4eb07bbdb7ff13d80c0da04221df6bd09e8dabd5875806600d9fd9eccaba9722ac9e4ce8334103a44e8e020943b656d40444db0feb8
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright 2016 Ian Hunter
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'Mvp'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
|
21
|
+
load 'rails/tasks/statistics.rake'
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
Bundler::GemHelper.install_tasks
|
26
|
+
|
27
|
+
require 'rake/testtask'
|
28
|
+
|
29
|
+
Rake::TestTask.new(:test) do |t|
|
30
|
+
t.libs << 'lib'
|
31
|
+
t.libs << 'test'
|
32
|
+
t.pattern = 'test/**/*_test.rb'
|
33
|
+
t.verbose = false
|
34
|
+
end
|
35
|
+
|
36
|
+
|
37
|
+
task default: :test
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//= require jquery
|
2
|
+
//= require jquery_ujs
|
3
|
+
//= require jquery.cookie
|
4
|
+
//= require lodash
|
5
|
+
//= require is
|
6
|
+
//= require bootstrap
|
7
|
+
//= require rails.validations
|
8
|
+
//= require rails.validations.simple_form
|
9
|
+
//
|
10
|
+
//= require_tree ./init
|
11
|
+
//
|
12
|
+
//= require_self
|
13
|
+
|
14
|
+
var is = require('is')
|
15
|
+
var _ = require('lodash')
|
16
|
+
|
17
|
+
track = function(event, attributes, fn){
|
18
|
+
console.log("Track: " + event + " " + JSON.stringify(attributes))
|
19
|
+
|
20
|
+
if (is.fn(attributes)) fn = attributes, attributes = null;
|
21
|
+
if (is.undefined(attributes)) { attributes = {} }
|
22
|
+
if ($.cookie('invisible') == "true") {
|
23
|
+
if (!is.undefined(fn)) { fn() }
|
24
|
+
return
|
25
|
+
}
|
26
|
+
|
27
|
+
if (typeof(analytics) == 'undefined') {
|
28
|
+
return
|
29
|
+
}
|
30
|
+
|
31
|
+
attrs = _.extend({
|
32
|
+
iteration: '<%= Mvp::Iteration.version %>'
|
33
|
+
}, attributes)
|
34
|
+
|
35
|
+
analytics.track(event, attrs, fn)
|
36
|
+
}
|
37
|
+
|
38
|
+
window.track = track;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
window.controllers = {}
|
2
|
+
|
3
|
+
$(function() {
|
4
|
+
var $body = $("body");
|
5
|
+
var controller = $body.data("controller").replace(/\//g, "_");
|
6
|
+
var action = $body.data("action");
|
7
|
+
|
8
|
+
var activeController = window.controllers[controller];
|
9
|
+
|
10
|
+
if (activeController !== undefined) {
|
11
|
+
if (window.env == "development") {
|
12
|
+
console.log("[Controllers] " + controller + "." + action + "()");
|
13
|
+
}
|
14
|
+
|
15
|
+
if ($.isFunction(activeController.init)) {
|
16
|
+
activeController.init();
|
17
|
+
}
|
18
|
+
|
19
|
+
if ($.isFunction(activeController[action])) {
|
20
|
+
activeController[action]();
|
21
|
+
}
|
22
|
+
}
|
23
|
+
});
|
@@ -0,0 +1,23 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
11
|
+
* file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree ./init
|
14
|
+
*= require_tree ./layout
|
15
|
+
*= require_tree ./components
|
16
|
+
*= require_tree ./skin
|
17
|
+
*= require_tree ./pages
|
18
|
+
*
|
19
|
+
*= require_self
|
20
|
+
*/
|
21
|
+
|
22
|
+
$modal-backdrop-bg: #FFF;
|
23
|
+
$modal-backdrop-opacity: 0.8;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
$bc-facebook: #3b5998;
|
2
|
+
|
3
|
+
$bc-twitter: #1da1f2;
|
4
|
+
$bc-twitter-2: #14171a;
|
5
|
+
$bc-twitter-3: #657786;
|
6
|
+
$bc-twitter-4: #aab8c2;
|
7
|
+
$bc-twitter-5: #e1e8ed;
|
8
|
+
$bc-twitter-6: #f5f8fa;
|
9
|
+
|
10
|
+
$bc-youtube: #cd201f;
|
11
|
+
|
12
|
+
.btn-facebook {
|
13
|
+
background: $bc-facebook;
|
14
|
+
color: #FFF;
|
15
|
+
|
16
|
+
&:hover {
|
17
|
+
background: darken( $bc-facebook, 10% );
|
18
|
+
color: #FFF;
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
@for $i from 0 through 100 {
|
2
|
+
.mt#{$i} { margin-top: #{$i}px !important; }
|
3
|
+
.mb#{$i} { margin-bottom: #{$i}px !important; }
|
4
|
+
.ml#{$i} { margin-left: #{$i}px !important; }
|
5
|
+
.mr#{$i} { margin-right: #{$i}px !important; }
|
6
|
+
.m#{$i} { margin: #{$i}px !important; }
|
7
|
+
|
8
|
+
.pt#{$i} { padding-top: #{$i}px !important; }
|
9
|
+
.pb#{$i} { padding-bottom: #{$i}px !important; }
|
10
|
+
.pl#{$i} { padding-left: #{$i}px !important; }
|
11
|
+
.pr#{$i} { padding-right: #{$i}px !important; }
|
12
|
+
.p#{$i} { padding: #{$i}px !important; }
|
13
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
.text-white {
|
2
|
+
color: #FFF;
|
3
|
+
}
|
4
|
+
|
5
|
+
.text-grey {
|
6
|
+
color: #999;
|
7
|
+
}
|
8
|
+
|
9
|
+
.text-light-grey {
|
10
|
+
color: #EEE;
|
11
|
+
}
|
12
|
+
|
13
|
+
.text-dark-grey {
|
14
|
+
color: #666;
|
15
|
+
}
|
16
|
+
|
17
|
+
.text-green {
|
18
|
+
color: #58B957;
|
19
|
+
}
|
20
|
+
|
21
|
+
.text-black {
|
22
|
+
color: #000;
|
23
|
+
}
|
24
|
+
|
25
|
+
.text-shadow {
|
26
|
+
text-shadow: 0 1px 3px rgba(0,0,0,.5);
|
27
|
+
}
|
28
|
+
|
29
|
+
.text-light { font-weight: 300; }
|
30
|
+
.text-normal { font-weight: 400; }
|
31
|
+
.text-bold { font-weight: 700; }
|
32
|
+
|
33
|
+
@for $i from 1 through 99 {
|
34
|
+
.text-sm-#{$i} {
|
35
|
+
font-size: #{$i/100}em;
|
36
|
+
}
|
37
|
+
.text-lg-#{$i} {
|
38
|
+
font-size: #{$i/100 + 100}em;
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
html, body, div, span, applet, object, iframe,
|
2
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
3
|
+
a, abbr, acronym, address, big, cite, code,
|
4
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
5
|
+
small, strike, strong, sub, sup, tt, var,
|
6
|
+
b, u, i, center,
|
7
|
+
dl, dt, dd, ol, ul, li,
|
8
|
+
fieldset, form, label, legend,
|
9
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
10
|
+
article, aside, canvas, details, embed,
|
11
|
+
figure, figcaption, footer, header, hgroup,
|
12
|
+
menu, nav, output, ruby, section, summary,
|
13
|
+
time, mark, audio, video {
|
14
|
+
margin: 0;
|
15
|
+
padding: 0;
|
16
|
+
border: 0;
|
17
|
+
// font-size: 100%;
|
18
|
+
// font: inherit;
|
19
|
+
// vertical-align: baseline;
|
20
|
+
}
|
21
|
+
/* HTML5 display-role reset for older browsers */
|
22
|
+
article, aside, details, figcaption, figure,
|
23
|
+
footer, header, hgroup, menu, nav, section {
|
24
|
+
display: block;
|
25
|
+
}
|
26
|
+
body {
|
27
|
+
// line-height: 1;
|
28
|
+
}
|
29
|
+
ol, ul {
|
30
|
+
list-style: none;
|
31
|
+
}
|
32
|
+
blockquote, q {
|
33
|
+
quotes: none;
|
34
|
+
}
|
35
|
+
blockquote:before, blockquote:after,
|
36
|
+
q:before, q:after {
|
37
|
+
content: '';
|
38
|
+
content: none;
|
39
|
+
}
|
40
|
+
table {
|
41
|
+
border-collapse: collapse;
|
42
|
+
border-spacing: 0;
|
43
|
+
}
|
@@ -0,0 +1,42 @@
|
|
1
|
+
@import 'bootstrap';
|
2
|
+
@import "font-awesome-sprockets";
|
3
|
+
@import "font-awesome";
|
4
|
+
|
5
|
+
html,
|
6
|
+
body {
|
7
|
+
height: 100%;
|
8
|
+
}
|
9
|
+
|
10
|
+
.modal {
|
11
|
+
-webkit-transition: all 0.5s ease;
|
12
|
+
-moz-transition: all 0.5s ease;
|
13
|
+
-o-transition: all 0.5s ease;
|
14
|
+
transition: all 0.5s ease;
|
15
|
+
}
|
16
|
+
|
17
|
+
div.muted {
|
18
|
+
opacity: 0.5;
|
19
|
+
}
|
20
|
+
|
21
|
+
.navbar-transparent {
|
22
|
+
// @extend .navbar-default;
|
23
|
+
background-color: transparent;
|
24
|
+
border-color: transparent;
|
25
|
+
}
|
26
|
+
|
27
|
+
.overlay {
|
28
|
+
width: 100%;
|
29
|
+
height: 100%;
|
30
|
+
position: absolute;
|
31
|
+
|
32
|
+
@for $i from 1 through 99 {
|
33
|
+
&.white-#{$i} {
|
34
|
+
background-color: #FFF;
|
35
|
+
opacity: $i / 100;
|
36
|
+
}
|
37
|
+
&.black-#{$i} {
|
38
|
+
background-color: #000;
|
39
|
+
opacity: $i / 100;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
@@ -0,0 +1,128 @@
|
|
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
|
+
margin-bottom: 60px;
|
36
|
+
}
|
37
|
+
/* Since positioning the image, we need to help out the caption */
|
38
|
+
.carousel-caption {
|
39
|
+
z-index: 10;
|
40
|
+
}
|
41
|
+
|
42
|
+
/* Declare heights because of positioning of img element */
|
43
|
+
.carousel .item {
|
44
|
+
height: 500px;
|
45
|
+
background-color: #777;
|
46
|
+
}
|
47
|
+
.carousel-inner > .item > img {
|
48
|
+
position: absolute;
|
49
|
+
top: 0;
|
50
|
+
left: 0;
|
51
|
+
min-width: 100%;
|
52
|
+
height: 500px;
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
/* MARKETING CONTENT
|
57
|
+
-------------------------------------------------- */
|
58
|
+
|
59
|
+
/* Center align the text within the three columns below the carousel */
|
60
|
+
.marketing .col-lg-4 {
|
61
|
+
margin-bottom: 20px;
|
62
|
+
text-align: center;
|
63
|
+
}
|
64
|
+
.marketing h2 {
|
65
|
+
font-weight: normal;
|
66
|
+
}
|
67
|
+
.marketing .col-lg-4 p {
|
68
|
+
margin-right: 10px;
|
69
|
+
margin-left: 10px;
|
70
|
+
}
|
71
|
+
|
72
|
+
|
73
|
+
/* Featurettes
|
74
|
+
------------------------- */
|
75
|
+
|
76
|
+
.featurette-divider {
|
77
|
+
margin: 80px 0; /* Space out the Bootstrap <hr> more */
|
78
|
+
}
|
79
|
+
|
80
|
+
/* Thin out the marketing headings */
|
81
|
+
.featurette-heading {
|
82
|
+
font-weight: 300;
|
83
|
+
line-height: 1;
|
84
|
+
letter-spacing: -1px;
|
85
|
+
}
|
86
|
+
|
87
|
+
|
88
|
+
/* RESPONSIVE CSS
|
89
|
+
-------------------------------------------------- */
|
90
|
+
|
91
|
+
@media (min-width: 768px) {
|
92
|
+
/* Navbar positioning foo */
|
93
|
+
.navbar-wrapper {
|
94
|
+
margin-top: 20px;
|
95
|
+
}
|
96
|
+
.navbar-wrapper .container {
|
97
|
+
padding-right: 15px;
|
98
|
+
padding-left: 15px;
|
99
|
+
}
|
100
|
+
.navbar-wrapper .navbar {
|
101
|
+
padding-right: 0;
|
102
|
+
padding-left: 0;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* The navbar becomes detached from the top, so we round the corners */
|
106
|
+
.navbar-wrapper .navbar {
|
107
|
+
border-radius: 4px;
|
108
|
+
}
|
109
|
+
|
110
|
+
/* Bump up size of carousel content */
|
111
|
+
.carousel-caption p {
|
112
|
+
margin-bottom: 20px;
|
113
|
+
font-size: 21px;
|
114
|
+
line-height: 1.4;
|
115
|
+
}
|
116
|
+
|
117
|
+
.featurette-heading {
|
118
|
+
font-size: 50px;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
|
122
|
+
@media (min-width: 992px) {
|
123
|
+
.featurette-heading {
|
124
|
+
margin-top: 120px;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
}
|