piecss 0.1.6.5.1 → 0.1.7

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/sass/piecss/settings/_base.scss +159 -159
  3. data/sass/piecss/settings/_breakpoint.scss +21 -21
  4. data/sass/piecss/settings/_button.scss +149 -149
  5. data/sass/piecss/settings/_constants.scss +1 -1
  6. data/sass/piecss/settings/_font.scss +1 -1
  7. data/sass/piecss/settings/_form.scss +332 -332
  8. data/sass/piecss/settings/_grid.scss +123 -123
  9. data/sass/piecss/settings/_list.scss +131 -131
  10. data/sass/piecss/settings/fonts/_roboto-slab.scss +1 -1
  11. data/sass/piecss/settings/fonts/_roboto.scss +1 -1
  12. data/sass/piecss/settings/fonts/_sofia-pro.scss +1 -1
  13. data/sass/piecss/settings/fonts/_varela-round.scss +1 -1
  14. data/sass/piecss/settings/fonts/icon-fonts/_fontawesome.scss +1 -1
  15. data/sass/piecss/settings/fonts/icon-fonts/_foundation-accessability.scss +1 -1
  16. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_bootstrap.scss +1 -1
  17. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_core.scss +1 -1
  18. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_extras.scss +1 -1
  19. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_icons.scss +1 -1
  20. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_mixins.scss +3 -3
  21. data/sass/piecss/settings/fonts/icon-fonts/fontawesome/_path.scss +1 -1
  22. data/sass/piecss/settings/fonts/icon-fonts/foundation-accessability/_settings.scss +2 -2
  23. data/sass/piecss/utilities/_breakpoint.scss +29 -30
  24. data/sass/piecss/utilities/_cache.scss +32 -32
  25. data/sass/piecss/utilities/_element.scss +50 -50
  26. data/sass/piecss/utilities/_image.scss +21 -21
  27. data/sass/piecss/utilities/_layout.scss +115 -115
  28. data/sass/piecss/utilities/_list.scss +10 -10
  29. data/sass/piecss/utilities/_miscellaneous.scss +99 -99
  30. data/sass/piecss/utilities/_rhythm.scss +42 -42
  31. data/sass/piecss/utilities/_side.scss +136 -136
  32. data/sass/piecss/utilities/_typography.scss +129 -132
  33. data/sass/piecss/utilities/_unit.scss +66 -64
  34. data/templates/project/_sets/_button.scss +4 -4
  35. data/templates/project/_sets/_form.scss +4 -4
  36. data/templates/project/_sets.scss +4 -4
  37. data/templates/project/_settings.scss +4 -4
  38. data/templates/project/screen.scss +1 -1
  39. metadata +9 -9
@@ -23,34 +23,34 @@
23
23
  // 1. FUNCTIONS
24
24
 
25
25
 
26
- /**
27
- * Extract the style property from a type array
28
- *
29
- * @since 0.1
30
- *
31
- * @todo parameter should either be a space separated list, or property map
32
- *
33
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
34
- *
35
- * @return {String} - font-type property
36
- */
26
+ ///
27
+ /// Extract the style property from a type array
28
+ ///
29
+ /// @since 0.1
30
+ ///
31
+ /// @todo parameter should either be a space separated list, or property map
32
+ ///
33
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
34
+ ///
35
+ /// @return {String} - font-type property
36
+ ///
37
37
 
38
38
  @function extract-type-style($type) {
39
39
  @return nth($type, 1);
40
40
  }
41
41
 
42
42
 
43
- /**
44
- * Extract the variant property from a type array
45
- *
46
- * @since 0.1
47
- *
48
- * @todo parameter should either be a space separated list, or property map
49
- *
50
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
51
- *
52
- * @return {String} - font-variant property
53
- */
43
+ ///
44
+ /// Extract the variant property from a type array
45
+ ///
46
+ /// @since 0.1
47
+ ///
48
+ /// @todo parameter should either be a space separated list, or property map
49
+ ///
50
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
51
+ ///
52
+ /// @return {String} - font-variant property
53
+ ///
54
54
 
55
55
  @function extract-type-variant($type)
56
56
  {
@@ -58,17 +58,17 @@
58
58
  }
59
59
 
60
60
 
61
- /**
62
- * Extract the weight property from a type array
63
- *
64
- * @since 0.1
65
- *
66
- * @todo parameter should either be a space separated list, or property map
67
- *
68
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
69
- *
70
- * @return {String} - font-weight property
71
- */
61
+ ///
62
+ /// Extract the weight property from a type array
63
+ ///
64
+ /// @since 0.1
65
+ ///
66
+ /// @todo parameter should either be a space separated list, or property map
67
+ ///
68
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
69
+ ///
70
+ /// @return {String} - font-weight property
71
+ ///
72
72
 
