minimum_viable_product 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9544eab0a07ef610a71151cfc9090f503a11d089
4
- data.tar.gz: 4b289ccb9ac854883d336cdb14e3d1b18350f7b4
3
+ metadata.gz: 2fee2931d513ea6a53859f95ed87f8da4a9f7fb2
4
+ data.tar.gz: 24db5cec8f495ebf57157bf01bc50e291dff432e
5
5
  SHA512:
6
- metadata.gz: 6c1cb792fbcb3b28a5fbf74d19a21d87b7bddcbd8cf067d27e12f857ea1634bfb3ecac606af7c36d36812d7b060b4106223fd98ea649d3364c5a7be4afffcc41
7
- data.tar.gz: 7b76ed47513e5cc1385c7cb8501ac2495fad26d0742adcac60f12c52854b1867c180ee77b804342c1735294755c6d84ff53d994abe2d35a5e8dbc1d200fc2388
6
+ metadata.gz: ec2916290cb459db9139f5178d8f95f1c94ae4d53719b566a044666d79a9a96a4d234fff4311d487ad3cdd919e04e4ad74d900f2d4789f0ad61598a74da648dd
7
+ data.tar.gz: 2b3870678adb1e4d959794167f99f0d5672286403221386be551c64fe3897de6705f569876cfd43ab03d194ea243ed66d6eb0ebf8a65b14db66f417fae2ed957
@@ -7,7 +7,7 @@
7
7
  //= require rails.validations
8
8
  //= require rails.validations.simple_form
9
9
  //
10
- //= require_tree ./init
10
+ //= require_tree ./mvp/init
11
11
  //
12
12
  //= require_self
13
13
 
@@ -0,0 +1,10 @@
1
+ /*
2
+ *= require_self
3
+ */
4
+
5
+ @import './mvp/init/_reset';
6
+
7
+ @import './mvp/components/spacing';
8
+ @import './mvp/components/typography';
9
+
10
+ @import './mvp/bootstrap';
@@ -0,0 +1,7 @@
1
+ /*
2
+ *= require_tree ./mvp/init
3
+ *= require_tree ./mvp/components
4
+ *= require ./mvp/bootstrap
5
+ *
6
+ *= require_self
7
+ */
@@ -1,4 +1,4 @@
1
- @import 'bootstrap';
1
+ @import '_bootstrap';
2
2
  @import "font-awesome-sprockets";
3
3
  @import "font-awesome";
4
4
 
@@ -2,22 +2,6 @@
2
2
  color: #FFF;
3
3
  }
4
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
5
  .text-black {
22
6
  color: #000;
23
7
  }
@@ -1,3 +1,3 @@
1
1
  module MinimumViableProduct
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -1,4 +1,4 @@
1
- //= require minimum_viable_product/application
1
+ //= require mvp/application
2
2
  //
3
3
  //= require_self
4
4
 
@@ -1,6 +1,3 @@
1
1
  /*
2
- *= require minimum_viable_product/application
2
+ *= require mvp/application
3
3
  */
4
-
5
- $modal-backdrop-bg: #FFF;
6
- $modal-backdrop-opacity: 0.8;
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.1.2
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ian Hunter
@@ -426,16 +426,17 @@ extra_rdoc_files: []
426
426
  files:
427
427
  - MIT-LICENSE
428
428
  - Rakefile
429
- - app/assets/javascripts/minimum_viable_product/application.js.erb
430
- - app/assets/javascripts/minimum_viable_product/init/controllers.js
431
- - app/assets/javascripts/minimum_viable_product/init/forms.js
432
- - app/assets/javascripts/minimum_viable_product/init/modals.js
433
- - app/assets/stylesheets/minimum_viable_product/application.scss
434
- - app/assets/stylesheets/minimum_viable_product/components/fonts.scss
435
- - app/assets/stylesheets/minimum_viable_product/components/spacing.scss
436
- - app/assets/stylesheets/minimum_viable_product/components/typography.scss
437
- - app/assets/stylesheets/minimum_viable_product/init/_reset.scss
438
- - app/assets/stylesheets/minimum_viable_product/init/layout.scss
429
+ - app/assets/javascripts/mvp.js.erb
430
+ - app/assets/javascripts/mvp/application.js
431
+ - app/assets/javascripts/mvp/init/controllers.js
432
+ - app/assets/javascripts/mvp/init/forms.js
433
+ - app/assets/javascripts/mvp/init/modals.js
434
+ - app/assets/stylesheets/mvp.scss
435
+ - app/assets/stylesheets/mvp/application.scss
436
+ - app/assets/stylesheets/mvp/bootstrap.scss
437
+ - app/assets/stylesheets/mvp/components/spacing.scss
438
+ - app/assets/stylesheets/mvp/components/typography.scss
439
+ - app/assets/stylesheets/mvp/init/_reset.scss
439
440
  - app/controllers/concerns/minimum_viable_product/analytics_concern.rb
440
441
  - app/controllers/concerns/minimum_viable_product/seo_concern.rb
441
442
  - app/controllers/concerns/minimum_viable_product/session_concern.rb
@@ -1,23 +0,0 @@
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 ./components
15
- *
16
- *= require_self
17
- */
18
-
19
- @import 'brandbuttons/src/brand-buttons.scss';
20
- @import 'brandbuttons/src/brand-buttons-inversed.scss';
21
-
22
- $modal-backdrop-bg: #FFF;
23
- $modal-backdrop-opacity: 0.8;
@@ -1,15 +0,0 @@
1
- .font-slabo {
2
- font-family: 'Slabo 27px', serif;
3
- }
4
-
5
- .font-serif {
6
- font-family: 'Roboto Slab', serif;
7
- }
8
-
9
- .font-sans-serif {
10
-
11
- }
12
-
13
- .font-cursive {
14
- font-family: 'Pacifico', cursive;
15
- }