typeplate 2.1.0.1 → 2.1.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 +4 -4
- data/README.md +6 -0
- data/app/assets/stylesheets/_typeplate.scss +7 -7
- data/app/assets/stylesheets/{_typeplate-extends.scss → typeplate/_extends.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-fonts.scss → typeplate/_fonts.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-functions.scss → typeplate/_functions.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-helpers.scss → typeplate/_helpers.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-mixins.scss → typeplate/_mixins.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-styles.scss → typeplate/_styles.scss} +0 -0
- data/app/assets/stylesheets/{_typeplate-vars.scss → typeplate/_vars.scss} +0 -0
- data/lib/typeplate/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 22e9d9b0d0771faa0afb6394a0c4f622490dcde0
|
4
|
+
data.tar.gz: 2fb94600f0cf33e475f4d057c75db3b9ec5e5f09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59ee97d318fd1d37c28569a08f461c05863a6ba2d1b1c20986407bb72d7cb854f4b830da671463905be4130a4ff544c985ca78a1b642cfd6974820694d7e619d
|
7
|
+
data.tar.gz: 56552fe0d81952448d35e2be2c25b09e727e9d2a8b832696233711eae5b278996897baa79d4c285b3a43eec92bc78951b6f2b2cb437ae81aa25b7cd140125c88
|
data/README.md
CHANGED
@@ -43,6 +43,12 @@ Or, just the mixins:
|
|
43
43
|
|
44
44
|
@import typeplate/mixins
|
45
45
|
|
46
|
+
For the helpers, you need to also import the vars:
|
47
|
+
|
48
|
+
@import typeplate/vars
|
49
|
+
@import typeplate/mixins
|
50
|
+
@import typeplate/helpers
|
51
|
+
|
46
52
|
For instructions on the basis of this awesome library, please see their
|
47
53
|
[excellent documentation](http://typeplate.com).
|
48
54
|
|
@@ -8,10 +8,10 @@ License ....... Creative Commmons Attribution 3.0
|
|
8
8
|
License URL ... https://github.com/typeplate/starter-kit/blob/master/license.txt
|
9
9
|
*/
|
10
10
|
|
11
|
-
@import "typeplate
|
12
|
-
@import "typeplate
|
13
|
-
@import "typeplate
|
14
|
-
@import "typeplate
|
15
|
-
@import "typeplate
|
16
|
-
@import "typeplate
|
17
|
-
@import "typeplate
|
11
|
+
@import "typeplate/vars";
|
12
|
+
@import "typeplate/fonts";
|
13
|
+
@import "typeplate/functions";
|
14
|
+
@import "typeplate/mixins";
|
15
|
+
@import "typeplate/extends";
|
16
|
+
@import "typeplate/styles";
|
17
|
+
@import "typeplate/helpers";
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/typeplate/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typeplate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.0.
|
4
|
+
version: 2.1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pablo Olmos de Aguilera Corradini
|
@@ -69,14 +69,14 @@ files:
|
|
69
69
|
- LICENSE.MIT
|
70
70
|
- README.md
|
71
71
|
- Rakefile
|
72
|
-
- app/assets/stylesheets/_typeplate-extends.scss
|
73
|
-
- app/assets/stylesheets/_typeplate-fonts.scss
|
74
|
-
- app/assets/stylesheets/_typeplate-functions.scss
|
75
|
-
- app/assets/stylesheets/_typeplate-helpers.scss
|
76
|
-
- app/assets/stylesheets/_typeplate-mixins.scss
|
77
|
-
- app/assets/stylesheets/_typeplate-styles.scss
|
78
|
-
- app/assets/stylesheets/_typeplate-vars.scss
|
79
72
|
- app/assets/stylesheets/_typeplate.scss
|
73
|
+
- app/assets/stylesheets/typeplate/_extends.scss
|
74
|
+
- app/assets/stylesheets/typeplate/_fonts.scss
|
75
|
+
- app/assets/stylesheets/typeplate/_functions.scss
|
76
|
+
- app/assets/stylesheets/typeplate/_helpers.scss
|
77
|
+
- app/assets/stylesheets/typeplate/_mixins.scss
|
78
|
+
- app/assets/stylesheets/typeplate/_styles.scss
|
79
|
+
- app/assets/stylesheets/typeplate/_vars.scss
|
80
80
|
- bin/console
|
81
81
|
- bin/setup
|
82
82
|
- lib/typeplate.rb
|