73
73
  @function extract-type-weight($type)
74
74
  {
@@ -76,17 +76,17 @@
76
76
  }
77
77
 
78
78
 
79
- /**
80
- * Extract the family property from a type array
81
- *
82
- * @since 0.1
83
- *
84
- * @todo parameter should either be a space separated list, or property map
85
- *
86
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
87
- *
88
- * @return {String} - font-family property
89
- */
79
+ ///
80
+ /// Extract the family property from a type array
81
+ ///
82
+ /// @since 0.1
83
+ ///
84
+ /// @todo parameter should either be a space separated list, or property map
85
+ ///
86
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
87
+ ///
88
+ /// @return {String} - font-family property
89
+ ///
90
90
 
91
91
  @function extract-type-family($type)
92
92
  {
@@ -94,10 +94,10 @@
94
94
  }
95
95
 
96
96
 
97
- /**
98
- * @alias to-unit
99
- * @deprecated
100
- */
97
+ ///
98
+ /// @alias to-unit
99
+ /// @deprecated
100
+ ///
101
101
 
102
102
  @function font-size($target-px, $unit: $unit, $context: $default-font-size)
103
103
  {
@@ -105,17 +105,17 @@
105
105
  }
106
106
 
107
107
 
108
- /**
109
- * Convert a px value to a new unit, within the context of it's containing element
110
- *
111
- * @since 0.1
112
- *
113
- * @param {Number} $target-px - the line-height in px
114
- * @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
115
- * @param {Number} $unit ($line-height-unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1% or 1 for unitless
116
- *
117
- * @return {Number} - line-height in px
118
- */
108
+ ///
109
+ /// Convert a px value to a new unit, within the context of it's containing element
110
+ ///
111
+ /// @since 0.1
112
+ ///
113
+ /// @param {Number} $target-px - the line-height in px
114
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
115
+ /// @param {Number} $unit ($line-height-unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1% or 1 for unitless
116
+ ///
117
+ /// @return {Number} - line-height in px
118
+ ///
119
119
 
120
120
  @function line-height($target-px, $context: $default-font-size, $unit: $line-height-unit)
121
121
  {
@@ -128,17 +128,17 @@
128
128
  }
129
129
 
130
130
 
131
- /**
132
- * Returns the correct typographic weight corresponding to the weight number
133
- *
134
- * @since 0.1
135
- *
136
- * @throws Not a valid weight
137
- *
138
- * @param {Number} $weight (400) - a valid weight number: 100 | ... | 900
139
- *
140
- * @return {String} - weight, defaults to 'regular'
141
- */
131
+ ///
132
+ /// Returns the correct typographic weight corresponding to the weight number
133
+ ///
134
+ /// @since 0.1
135
+ ///
136
+ /// @throws Not a valid weight
137
+ ///
138
+ /// @param {Number} $weight (400) - a valid weight number: 100 | ... | 900
139
+ ///
140
+ /// @return {String} - weight, defaults to 'regular'
141
+ ///
142
142
 
143
143
  @function weight-number-to-string($weight: regular)
