mvpkit 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +30 -0
- data/Gemfile.lock +329 -0
- data/LICENSE.txt +20 -0
- data/MIT-LICENSE +20 -0
- data/README.md +134 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/app/assets/javascripts/mvp/application.js +1 -0
- data/app/assets/stylesheets/mvp/application.scss +0 -0
- data/app/controllers/concerns/mvp/analytics_concern.rb +78 -0
- data/app/controllers/concerns/mvp/seo_concern.rb +25 -0
- data/app/controllers/concerns/mvp/session_concern.rb +44 -0
- data/app/controllers/mvp/analytics_controller.rb +12 -0
- data/app/controllers/mvp/seo_controller.rb +11 -0
- data/app/controllers/mvp/styleguide_controller.rb +23 -0
- data/app/helpers/minimum_viable_product/body_helper.rb +14 -0
- data/app/helpers/minimum_viable_product/bootstrap_helper.rb +38 -0
- data/app/helpers/minimum_viable_product/styleguide_helper.rb +4 -0
- data/app/models/concerns/mvp/slugification.rb +24 -0
- data/app/views/layouts/minimum_viable_product/_instrumentation.html.erb +100 -0
- data/app/views/layouts/minimum_viable_product/_meta.html.erb +37 -0
- data/app/views/layouts/minimum_viable_product/application.html.erb +19 -0
- data/app/views/minimum_viable_product/styleguide/_example.html.erb +6 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_buttons.html.erb +191 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_forms.html.erb +192 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_header.html.erb +48 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_panels.html.erb +16 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_tables.html.erb +34 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap/_typography.html.erb +51 -0
- data/app/views/minimum_viable_product/styleguide/bootstrap.html.erb +43 -0
- data/app/views/minimum_viable_product/styleguide/elements/_grouping.html.erb +1 -0
- data/app/views/minimum_viable_product/styleguide/elements/partials/_row_groups_of.html.erb +7 -0
- data/app/views/minimum_viable_product/styleguide/index.html.erb +17 -0
- data/app/views/minimum_viable_product/styleguide/layouts/basic.html.erb +4 -0
- data/app/views/minimum_viable_product/styleguide/layouts/carousel.html.erb +120 -0
- data/app/views/minimum_viable_product/styleguide/layouts/cover.html.erb +34 -0
- data/assets/js/application.js +31 -0
- data/assets/js/init/controllers.js +26 -0
- data/assets/js/init/forms.js +12 -0
- data/bin/mvp +78 -0
- data/bin/rails +12 -0
- data/config/initializers/assets.rb +2 -0
- data/config/initializers/canonical_host.rb +3 -0
- data/config/initializers/cloudinary.rb +7 -0
- data/config/initializers/geocoder.rb +9 -0
- data/config/initializers/iteration.rb +33 -0
- data/config/initializers/project.rb +1 -0
- data/config/initializers/rollbar.rb +59 -0
- data/config/initializers/routing.rb +7 -0
- data/config/initializers/spoof_ip.rb +33 -0
- data/config/initializers/ssl.rb +14 -0
- data/config/routes.rb +6 -0
- data/lib/mvp/engine.rb +22 -0
- data/lib/mvp/ext/nil.rb +5 -0
- data/lib/mvp/ext/string.rb +7 -0
- data/lib/mvpkit.rb +6 -0
- data/lib/tasks/sitemap.rake +42 -0
- data/mvpkit.gemspec +245 -0
- data/package.json +43 -0
- data/project/.gitignore +45 -0
- data/project/Gemfile +33 -0
- data/project/Gemfile.lock +437 -0
- data/project/Procfile +2 -0
- data/project/README.md +117 -0
- data/project/Rakefile +14 -0
- data/project/app/controllers/application_controller.rb +12 -0
- data/project/app/controllers/conversions_controller.rb +24 -0
- data/project/app/controllers/examples_controller.rb +2 -0
- data/project/app/controllers/home_controller.rb +7 -0
- data/project/app/decorators/.keep +0 -0
- data/project/app/helpers/application_helper.rb +24 -0
- data/project/app/mailers/.keep +0 -0
- data/project/app/models/conversion.rb +4 -0
- data/project/app/views/examples/index.html.erb +1 -0
- data/project/app/views/examples/mustache/template.mustache +1 -0
- data/project/app/views/examples/mustache.html.erb +18 -0
- data/project/app/views/home/conversion.html.erb +12 -0
- data/project/app/views/home/index.html.erb +28 -0
- data/project/app/views/layouts/_header.html.erb +16 -0
- data/project/app/views/layouts/_includes.html.erb +7 -0
- data/project/app/views/layouts/application.html.erb +17 -0
- data/project/app/views/layouts/modal.html.erb +14 -0
- data/project/assets/images/.keep +0 -0
- data/project/assets/images/favicon.ico +0 -0
- data/project/assets/javascripts/controllers/home.coffee +15 -0
- data/project/assets/javascripts/pack.js +9 -0
- data/project/assets/stylesheets/config/variables.scss +876 -0
- data/project/assets/stylesheets/layout/basic.scss +6 -0
- data/project/assets/stylesheets/layout/carousel.scss +127 -0
- data/project/assets/stylesheets/layout/cover.scss +129 -0
- data/project/assets/stylesheets/lib/spacing.scss +55 -0
- data/project/assets/stylesheets/skin/style.scss +16 -0
- data/project/assets/stylesheets/style.scss +8 -0
- data/project/bin/bundle +3 -0
- data/project/bin/rails +9 -0
- data/project/bin/rake +9 -0
- data/project/bin/setup +32 -0
- data/project/bin/spring +15 -0
- data/project/config/application.rb +32 -0
- data/project/config/boot.rb +3 -0
- data/project/config/database.yml +19 -0
- data/project/config/environment.rb +5 -0
- data/project/config/environments/development.rb +67 -0
- data/project/config/environments/production.rb +93 -0
- data/project/config/environments/test.rb +42 -0
- data/project/config/initializers/assets.rb +11 -0
- data/project/config/initializers/backtrace_silencers.rb +7 -0
- data/project/config/initializers/cookies_serializer.rb +3 -0
- data/project/config/initializers/filter_parameter_logging.rb +4 -0
- data/project/config/initializers/inflections.rb +16 -0
- data/project/config/initializers/mime_types.rb +4 -0
- data/project/config/initializers/mustache.rb +7 -0
- data/project/config/initializers/rails_admin.rb +43 -0
- data/project/config/initializers/session_store.rb +3 -0
- data/project/config/initializers/simple_form.rb +177 -0
- data/project/config/initializers/wrap_parameters.rb +14 -0
- data/project/config/locales/en.yml +23 -0
- data/project/config/locales/simple_form.en.yml +31 -0
- data/project/config/routes.rb +13 -0
- data/project/config/secrets.yml +8 -0
- data/project/config/sitemap.rb +28 -0
- data/project/config.ru +4 -0
- data/project/db/migrate/20160728235100_create_conversions.rb +9 -0
- data/project/db/schema.rb +25 -0
- data/project/db/seeds.rb +7 -0
- data/project/lib/assets/.keep +0 -0
- data/project/lib/tasks/heroku.rake +70 -0
- data/project/log/.keep +0 -0
- data/project/log/development.log +48216 -0
- data/project/log/production.log +0 -0
- data/project/package.json +44 -0
- data/project/public/404.html +67 -0
- data/project/public/422.html +67 -0
- data/project/public/500.html +66 -0
- data/project/public/assets/javascripts/448c34a56d699c29117adc64c43affeb.woff2 +0 -0
- data/project/public/assets/javascripts/89889688147bd7575d6327160d64e760.svg +288 -0
- data/project/public/assets/javascripts/e18bbf611f2a2e43afc071aa2f4e1512.ttf +0 -0
- data/project/public/assets/javascripts/f4769f9bdb7466be65088239c12046d1.eot +0 -0
- data/project/public/assets/javascripts/fa2772327f55d8198301fdb8bcfc8158.woff +0 -0
- data/project/public/assets/javascripts/pack.js +31367 -0
- data/project/public/assets/javascripts/pack.js.map +1 -0
- data/project/public/assets/pack.js +17220 -0
- data/project/public/assets/style.css +7477 -0
- data/project/vendor/assets/javascripts/.keep +0 -0
- data/project/vendor/assets/stylesheets/.keep +0 -0
- data/project/webpack.config.js +67 -0
- data/test/helper.rb +34 -0
- data/test/test_minimum_viable_product.rb +7 -0
- metadata +473 -0
File without changes
|
File without changes
|
@@ -0,0 +1,67 @@
|
|
1
|
+
const path = require('path');
|
2
|
+
const webpack = require("webpack");
|
3
|
+
const ExtractTextPlugin = require("extract-text-webpack-plugin");
|
4
|
+
|
5
|
+
module.exports = {
|
6
|
+
entry: [
|
7
|
+
'./assets/javascripts/pack.js',
|
8
|
+
'./assets/stylesheets/style.scss',
|
9
|
+
],
|
10
|
+
output: {
|
11
|
+
path: path.join(__dirname, 'public', 'assets'),
|
12
|
+
filename: 'pack.js',
|
13
|
+
publicPath: '/assets',
|
14
|
+
},
|
15
|
+
plugins: [new webpack.ProvidePlugin({ $: "jquery", jQuery: "jquery" })],
|
16
|
+
module: {
|
17
|
+
loaders: [
|
18
|
+
{
|
19
|
+
test: /\.(js|jsx)$/,
|
20
|
+
include: path.join(__dirname, '/app'),
|
21
|
+
exclude: path.join(__dirname, '/node_modules'),
|
22
|
+
loader: 'babel-loader',
|
23
|
+
query: {
|
24
|
+
presets: ['es2015', 'react'],
|
25
|
+
plugins: ["transform-object-rest-spread"]
|
26
|
+
}
|
27
|
+
},
|
28
|
+
{
|
29
|
+
test: /\.(html|mustache)$/,
|
30
|
+
loader: 'mustache'
|
31
|
+
// loader: 'mustache?minify'
|
32
|
+
// loader: 'mustache?{ minify: { removeComments: false } }'
|
33
|
+
// loader: 'mustache?noShortcut'
|
34
|
+
},
|
35
|
+
{
|
36
|
+
test: /\.(eot|svg|ttf|woff(2)?)(\?v=\d+\.\d+\.\d+)?/,
|
37
|
+
loader: 'url',
|
38
|
+
},
|
39
|
+
{
|
40
|
+
test: /\.coffee$/,
|
41
|
+
loader: "coffee-loader"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
test: /\.(coffee\.md|litcoffee)$/,
|
45
|
+
loader: "coffee-loader?literate"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
test: /\.(css|scss|sass)$/,
|
49
|
+
loader: ExtractTextPlugin.extract('css!sass?indentedSyntax=true&sourceMap=true')
|
50
|
+
}]
|
51
|
+
},
|
52
|
+
resolve: {
|
53
|
+
root: path.resolve('./assets'),
|
54
|
+
// tell webpack which extensions to auto search when it resolves modules. With this,
|
55
|
+
// you'll be able to do `require('./utils')` instead of `require('./utils.js')`
|
56
|
+
extensions: ['', '.js'],
|
57
|
+
// by default, webpack will search in `web_modules` and `node_modules`. Because we're using
|
58
|
+
// Bower, we want it to look in there too
|
59
|
+
// modulesDirectories: [ 'node_modules' ],
|
60
|
+
},
|
61
|
+
sassLoader: {
|
62
|
+
includePaths: [path.resolve(__dirname, "./node_modules")]
|
63
|
+
},
|
64
|
+
plugins: [
|
65
|
+
new ExtractTextPlugin('style.css')
|
66
|
+
]
|
67
|
+
};
|
data/test/helper.rb
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
require 'simplecov'
|
2
|
+
|
3
|
+
module SimpleCov::Configuration
|
4
|
+
def clean_filters
|
5
|
+
@filters = []
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
SimpleCov.configure do
|
10
|
+
clean_filters
|
11
|
+
load_adapter 'test_frameworks'
|
12
|
+
end
|
13
|
+
|
14
|
+
ENV["COVERAGE"] && SimpleCov.start do
|
15
|
+
add_filter "/.rvm/"
|
16
|
+
end
|
17
|
+
require 'rubygems'
|
18
|
+
require 'bundler'
|
19
|
+
begin
|
20
|
+
Bundler.setup(:default, :development)
|
21
|
+
rescue Bundler::BundlerError => e
|
22
|
+
$stderr.puts e.message
|
23
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
24
|
+
exit e.status_code
|
25
|
+
end
|
26
|
+
require 'test/unit'
|
27
|
+
require 'shoulda'
|
28
|
+
|
29
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
30
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
31
|
+
require 'minimum_viable_product'
|
32
|
+
|
33
|
+
class Test::Unit::TestCase
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,473 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mvpkit
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ian Hunter
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-03-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: carrierwave
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: cloudinary
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: geocoder
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: faraday
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: fog
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: fog-aws
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: hashie
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - ">="
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rack-canonical-host
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rack-ssl-enforcer
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ">="
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '0'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rollbar
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - ">="
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: sass-rails
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '5.0'
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '5.0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: sitemap_generator
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - ">="
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - ">="
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: slack-notifier
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - ">="
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '0'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - ">="
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: byebug
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :development
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
209
|
+
- !ruby/object:Gem::Dependency
|
210
|
+
name: better_errors
|
211
|
+
requirement: !ruby/object:Gem::Requirement
|
212
|
+
requirements:
|
213
|
+
- - ">="
|
214
|
+
- !ruby/object:Gem::Version
|
215
|
+
version: '0'
|
216
|
+
type: :development
|
217
|
+
prerelease: false
|
218
|
+
version_requirements: !ruby/object:Gem::Requirement
|
219
|
+
requirements:
|
220
|
+
- - ">="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
version: '0'
|
223
|
+
- !ruby/object:Gem::Dependency
|
224
|
+
name: binding_of_caller
|
225
|
+
requirement: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '0'
|
230
|
+
type: :development
|
231
|
+
prerelease: false
|
232
|
+
version_requirements: !ruby/object:Gem::Requirement
|
233
|
+
requirements:
|
234
|
+
- - ">="
|
235
|
+
- !ruby/object:Gem::Version
|
236
|
+
version: '0'
|
237
|
+
- !ruby/object:Gem::Dependency
|
238
|
+
name: bullet
|
239
|
+
requirement: !ruby/object:Gem::Requirement
|
240
|
+
requirements:
|
241
|
+
- - ">="
|
242
|
+
- !ruby/object:Gem::Version
|
243
|
+
version: '0'
|
244
|
+
type: :development
|
245
|
+
prerelease: false
|
246
|
+
version_requirements: !ruby/object:Gem::Requirement
|
247
|
+
requirements:
|
248
|
+
- - ">="
|
249
|
+
- !ruby/object:Gem::Version
|
250
|
+
version: '0'
|
251
|
+
- !ruby/object:Gem::Dependency
|
252
|
+
name: semantic
|
253
|
+
requirement: !ruby/object:Gem::Requirement
|
254
|
+
requirements:
|
255
|
+
- - ">="
|
256
|
+
- !ruby/object:Gem::Version
|
257
|
+
version: '0'
|
258
|
+
type: :development
|
259
|
+
prerelease: false
|
260
|
+
version_requirements: !ruby/object:Gem::Requirement
|
261
|
+
requirements:
|
262
|
+
- - ">="
|
263
|
+
- !ruby/object:Gem::Version
|
264
|
+
version: '0'
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: web-console
|
267
|
+
requirement: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - "~>"
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '2.0'
|
272
|
+
type: :development
|
273
|
+
prerelease: false
|
274
|
+
version_requirements: !ruby/object:Gem::Requirement
|
275
|
+
requirements:
|
276
|
+
- - "~>"
|
277
|
+
- !ruby/object:Gem::Version
|
278
|
+
version: '2.0'
|
279
|
+
- !ruby/object:Gem::Dependency
|
280
|
+
name: jeweler
|
281
|
+
requirement: !ruby/object:Gem::Requirement
|
282
|
+
requirements:
|
283
|
+
- - "~>"
|
284
|
+
- !ruby/object:Gem::Version
|
285
|
+
version: 2.3.2
|
286
|
+
type: :development
|
287
|
+
prerelease: false
|
288
|
+
version_requirements: !ruby/object:Gem::Requirement
|
289
|
+
requirements:
|
290
|
+
- - "~>"
|
291
|
+
- !ruby/object:Gem::Version
|
292
|
+
version: 2.3.2
|
293
|
+
description: Built for Developers. Ideal for MVPs, product ideation and validation.
|
294
|
+
email: ianhunter@gmail.com
|
295
|
+
executables: []
|
296
|
+
extensions: []
|
297
|
+
extra_rdoc_files:
|
298
|
+
- LICENSE.txt
|
299
|
+
- README.md
|
300
|
+
files:
|
301
|
+
- Gemfile
|
302
|
+
- Gemfile.lock
|
303
|
+
- LICENSE.txt
|
304
|
+
- MIT-LICENSE
|
305
|
+
- README.md
|
306
|
+
- Rakefile
|
307
|
+
- VERSION
|
308
|
+
- app/assets/javascripts/mvp/application.js
|
309
|
+
- app/assets/stylesheets/mvp/application.scss
|
310
|
+
- app/controllers/concerns/mvp/analytics_concern.rb
|
311
|
+
- app/controllers/concerns/mvp/seo_concern.rb
|
312
|
+
- app/controllers/concerns/mvp/session_concern.rb
|
313
|
+
- app/controllers/mvp/analytics_controller.rb
|
314
|
+
- app/controllers/mvp/seo_controller.rb
|
315
|
+
- app/controllers/mvp/styleguide_controller.rb
|
316
|
+
- app/helpers/minimum_viable_product/body_helper.rb
|
317
|
+
- app/helpers/minimum_viable_product/bootstrap_helper.rb
|
318
|
+
- app/helpers/minimum_viable_product/styleguide_helper.rb
|
319
|
+
- app/models/concerns/mvp/slugification.rb
|
320
|
+
- app/views/layouts/minimum_viable_product/_instrumentation.html.erb
|
321
|
+
- app/views/layouts/minimum_viable_product/_meta.html.erb
|
322
|
+
- app/views/layouts/minimum_viable_product/application.html.erb
|
323
|
+
- app/views/minimum_viable_product/styleguide/_example.html.erb
|
324
|
+
- app/views/minimum_viable_product/styleguide/bootstrap.html.erb
|
325
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_buttons.html.erb
|
326
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_forms.html.erb
|
327
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_header.html.erb
|
328
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_panels.html.erb
|
329
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_tables.html.erb
|
330
|
+
- app/views/minimum_viable_product/styleguide/bootstrap/_typography.html.erb
|
331
|
+
- app/views/minimum_viable_product/styleguide/elements/_grouping.html.erb
|
332
|
+
- app/views/minimum_viable_product/styleguide/elements/partials/_row_groups_of.html.erb
|
333
|
+
- app/views/minimum_viable_product/styleguide/index.html.erb
|
334
|
+
- app/views/minimum_viable_product/styleguide/layouts/basic.html.erb
|
335
|
+
- app/views/minimum_viable_product/styleguide/layouts/carousel.html.erb
|
336
|
+
- app/views/minimum_viable_product/styleguide/layouts/cover.html.erb
|
337
|
+
- assets/js/application.js
|
338
|
+
- assets/js/init/controllers.js
|
339
|
+
- assets/js/init/forms.js
|
340
|
+
- bin/mvp
|
341
|
+
- bin/rails
|
342
|
+
- config/initializers/assets.rb
|
343
|
+
- config/initializers/canonical_host.rb
|
344
|
+
- config/initializers/cloudinary.rb
|
345
|
+
- config/initializers/geocoder.rb
|
346
|
+
- config/initializers/iteration.rb
|
347
|
+
- config/initializers/project.rb
|
348
|
+
- config/initializers/rollbar.rb
|
349
|
+
- config/initializers/routing.rb
|
350
|
+
- config/initializers/spoof_ip.rb
|
351
|
+
- config/initializers/ssl.rb
|
352
|
+
- config/routes.rb
|
353
|
+
- lib/mvp/engine.rb
|
354
|
+
- lib/mvp/ext/nil.rb
|
355
|
+
- lib/mvp/ext/string.rb
|
356
|
+
- lib/mvpkit.rb
|
357
|
+
- lib/tasks/sitemap.rake
|
358
|
+
- mvpkit.gemspec
|
359
|
+
- package.json
|
360
|
+
- project/.gitignore
|
361
|
+
- project/Gemfile
|
362
|
+
- project/Gemfile.lock
|
363
|
+
- project/Procfile
|
364
|
+
- project/README.md
|
365
|
+
- project/Rakefile
|
366
|
+
- project/app/controllers/application_controller.rb
|
367
|
+
- project/app/controllers/conversions_controller.rb
|
368
|
+
- project/app/controllers/examples_controller.rb
|
369
|
+
- project/app/controllers/home_controller.rb
|
370
|
+
- project/app/decorators/.keep
|
371
|
+
- project/app/helpers/application_helper.rb
|
372
|
+
- project/app/mailers/.keep
|
373
|
+
- project/app/models/conversion.rb
|
374
|
+
- project/app/views/examples/index.html.erb
|
375
|
+
- project/app/views/examples/mustache.html.erb
|
376
|
+
- project/app/views/examples/mustache/template.mustache
|
377
|
+
- project/app/views/home/conversion.html.erb
|
378
|
+
- project/app/views/home/index.html.erb
|
379
|
+
- project/app/views/layouts/_header.html.erb
|
380
|
+
- project/app/views/layouts/_includes.html.erb
|
381
|
+
- project/app/views/layouts/application.html.erb
|
382
|
+
- project/app/views/layouts/modal.html.erb
|
383
|
+
- project/assets/images/.keep
|
384
|
+
- project/assets/images/favicon.ico
|
385
|
+
- project/assets/javascripts/controllers/home.coffee
|
386
|
+
- project/assets/javascripts/pack.js
|
387
|
+
- project/assets/stylesheets/config/variables.scss
|
388
|
+
- project/assets/stylesheets/layout/basic.scss
|
389
|
+
- project/assets/stylesheets/layout/carousel.scss
|
390
|
+
- project/assets/stylesheets/layout/cover.scss
|
391
|
+
- project/assets/stylesheets/lib/spacing.scss
|
392
|
+
- project/assets/stylesheets/skin/style.scss
|
393
|
+
- project/assets/stylesheets/style.scss
|
394
|
+
- project/bin/bundle
|
395
|
+
- project/bin/rails
|
396
|
+
- project/bin/rake
|
397
|
+
- project/bin/setup
|
398
|
+
- project/bin/spring
|
399
|
+
- project/config.ru
|
400
|
+
- project/config/application.rb
|
401
|
+
- project/config/boot.rb
|
402
|
+
- project/config/database.yml
|
403
|
+
- project/config/environment.rb
|
404
|
+
- project/config/environments/development.rb
|
405
|
+
- project/config/environments/production.rb
|
406
|
+
- project/config/environments/test.rb
|
407
|
+
- project/config/initializers/assets.rb
|
408
|
+
- project/config/initializers/backtrace_silencers.rb
|
409
|
+
- project/config/initializers/cookies_serializer.rb
|
410
|
+
- project/config/initializers/filter_parameter_logging.rb
|
411
|
+
- project/config/initializers/inflections.rb
|
412
|
+
- project/config/initializers/mime_types.rb
|
413
|
+
- project/config/initializers/mustache.rb
|
414
|
+
- project/config/initializers/rails_admin.rb
|
415
|
+
- project/config/initializers/session_store.rb
|
416
|
+
- project/config/initializers/simple_form.rb
|
417
|
+
- project/config/initializers/wrap_parameters.rb
|
418
|
+
- project/config/locales/en.yml
|
419
|
+
- project/config/locales/simple_form.en.yml
|
420
|
+
- project/config/routes.rb
|
421
|
+
- project/config/secrets.yml
|
422
|
+
- project/config/sitemap.rb
|
423
|
+
- project/db/migrate/20160728235100_create_conversions.rb
|
424
|
+
- project/db/schema.rb
|
425
|
+
- project/db/seeds.rb
|
426
|
+
- project/lib/assets/.keep
|
427
|
+
- project/lib/tasks/heroku.rake
|
428
|
+
- project/log/.keep
|
429
|
+
- project/log/development.log
|
430
|
+
- project/log/production.log
|
431
|
+
- project/package.json
|
432
|
+
- project/public/404.html
|
433
|
+
- project/public/422.html
|
434
|
+
- project/public/500.html
|
435
|
+
- project/public/assets/javascripts/448c34a56d699c29117adc64c43affeb.woff2
|
436
|
+
- project/public/assets/javascripts/89889688147bd7575d6327160d64e760.svg
|
437
|
+
- project/public/assets/javascripts/e18bbf611f2a2e43afc071aa2f4e1512.ttf
|
438
|
+
- project/public/assets/javascripts/f4769f9bdb7466be65088239c12046d1.eot
|
439
|
+
- project/public/assets/javascripts/fa2772327f55d8198301fdb8bcfc8158.woff
|
440
|
+
- project/public/assets/javascripts/pack.js
|
441
|
+
- project/public/assets/javascripts/pack.js.map
|
442
|
+
- project/public/assets/pack.js
|
443
|
+
- project/public/assets/style.css
|
444
|
+
- project/vendor/assets/javascripts/.keep
|
445
|
+
- project/vendor/assets/stylesheets/.keep
|
446
|
+
- project/webpack.config.js
|
447
|
+
- test/helper.rb
|
448
|
+
- test/test_minimum_viable_product.rb
|
449
|
+
homepage: http://github.com/ian/mvp
|
450
|
+
licenses:
|
451
|
+
- MIT
|
452
|
+
metadata: {}
|
453
|
+
post_install_message:
|
454
|
+
rdoc_options: []
|
455
|
+
require_paths:
|
456
|
+
- lib
|
457
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
458
|
+
requirements:
|
459
|
+
- - ">="
|
460
|
+
- !ruby/object:Gem::Version
|
461
|
+
version: '0'
|
462
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
463
|
+
requirements:
|
464
|
+
- - ">="
|
465
|
+
- !ruby/object:Gem::Version
|
466
|
+
version: '0'
|
467
|
+
requirements: []
|
468
|
+
rubyforge_project:
|
469
|
+
rubygems_version: 2.5.1
|
470
|
+
signing_key:
|
471
|
+
specification_version: 4
|
472
|
+
summary: The start-to-finish 3 minute product platform
|
473
|
+
test_files: []
|