minimum_viable_product 0.3.2 → 0.3.3

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: e424d52b50686dffa2172de0649905f318c8ed6d
4
- data.tar.gz: a4179b03c4f9b2447e2a8a718d30170eecfae574
3
+ metadata.gz: e4630067a1a1ad83ac415eee7cb78a8bc708af43
4
+ data.tar.gz: 715af4d412e09b4074a697542f845d1167c0f6b3
5
5
  SHA512:
6
- metadata.gz: 4bdc44515ea28e2127e33f56fecb856947e4081f6ef25039b569cbde84f6dad245fab68bc0064d012c8e3ff53a8e75d8e366682747050bb200bb01ed25059e7a
7
- data.tar.gz: 76d8fe73dff74fbeca385b58f12aef3bd1e19a98a1e1a22cee338256b9ada46d5a9e7ed8dde43982dbef597eb959b35e21adf583aaa450a104582d21cc4098ab
6
+ metadata.gz: 223b82da2368fe40a8d4d558a2334e6d6f8de2a35611cbe672a02931a95b43aad128c8f213939d6d1b6fc89fae451114e8c0b5e4e77b50780b6da55022df2213
7
+ data.tar.gz: fc5b103e2c27fb91aafa4f9a201293c6629d14d53510649c4fa52d63ed2e286d6b5e922db05a7112826133fece89966f6e1334ddacc173136c19ae14235ca694
@@ -0,0 +1 @@
1
+ console.log("MVP Loaded")
File without changes
@@ -3,13 +3,13 @@
3
3
  <head>
4
4
  <%= render('layouts/minimum_viable_product/meta').gsub(/\n/,'').html_safe %>
5
5
 
6
- <%= stylesheet_link_tag '/assets/stylesheets/application', media: 'all', 'data-turbolinks-track' => true %>
6
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
7
7
  <%= yield :stylesheets %>
8
8
 
9
9
  <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
10
10
  <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]-->
11
11
 
12
- <%= javascript_include_tag '/assets/javascripts/application', 'data-turbolinks-track' => true %>
12
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
13
13
  <%= yield :javascripts %>
14
14
  <%= csrf_meta_tags %>
15
15
 
@@ -1,3 +1,2 @@
1
1
  Rails.application.config.assets.paths << Rails.root.join('node_modules')
2
- # Rails.application.config.browserify_rails.paths << Rails.root.join('node_modules')
3
- # Rails.application.config.browserify_rails.paths << MinimumViableProduct::Engine.root.join('app')
2
+ Rails.application.config.assets.paths << MinimumViableProduct::Engine.root.join('app')
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.3.2"
2
+ VERSION = "0.3.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimum_viable_product
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter
@@ -52,34 +52,6 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: client_side_validations
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: client_side_validations-simple_form
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
55
  - !ruby/object:Gem::Dependency
84
56
  name: cloudinary
85
57
  requirement: !ruby/object:Gem::Requirement
@@ -412,6 +384,8 @@ extra_rdoc_files: []
412
384
  files:
413
385
  - MIT-LICENSE
414
386
  - Rakefile
387
+ - app/assets/javascripts/mvp/application.js
388
+ - app/assets/stylesheets/mvp/application.scss
415
389
  - app/controllers/concerns/minimum_viable_product/analytics_concern.rb
416
390
  - app/controllers/concerns/minimum_viable_product/seo_concern.rb
417
391
  - app/controllers/concerns/minimum_viable_product/session_concern.rb
@@ -467,11 +441,6 @@ files:
467
441
  - lib/tasks/sitemap.rake
468
442
  - test/dummy/README.rdoc
469
443
  - test/dummy/Rakefile
470
- - test/dummy/app/assets/images/gardenwork.jpg
471
- - test/dummy/app/assets/javascripts/application.js
472
- - test/dummy/app/assets/javascripts/home.js
473
- - test/dummy/app/assets/stylesheets/application.scss
474
- - test/dummy/app/assets/stylesheets/home.scss
475
444
  - test/dummy/app/controllers/application_controller.rb
476
445
  - test/dummy/app/controllers/home_controller.rb
477
446
  - test/dummy/app/helpers/application_helper.rb
@@ -1025,11 +994,6 @@ signing_key:
1025
994
  specification_version: 4
1026
995
  summary: The start-to-finish 3 minute product platform
1027
996
  test_files:
1028
- - test/dummy/app/assets/images/gardenwork.jpg
1029
- - test/dummy/app/assets/javascripts/application.js
1030
- - test/dummy/app/assets/javascripts/home.js
1031
- - test/dummy/app/assets/stylesheets/application.scss
1032
- - test/dummy/app/assets/stylesheets/home.scss
1033
997
  - test/dummy/app/controllers/application_controller.rb
1034
998
  - test/dummy/app/controllers/home_controller.rb
1035
999
  - test/dummy/app/helpers/application_helper.rb
@@ -1,5 +0,0 @@
1
- //= require mvp/application
2
- //
3
- //= require_self
4
-
5
- var _ = require('lodash')
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,3 +0,0 @@
1
- /*
2
- *= require mvp/application
3
- */
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the home controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/