144
144
  {
@@ -161,21 +161,18 @@
161
161
  // 2. MIXINS
162
162
 
163
163
 
164
- /**
165
- * Mixes in the shorthand font tag. This is the only mixin that takes the font-size and line-height in their final unit of output.
166
- * More info: [$default-font-size](./#variable-default-font-size), [$default-line-height](./#variable-default-line-height)
167
- *
168
- * @since 0.1
169
- *
170
- * @todo Accept properties in the same way as the default CSS font implementation
171
- *
172
- * @param {List | Bool} $type - a valid type array ($style, $variant, $weight, $family) or false to only output font-size and line-height
173
- * @param {Number} $font-size ($default-font-size) - font-size in the final unit of output
174
- * @param {Number} $line-height ($default-line-height) - line-height in the final unit of output
175
- */
176
-
177
-
178
- // font: font-style font-variant font-weight font-size/line-height font-family;
164
+ ///
165
+ /// Mixes in the shorthand font tag. This is the only mixin that takes the font-size and line-height in their final unit of output.
166
+ /// More info: [$default-font-size](./#variable-default-font-size), [$default-line-height](./#variable-default-line-height)
167
+ ///
168
+ /// @since 0.1
169
+ ///
170
+ /// @todo Accept properties in the same way as the default CSS font implementation
171
+ ///
172
+ /// @param {List | Bool} $type - a valid type array ($style, $variant, $weight, $family) or false to only output font-size and line-height
173
+ /// @param {Number} $font-size ($default-font-size) - font-size in the final unit of output
174
+ /// @param {Number} $line-height ($default-line-height) - line-height in the final unit of output
175
+ ///
179
176
 
180
177
  @mixin font($arguments...)
181
178
  {
@@ -221,13 +218,13 @@
221
218
  }
222
219
 
223
220
 
224
- /**
225
- * Extracts the style from a type array and mixes in font-style
226
- *
227
- * @since 0.1
228
- *
229
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
230
- */
221
+ ///
222
+ /// Extracts the style from a type array and mixes in font-style
223
+ ///
224
+ /// @since 0.1
225
+ ///
226
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
227
+ ///
231
228
 
232
229
  @mixin font-style($type)
233
230
  {
@@ -235,13 +232,13 @@
235
232
  }
236
233
 
237
234
 
238
- /**
239
- * Extracts the variant from a type array and mixes in font-variant
240
- *
241
- * @since 0.1
242
- *
243
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
244
- */
235
+ ///
236
+ /// Extracts the variant from a type array and mixes in font-variant
237
+ ///
238
+ /// @since 0.1
239
+ ///
240
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
241
+ ///
245
242
 
246
243
  @mixin font-variant($type)
247
244
  {
@@ -249,13 +246,13 @@
249
246
  }
250
247
 
251
248
 
252
- /**
253
- * Extracts the weight from a type array and mixes in font-weight
254
- *
255
- * @since 0.1
256
- *
257
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
258
- */
249
+ ///
250
+ /// Extracts the weight from a type array and mixes in font-weight
251
+ ///
252
+ /// @since 0.1
253
+ ///
254
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
255
+ ///
259
256
 
260
257
  @mixin font-weight($type)
261
258
  {
@@ -263,13 +260,13 @@
263
260
  }
264
261
 
265
262
 
266
- /**
267
- * Extracts the family from a type array and mixes in font-family
268
- *
269
- * @since 0.1
270
- *
271
- * @param {List} $type: a valid type list ($style, $variant, $weight, $family)
272
- */
263
+ ///
264
+ /// Extracts the family from a type array and mixes in font-family
265
+ ///
266
+ /// @since 0.1
267
+ ///
268
+ /// @param {List} $type: a valid type list ($style, $variant, $weight, $family)
269
+ ///
273
270
 
274
271
  @mixin font-family($type)
275
272
  {
@@ -277,15 +274,15 @@
277
274
  }
278
275
 
279
276
 
280
- /**
281
- * Takes a size in px and calculates it back to the final font-unit. Provides fallback if the final output is in rem.
282
- *
283
- * @since 0.1
284
- *
285
- * @param {Number} $target-px - The font-size in px
286
- * @param {Number} $unit ($unit) - The final unit to which $target-px is converted, e.g.px | rem | em | %
287
- * @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em or %
288
- */
277
+ ///
278
+ /// Takes a size in px and calculates it back to the final font-unit. Provides fallback if the final output is in rem.
279
+ ///
280
+ /// @since 0.1
281
+ ///
282
+ /// @param {Number} $target-px - The font-size in px
283
+ /// @param {Number} $unit ($unit) - The final unit to which $target-px is converted, e.g.px | rem | em | %
284
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em or %
285
+ ///
289
286
 
290
287
  @mixin font-size($target-px, $unit: $unit, $context: $default-font-size)
291
288
  {
@@ -295,15 +292,15 @@
295
292
  font-size: to-unit($target-px, $unit, $context);
296
293
  }
297
294
 
298
- /**
299
- * Mixin for line-height, automatically converts the value to a new unit, within the context of it's containing element
300
- *
301
- * @since 0.1
302
- *
303
- * @param {Number} $target-px - the line-height in px
304
- * @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
305
- * @param {Number} $unit ($line-height-unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1% or 1 for unitless
306
- */
295
+ ///
296
+ /// Mixin for line-height, automatically converts the value to a new unit, within the context of it's containing element
297
+ ///
298
+ /// @since 0.1
299
+ ///
300
+ /// @param {Number} $target-px - the line-height in px
301
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
302
+ /// @param {Number} $unit ($line-height-unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1% or 1 for unitless
303
+ ///
307
304
 
308
305
  @mixin line-height($target-px, $context: $default-font-size, $unit: $line-height-unit)
309
306
  {
@@ -311,4 +308,4 @@
311
308
  line-height: line-height($target-px, $context, $unit: $rem-fallback-unit);
312
309
  }
313
310
  line-height: line-height($target-px, $context, $unit);
314
- }
311
+ }
@@ -10,35 +10,37 @@
10
10
 
11
11
  // 1. FUNCTIONS
12
12
 
13
- /**
14
- * Accepts a value and returns it without a value.
15
- * @link http://hugogiraudel.com/2013/08/12/sass-functions/ Courtesy Hugo Giraudel
16
- *
17
- * @since 0.1
18
- *
19
- * @param {Number} $value - A value in any unit (px, rem, em, %, pt)
20
- *
21
- * @return {Number} - The value stripped of its unit
22
- */
13
+
14
+
15
+ ///
16
+ /// Accepts a value and returns it without a value.
17
+ /// @link http://hugogiraudel.com/2013/08/12/sass-functions/ Courtesy Hugo Giraudel
18
+ ///
19
+ /// @since 0.1
20
+ ///
21
+ /// @param {Number} $value - A value in any unit (px, rem, em, %, pt)
22
+ ///
23
+ /// @return {Number} - The value stripped of its unit
24
+ ///
23
25
 
24
26
  @function strip-unit($value) {
25
27
  @return $value / ($value * 0 + 1);
26
28
  }
27
29
 
28
30
 
29
- /**
30
- * Convert a px value to a new unit, within the context of it's containing element
31
- *
32
- * @since 0.1
33
- *
34
- * @throws Argument $number needs to be a number.
35
- *
36
- * @param {Number} $target-px - The final size in px
37
- * @param {Number} $unit ($unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1%
38
- * @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
39
- *
40
- * @return {Number} - The value in the requested unit
41
- */
31
+ ///
32
+ /// Convert a px value to a new unit, within the context of it's containing element
33
+ ///
34
+ /// @since 0.1
35
+ ///
36
+ /// @throws Argument $number needs to be a number.
37
+ ///
38
+ /// @param {Number} $target-px - The final size in px
39
+ /// @param {Number} $unit ($unit) - The final unit to which $target-px is converted, e.g. 1px, 1rem, 1em, 1%
40
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
41
+ ///
42
+ /// @return {Number} - The value in the requested unit
43
+ ///
42
44
 
43
45
  @function to-unit($number, $unit: $unit, $context: $default-font-size) {
44
46
  @if not(type-of($number)==number) {
@@ -72,16 +74,16 @@
72
74
  @return $number;
73
75
  }
74
76
 
75
- /**
76
- * Convert any unit to a px value, within the context of it's containing element
77
- *
78
- * @since 0.1
79
- *
80
- * @param {Number} $value - The value to convert, in any unit
81
- * @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
82
- *
83
- * @return {Number} - The value in px
84
- */
77
+ ///
78
+ /// Convert any unit to a px value, within the context of it's containing element
79
+ ///
80
+ /// @since 0.1
81
+ ///
82
+ /// @param {Number} $value - The value to convert, in any unit
83
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element, for calculations to em
84
+ ///
85
+ /// @return {Number} - The value in px
86
+ ///
85
87
 
86
88
  @function to-px($value, $context: $default-font-size) {
87
89
  @if unit($value)=='px' {
@@ -97,47 +99,47 @@
97
99
 
98
100
  }
99
101
 
100
- /**
101
- * Convert a value in rem to a px value
102
- *
103
- * @since 0.1
104
- *
105
- * @param {Number} $value - The value to convert
106
- *
107
- * @return {Number} - The value in px
108
- */
102
+ ///
103
+ /// Convert a value in rem to a px value
104
+ ///
105
+ /// @since 0.1
106
+ ///
107
+ /// @param {Number} $value - The value to convert
108
+ ///
109
+ /// @return {Number} - The value in px
110
+ ///
109
111
 
110
112
  @function rem-to-px($value) {
111
113
  @return $default-font-size * strip-unit($value);
112
114
  }
113
115
 
114
- /**
115
- * Convert a value in em to a px value
116
- *
117
- * @since 0.1
118
- *
119
- * @param {Number} $value - The value to convert
120
- * @param {Number} $context ($default-font-size) - The context of the targeted element
121
- *
122
- * @return {Number} - The value in px
123
- */
116
+ ///
117
+ /// Convert a value in em to a px value
118
+ ///
119
+ /// @since 0.1
120
+ ///
121
+ /// @param {Number} $value - The value to convert
122
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element
123
+ ///
124
+ /// @return {Number} - The value in px
125
+ ///
124
126
 
125
127
  @function em-to-px($value, $context: $default-font-size) {
126
128
  @return $context * strip-unit($value);
127
129
  }
128
130
 
129
- /**
130
- * Convert a value in em to a px value
131
- *
132
- * @since 0.1
133
- *
134
- * @todo Needs to take into account the context
135
- *
136
- * @param {Number} $value - The value to convert
137
- * @param {Number} $context ($default-font-size) - The context of the targeted element
138
- *
139
- * @return {Number} - The value in px
140
- */
131
+ ///
132
+ /// Convert a value in em to a px value
133
+ ///
134
+ /// @since 0.1
135
+ ///
136
+ /// @todo Needs to take into account the context
137
+ ///
138
+ /// @param {Number} $value - The value to convert
139
+ /// @param {Number} $context ($default-font-size) - The context of the targeted element
140
+ ///
141
+ /// @return {Number} - The value in px
142
+ ///
141
143
 
142
144
  @function percentage-to-px($value, $context: $default-font-size) {
143
145
  @return $value/100% * $context;
@@ -1,7 +1,7 @@
1
1
  /*
2
- * Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
- * Licensed under MIT; see LICENSE.txt
4
- */
2
+ /// Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
+ /// Licensed under MIT; see LICENSE.txt
4
+ ///
5
5
 
6
6
  $button-elements: add-properties(
7
7
  (
@@ -26,4 +26,4 @@ $button-elements: add-properties(
26
26
  ),
27
27
  #{$button-selector}--active,
28
28
  $button-elements
29
- );
29
+ );
@@ -1,7 +1,7 @@
1
1
  /*
2
- * Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
- * Licensed under MIT; see LICENSE.txt
4
- */
2
+ /// Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
+ /// Licensed under MIT; see LICENSE.txt
4
+ ///
5
5
 
6
6
  // $form-form-selector: "%form" !default;
7
7
  // $form-fieldset-selector: "%fieldset" !default;
@@ -112,4 +112,4 @@ $form-elements: add-properties(
112
112
  ),
113
113
  #{$form-textarea-selector}--large,
114
114
  $form-elements
115
- );
115
+ );
@@ -1,7 +1,7 @@
1
1
  /*
2
- * Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
- * Licensed under MIT; see LICENSE.txt
4
- */
2
+ /// Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
+ /// Licensed under MIT; see LICENSE.txt
4
+ ///
5
5
 
6
6
  @import "elements/form";
7
- @import "elements/button";
7
+ @import "elements/button";
@@ -1,7 +1,7 @@
1
1
  /*
2
- * Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
- * Licensed under MIT; see LICENSE.txt
4
- */
2
+ /// Copyright (C) 2014 Crossing Hippos - Babs Gösgens. All rights reserved.
3
+ /// Licensed under MIT; see LICENSE.txt
4
+ ///
5
5
 
6
6
  // Example configuration for columns
7
7
  $column-widths: (
@@ -26,4 +26,4 @@ $layouts: (
26
26
  color: $becca,
27
27
  pages: (),
28
28
  )
29
- );
29
+ );
@@ -105,4 +105,4 @@ $debug-rhythm: false;
105
105
  @import "piecss/behavior/grid";
106
106
  @import "piecss/behavior/form";
107
107
  @import "piecss/behavior/list";
108
- */
108
+ */
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: piecss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6.5.1
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Babs Gosgens
@@ -14,28 +14,28 @@ dependencies:
14
14
  name: sass
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: compass
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.0'
41
41
  description: Piecss produces little to none output. The only default output that Piecss
@@ -104,9 +104,9 @@ files:
104
104
  - sass/piecss/utilities/_side.scss
105
105
  - sass/piecss/utilities/_typography.scss
106
106
  - sass/piecss/utilities/_unit.scss
107
- - templates/project/_sets.scss
108
107
  - templates/project/_sets/_button.scss
109
108
  - templates/project/_sets/_form.scss
109
+ - templates/project/_sets.scss
110
110
  - templates/project/_settings.scss
111
111
  - templates/project/examples.html
112
112
  - templates/project/manifest.rb
@@ -121,17 +121,17 @@ require_paths:
121
121
  - lib
122
122
  required_ruby_version: !ruby/object:Gem::Requirement
123
123
  requirements:
124
- - - ">="
124
+ - - '>='
125
125
  - !ruby/object:Gem::Version
126
126
  version: '0'
127
127
  required_rubygems_version: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ">="
129
+ - - '>='
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
133
  rubyforge_project:
134
- rubygems_version: 2.4.1
134
+ rubygems_version: 2.0.14
135
135
  signing_key:
136
136
  specification_version: 4
137
137
  summary: A collection of tools for building responsive websites.