bourbon 4.3.4 → 5.0.0.alpha.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (164) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.npmignore +1 -0
  4. data/.scss-lint.yml +2 -143
  5. data/.travis.yml +8 -0
  6. data/LICENSE.md +1 -1
  7. data/README.md +5 -19
  8. data/bourbon.gemspec +2 -2
  9. data/bower.json +7 -6
  10. data/core/_bourbon.scss +47 -0
  11. data/core/bourbon/_bourbon-deprecated.scss +1 -0
  12. data/core/bourbon/addons/_border-color.scss +26 -0
  13. data/{app/assets/stylesheets → core/bourbon}/addons/_border-radius.scss +19 -18
  14. data/core/bourbon/addons/_border-style.scss +25 -0
  15. data/core/bourbon/addons/_border-width.scss +25 -0
  16. data/core/bourbon/addons/_buttons.scss +61 -0
  17. data/core/bourbon/addons/_clearfix.scss +25 -0
  18. data/core/bourbon/addons/_ellipsis.scss +30 -0
  19. data/core/bourbon/addons/_font-stacks.scss +19 -0
  20. data/core/bourbon/addons/_hide-text.scss +23 -0
  21. data/core/bourbon/addons/_margin.scss +26 -0
  22. data/core/bourbon/addons/_padding.scss +26 -0
  23. data/core/bourbon/addons/_position.scss +49 -0
  24. data/core/bourbon/addons/_prefixer.scss +33 -0
  25. data/core/bourbon/addons/_size.scss +43 -0
  26. data/core/bourbon/addons/_text-inputs.scss +123 -0
  27. data/{app/assets/stylesheets → core/bourbon}/addons/_timing-functions.scss +7 -3
  28. data/core/bourbon/addons/_word-wrap.scss +29 -0
  29. data/core/bourbon/css3/_font-face.scss +50 -0
  30. data/core/bourbon/functions/_assign-inputs.scss +25 -0
  31. data/core/bourbon/functions/_contains-falsy.scss +20 -0
  32. data/core/bourbon/functions/_contains.scss +23 -0
  33. data/{app/assets/stylesheets → core/bourbon}/functions/_is-length.scss +3 -6
  34. data/{app/assets/stylesheets → core/bourbon}/functions/_is-light.scss +5 -10
  35. data/{app/assets/stylesheets → core/bourbon}/functions/_is-number.scss +3 -6
  36. data/core/bourbon/functions/_is-size.scss +16 -0
  37. data/core/bourbon/functions/_modular-scale.scss +101 -0
  38. data/core/bourbon/functions/_shade.scss +24 -0
  39. data/core/bourbon/functions/_strip-unit.scss +17 -0
  40. data/core/bourbon/functions/_tint.scss +24 -0
  41. data/{app/assets/stylesheets → core/bourbon}/functions/_unpack.scss +11 -14
  42. data/{app/assets/stylesheets → core/bourbon}/helpers/_directional-values.scss +26 -36
  43. data/{app/assets/stylesheets → core/bourbon}/helpers/_font-source-declaration.scss +0 -10
  44. data/{app/assets/stylesheets → core/bourbon}/settings/_asset-pipeline.scss +1 -1
  45. data/core/bourbon/settings/_global-font-file-formats.scss +12 -0
  46. data/core/bourbon/settings/_modular-scale.scss +17 -0
  47. data/core/bourbon/settings/_scales.scss +27 -0
  48. data/features/step_definitions/bourbon_steps.rb +1 -1
  49. data/index.js +1 -1
  50. data/lib/bourbon/engine.rb +1 -1
  51. data/lib/bourbon/generator.rb +1 -1
  52. data/lib/bourbon/version.rb +1 -1
  53. data/package.json +1 -6
  54. data/spec/bourbon/addons/buttons_spec.rb +3 -3
  55. data/spec/bourbon/addons/font_stacks_spec.rb +21 -11
  56. data/spec/bourbon/addons/text_inputs_spec.rb +14 -14
  57. data/spec/bourbon/css3/font_face_spec_1.rb +18 -0
  58. data/spec/bourbon/css3/font_face_spec_2.rb +19 -0
  59. data/spec/bourbon/css3/font_face_spec_3.rb +18 -0
  60. data/spec/bourbon/css3/font_face_spec_4.rb +19 -0
  61. data/spec/bourbon/functions/assign_inputs_spec.rb +3 -3
  62. data/spec/bourbon/functions/{strip_units_spec.rb → strip_unit_spec.rb} +2 -2
  63. data/spec/fixtures/_setup.scss +1 -1
  64. data/spec/fixtures/addons/font-stacks.scss +24 -8
  65. data/spec/fixtures/addons/size.scss +2 -2
  66. data/spec/fixtures/css3/font-face-1.scss +3 -0
  67. data/spec/fixtures/css3/font-face-2.scss +3 -0
  68. data/spec/fixtures/css3/font-face-3.scss +3 -0
  69. data/spec/fixtures/css3/font-face-4.scss +3 -0
  70. data/spec/fixtures/functions/assign-inputs.scss +1 -1
  71. data/spec/fixtures/functions/strip-unit.scss +17 -0
  72. metadata +72 -129
  73. data/CHANGELOG.md +0 -47
  74. data/app/assets/stylesheets/_bourbon-deprecate.scss +0 -19
  75. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +0 -425
  76. data/app/assets/stylesheets/_bourbon.scss +0 -90
  77. data/app/assets/stylesheets/addons/_border-color.scss +0 -29
  78. data/app/assets/stylesheets/addons/_border-style.scss +0 -28
  79. data/app/assets/stylesheets/addons/_border-width.scss +0 -28
  80. data/app/assets/stylesheets/addons/_buttons.scss +0 -69
  81. data/app/assets/stylesheets/addons/_clearfix.scss +0 -25
  82. data/app/assets/stylesheets/addons/_ellipsis.scss +0 -30
  83. data/app/assets/stylesheets/addons/_font-stacks.scss +0 -31
  84. data/app/assets/stylesheets/addons/_hide-text.scss +0 -27
  85. data/app/assets/stylesheets/addons/_margin.scss +0 -29
  86. data/app/assets/stylesheets/addons/_padding.scss +0 -29
  87. data/app/assets/stylesheets/addons/_position.scss +0 -51
  88. data/app/assets/stylesheets/addons/_prefixer.scss +0 -66
  89. data/app/assets/stylesheets/addons/_retina-image.scss +0 -27
  90. data/app/assets/stylesheets/addons/_size.scss +0 -56
  91. data/app/assets/stylesheets/addons/_text-inputs.scss +0 -118
  92. data/app/assets/stylesheets/addons/_triangle.scss +0 -63
  93. data/app/assets/stylesheets/addons/_word-wrap.scss +0 -29
  94. data/app/assets/stylesheets/css3/_animation.scss +0 -61
  95. data/app/assets/stylesheets/css3/_appearance.scss +0 -5
  96. data/app/assets/stylesheets/css3/_backface-visibility.scss +0 -5
  97. data/app/assets/stylesheets/css3/_background-image.scss +0 -44
  98. data/app/assets/stylesheets/css3/_background.scss +0 -57
  99. data/app/assets/stylesheets/css3/_border-image.scss +0 -61
  100. data/app/assets/stylesheets/css3/_calc.scss +0 -6
  101. data/app/assets/stylesheets/css3/_columns.scss +0 -67
  102. data/app/assets/stylesheets/css3/_filter.scss +0 -6
  103. data/app/assets/stylesheets/css3/_flex-box.scss +0 -327
  104. data/app/assets/stylesheets/css3/_font-face.scss +0 -29
  105. data/app/assets/stylesheets/css3/_font-feature-settings.scss +0 -6
  106. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +0 -12
  107. data/app/assets/stylesheets/css3/_hyphens.scss +0 -6
  108. data/app/assets/stylesheets/css3/_image-rendering.scss +0 -15
  109. data/app/assets/stylesheets/css3/_keyframes.scss +0 -38
  110. data/app/assets/stylesheets/css3/_linear-gradient.scss +0 -40
  111. data/app/assets/stylesheets/css3/_perspective.scss +0 -12
  112. data/app/assets/stylesheets/css3/_placeholder.scss +0 -10
  113. data/app/assets/stylesheets/css3/_radial-gradient.scss +0 -40
  114. data/app/assets/stylesheets/css3/_selection.scss +0 -44
  115. data/app/assets/stylesheets/css3/_text-decoration.scss +0 -27
  116. data/app/assets/stylesheets/css3/_transform.scss +0 -21
  117. data/app/assets/stylesheets/css3/_transition.scss +0 -81
  118. data/app/assets/stylesheets/css3/_user-select.scss +0 -5
  119. data/app/assets/stylesheets/functions/_assign-inputs.scss +0 -16
  120. data/app/assets/stylesheets/functions/_contains-falsy.scss +0 -25
  121. data/app/assets/stylesheets/functions/_contains.scss +0 -31
  122. data/app/assets/stylesheets/functions/_is-size.scss +0 -23
  123. data/app/assets/stylesheets/functions/_modular-scale.scss +0 -74
  124. data/app/assets/stylesheets/functions/_px-to-em.scss +0 -24
  125. data/app/assets/stylesheets/functions/_px-to-rem.scss +0 -26
  126. data/app/assets/stylesheets/functions/_shade.scss +0 -24
  127. data/app/assets/stylesheets/functions/_strip-units.scss +0 -22
  128. data/app/assets/stylesheets/functions/_tint.scss +0 -24
  129. data/app/assets/stylesheets/functions/_transition-property-name.scss +0 -37
  130. data/app/assets/stylesheets/helpers/_convert-units.scss +0 -26
  131. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +0 -24
  132. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +0 -35
  133. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +0 -51
  134. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +0 -77
  135. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +0 -41
  136. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +0 -74
  137. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +0 -55
  138. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +0 -28
  139. data/app/assets/stylesheets/helpers/_render-gradients.scss +0 -31
  140. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +0 -15
  141. data/app/assets/stylesheets/helpers/_str-to-num.scss +0 -55
  142. data/app/assets/stylesheets/settings/_deprecation-warnings.scss +0 -8
  143. data/app/assets/stylesheets/settings/_prefixer.scss +0 -9
  144. data/app/assets/stylesheets/settings/_px-to-em.scss +0 -1
  145. data/circle.yml +0 -10
  146. data/eyeglass-exports.js +0 -7
  147. data/sache.json +0 -5
  148. data/spec/bourbon/addons/retina_image_spec.rb +0 -57
  149. data/spec/bourbon/addons/triangle_spec.rb +0 -32
  150. data/spec/bourbon/css3/font_face_spec.rb +0 -45
  151. data/spec/bourbon/css3/hidpi_media_query_spec.rb +0 -23
  152. data/spec/bourbon/functions/px_to_em_spec.rb +0 -31
  153. data/spec/bourbon/functions/px_to_rem_spec.rb +0 -25
  154. data/spec/bourbon/helpers/convert_units_spec.rb +0 -31
  155. data/spec/bourbon/helpers/str_to_num_spec.rb +0 -25
  156. data/spec/fixtures/addons/retina-image.scss +0 -21
  157. data/spec/fixtures/addons/triangle.scss +0 -9
  158. data/spec/fixtures/css3/font-face.scss +0 -6
  159. data/spec/fixtures/css3/hidpi-media-query.scss +0 -13
  160. data/spec/fixtures/functions/px-to-em.scss +0 -17
  161. data/spec/fixtures/functions/px-to-rem.scss +0 -15
  162. data/spec/fixtures/functions/strip-units.scss +0 -17
  163. data/spec/fixtures/helpers/convert-units.scss +0 -17
  164. data/spec/fixtures/helpers/str-to-num.scss +0 -13
@@ -1,8 +1,8 @@
1
1
  require "spec_helper"
2
2
 
3
- describe "strip-units" do
3
+ describe "strip-unit" do
4
4
  before(:all) do
5
- ParserSupport.parse_file("functions/strip-units")
5
+ ParserSupport.parse_file("functions/strip-unit")
6
6
  end
7
7
 
8
8
  context "called with px" do
@@ -1 +1 @@
1
- @import "app/assets/stylesheets/bourbon";
1
+ @import "core/bourbon";
@@ -1,9 +1,5 @@
1
1
  @import "setup";
2
2
 
3
- .georgia {
4
- content: $georgia;
5
- }
6
-
7
3
  .helvetica {
8
4
  content: $helvetica;
9
5
  }
@@ -12,10 +8,30 @@
12
8
  content: $lucida-grande;
13
9
  }
14
10
 
15
- .monospace {
16
- content: $monospace;
17
- }
18
-
19
11
  .verdana {
20
12
  content: $verdana;
21
13
  }
14
+
15
+ .garamond {
16
+ content: $garamond;
17
+ }
18
+
19
+ .georgia {
20
+ content: $georgia;
21
+ }
22
+
23
+ .hoefler-text {
24
+ content: $hoefler-text;
25
+ }
26
+
27
+ .consolas {
28
+ content: $consolas;
29
+ }
30
+
31
+ .courier-new {
32
+ content: $courier-new;
33
+ }
34
+
35
+ .monaco {
36
+ content: $monaco;
37
+ }
@@ -5,9 +5,9 @@
5
5
  }
6
6
 
7
7
  .size-both {
8
- @include size(1em 2em);
8
+ @include size(1em, 2em);
9
9
  }
10
10
 
11
11
  .size-auto {
12
- @include size(100px auto);
12
+ @include size(100px, auto);
13
13
  }
@@ -0,0 +1,3 @@
1
+ @import "setup";
2
+
3
+ @include font-face("source-sans-pro", "/fonts/source-sans-pro/source-sans-pro-regular");
@@ -0,0 +1,3 @@
1
+ @import "setup";
2
+
3
+ @include font-face("roboto", "/assets/fonts/Roboto-BoldItalic", "bold", "italic", $file-formats: ttf);
@@ -0,0 +1,3 @@
1
+ @import "setup";
2
+
3
+ @include font-face("pitch", "/fonts/pitch", "normal", "normal", false, woff);
@@ -0,0 +1,3 @@
1
+ @import "setup";
2
+
3
+ @include font-face("circular", "/circular", $file-formats: woff2 svg);
@@ -13,7 +13,7 @@ select {
13
13
  color: #0000ff;
14
14
  }
15
15
 
16
- input[type="file"],
16
+ [type="file"],
17
17
  #{assign-inputs($text-inputs-list)} {
18
18
  color: #ff00ff;
19
19
  }
@@ -0,0 +1,17 @@
1
+ @import "setup";
2
+
3
+ .px {
4
+ width: strip-unit(10px);
5
+ }
6
+
7
+ .em {
8
+ width: strip-unit(2em);
9
+ }
10
+
11
+ .rem {
12
+ width: strip-unit(1.5rem);
13
+ }
14
+
15
+ .percent {
16
+ width: strip-unit(20%);
17
+ }
metadata CHANGED
@@ -1,15 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.3.4
4
+ version: 5.0.0.alpha.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andres Mejia
8
8
  - Chad Mazzola
9
9
  - Chris Lloyd
10
+ - Christian Reuter
10
11
  - Gabe Berke-Williams
12
+ - Hugo Giraudel
11
13
  - J. Edward Dewyea
12
14
  - Jeremy Raines
15
+ - Joshua Ogle
13
16
  - Kyle Fiedler
14
17
  - Matt Jankowski
15
18
  - Mike Burns
@@ -22,7 +25,7 @@ authors:
22
25
  autorequire:
23
26
  bindir: bin
24
27
  cert_chain: []
25
- date: 2017-04-01 00:00:00.000000000 Z
28
+ date: 2015-08-21 00:00:00.000000000 Z
26
29
  dependencies:
27
30
  - !ruby/object:Gem::Dependency
28
31
  name: sass
@@ -112,16 +115,16 @@ dependencies:
112
115
  name: scss_lint
113
116
  requirement: !ruby/object:Gem::Requirement
114
117
  requirements:
115
- - - '='
118
+ - - "~>"
116
119
  - !ruby/object:Gem::Version
117
- version: '0.41'
120
+ version: '0.40'
118
121
  type: :development
119
122
  prerelease: false
120
123
  version_requirements: !ruby/object:Gem::Requirement
121
124
  requirements:
122
- - - '='
125
+ - - "~>"
123
126
  - !ruby/object:Gem::Version
124
- version: '0.41'
127
+ version: '0.40'
125
128
  description: |
126
129
  Bourbon is a library of pure Sass mixins that are designed to be simple and easy
127
130
  to use. No configuration required. The mixins aim to be as vanilla as possible,
@@ -136,97 +139,53 @@ files:
136
139
  - ".hound.yml"
137
140
  - ".npmignore"
138
141
  - ".scss-lint.yml"
139
- - CHANGELOG.md
142
+ - ".travis.yml"
140
143
  - CONTRIBUTING.md
141
144
  - Gemfile
142
145
  - LICENSE.md
143
146
  - README.md
144
147
  - Rakefile
145
- - app/assets/stylesheets/_bourbon-deprecate.scss
146
- - app/assets/stylesheets/_bourbon-deprecated-upcoming.scss
147
- - app/assets/stylesheets/_bourbon.scss
148
- - app/assets/stylesheets/addons/_border-color.scss
149
- - app/assets/stylesheets/addons/_border-radius.scss
150
- - app/assets/stylesheets/addons/_border-style.scss
151
- - app/assets/stylesheets/addons/_border-width.scss
152
- - app/assets/stylesheets/addons/_buttons.scss
153
- - app/assets/stylesheets/addons/_clearfix.scss
154
- - app/assets/stylesheets/addons/_ellipsis.scss
155
- - app/assets/stylesheets/addons/_font-stacks.scss
156
- - app/assets/stylesheets/addons/_hide-text.scss
157
- - app/assets/stylesheets/addons/_margin.scss
158
- - app/assets/stylesheets/addons/_padding.scss
159
- - app/assets/stylesheets/addons/_position.scss
160
- - app/assets/stylesheets/addons/_prefixer.scss
161
- - app/assets/stylesheets/addons/_retina-image.scss
162
- - app/assets/stylesheets/addons/_size.scss
163
- - app/assets/stylesheets/addons/_text-inputs.scss
164
- - app/assets/stylesheets/addons/_timing-functions.scss
165
- - app/assets/stylesheets/addons/_triangle.scss
166
- - app/assets/stylesheets/addons/_word-wrap.scss
167
- - app/assets/stylesheets/css3/_animation.scss
168
- - app/assets/stylesheets/css3/_appearance.scss
169
- - app/assets/stylesheets/css3/_backface-visibility.scss
170
- - app/assets/stylesheets/css3/_background-image.scss
171
- - app/assets/stylesheets/css3/_background.scss
172
- - app/assets/stylesheets/css3/_border-image.scss
173
- - app/assets/stylesheets/css3/_calc.scss
174
- - app/assets/stylesheets/css3/_columns.scss
175
- - app/assets/stylesheets/css3/_filter.scss
176
- - app/assets/stylesheets/css3/_flex-box.scss
177
- - app/assets/stylesheets/css3/_font-face.scss
178
- - app/assets/stylesheets/css3/_font-feature-settings.scss
179
- - app/assets/stylesheets/css3/_hidpi-media-query.scss
180
- - app/assets/stylesheets/css3/_hyphens.scss
181
- - app/assets/stylesheets/css3/_image-rendering.scss
182
- - app/assets/stylesheets/css3/_keyframes.scss
183
- - app/assets/stylesheets/css3/_linear-gradient.scss
184
- - app/assets/stylesheets/css3/_perspective.scss
185
- - app/assets/stylesheets/css3/_placeholder.scss
186
- - app/assets/stylesheets/css3/_radial-gradient.scss
187
- - app/assets/stylesheets/css3/_selection.scss
188
- - app/assets/stylesheets/css3/_text-decoration.scss
189
- - app/assets/stylesheets/css3/_transform.scss
190
- - app/assets/stylesheets/css3/_transition.scss
191
- - app/assets/stylesheets/css3/_user-select.scss
192
- - app/assets/stylesheets/functions/_assign-inputs.scss
193
- - app/assets/stylesheets/functions/_contains-falsy.scss
194
- - app/assets/stylesheets/functions/_contains.scss
195
- - app/assets/stylesheets/functions/_is-length.scss
196
- - app/assets/stylesheets/functions/_is-light.scss
197
- - app/assets/stylesheets/functions/_is-number.scss
198
- - app/assets/stylesheets/functions/_is-size.scss
199
- - app/assets/stylesheets/functions/_modular-scale.scss
200
- - app/assets/stylesheets/functions/_px-to-em.scss
201
- - app/assets/stylesheets/functions/_px-to-rem.scss
202
- - app/assets/stylesheets/functions/_shade.scss
203
- - app/assets/stylesheets/functions/_strip-units.scss
204
- - app/assets/stylesheets/functions/_tint.scss
205
- - app/assets/stylesheets/functions/_transition-property-name.scss
206
- - app/assets/stylesheets/functions/_unpack.scss
207
- - app/assets/stylesheets/helpers/_convert-units.scss
208
- - app/assets/stylesheets/helpers/_directional-values.scss
209
- - app/assets/stylesheets/helpers/_font-source-declaration.scss
210
- - app/assets/stylesheets/helpers/_gradient-positions-parser.scss
211
- - app/assets/stylesheets/helpers/_linear-angle-parser.scss
212
- - app/assets/stylesheets/helpers/_linear-gradient-parser.scss
213
- - app/assets/stylesheets/helpers/_linear-positions-parser.scss
214
- - app/assets/stylesheets/helpers/_linear-side-corner-parser.scss
215
- - app/assets/stylesheets/helpers/_radial-arg-parser.scss
216
- - app/assets/stylesheets/helpers/_radial-gradient-parser.scss
217
- - app/assets/stylesheets/helpers/_radial-positions-parser.scss
218
- - app/assets/stylesheets/helpers/_render-gradients.scss
219
- - app/assets/stylesheets/helpers/_shape-size-stripper.scss
220
- - app/assets/stylesheets/helpers/_str-to-num.scss
221
- - app/assets/stylesheets/settings/_asset-pipeline.scss
222
- - app/assets/stylesheets/settings/_deprecation-warnings.scss
223
- - app/assets/stylesheets/settings/_prefixer.scss
224
- - app/assets/stylesheets/settings/_px-to-em.scss
225
148
  - bin/bourbon
226
149
  - bourbon.gemspec
227
150
  - bower.json
228
- - circle.yml
229
- - eyeglass-exports.js
151
+ - core/_bourbon.scss
152
+ - core/bourbon/_bourbon-deprecated.scss
153
+ - core/bourbon/addons/_border-color.scss
154
+ - core/bourbon/addons/_border-radius.scss
155
+ - core/bourbon/addons/_border-style.scss
156
+ - core/bourbon/addons/_border-width.scss
157
+ - core/bourbon/addons/_buttons.scss
158
+ - core/bourbon/addons/_clearfix.scss
159
+ - core/bourbon/addons/_ellipsis.scss
160
+ - core/bourbon/addons/_font-stacks.scss
161
+ - core/bourbon/addons/_hide-text.scss
162
+ - core/bourbon/addons/_margin.scss
163
+ - core/bourbon/addons/_padding.scss
164
+ - core/bourbon/addons/_position.scss
165
+ - core/bourbon/addons/_prefixer.scss
166
+ - core/bourbon/addons/_size.scss
167
+ - core/bourbon/addons/_text-inputs.scss
168
+ - core/bourbon/addons/_timing-functions.scss
169
+ - core/bourbon/addons/_word-wrap.scss
170
+ - core/bourbon/css3/_font-face.scss
171
+ - core/bourbon/functions/_assign-inputs.scss
172
+ - core/bourbon/functions/_contains-falsy.scss
173
+ - core/bourbon/functions/_contains.scss
174
+ - core/bourbon/functions/_is-length.scss
175
+ - core/bourbon/functions/_is-light.scss
176
+ - core/bourbon/functions/_is-number.scss
177
+ - core/bourbon/functions/_is-size.scss
178
+ - core/bourbon/functions/_modular-scale.scss
179
+ - core/bourbon/functions/_shade.scss
180
+ - core/bourbon/functions/_strip-unit.scss
181
+ - core/bourbon/functions/_tint.scss
182
+ - core/bourbon/functions/_unpack.scss
183
+ - core/bourbon/helpers/_directional-values.scss
184
+ - core/bourbon/helpers/_font-source-declaration.scss
185
+ - core/bourbon/settings/_asset-pipeline.scss
186
+ - core/bourbon/settings/_global-font-file-formats.scss
187
+ - core/bourbon/settings/_modular-scale.scss
188
+ - core/bourbon/settings/_scales.scss
230
189
  - features/install.feature
231
190
  - features/step_definitions/bourbon_steps.rb
232
191
  - features/support/bourbon_support.rb
@@ -240,7 +199,6 @@ files:
240
199
  - lib/bourbon/version.rb
241
200
  - lib/tasks/install.rake
242
201
  - package.json
243
- - sache.json
244
202
  - spec/bourbon/addons/border_color_spec.rb
245
203
  - spec/bourbon/addons/border_radius_spec.rb
246
204
  - spec/bourbon/addons/border_style_spec.rb
@@ -253,13 +211,13 @@ files:
253
211
  - spec/bourbon/addons/margin_spec.rb
254
212
  - spec/bourbon/addons/padding_spec.rb
255
213
  - spec/bourbon/addons/position_spec.rb
256
- - spec/bourbon/addons/retina_image_spec.rb
257
214
  - spec/bourbon/addons/size_spec.rb
258
215
  - spec/bourbon/addons/text_inputs_spec.rb
259
- - spec/bourbon/addons/triangle_spec.rb
260
216
  - spec/bourbon/addons/word_wrap_spec.rb
261
- - spec/bourbon/css3/font_face_spec.rb
262
- - spec/bourbon/css3/hidpi_media_query_spec.rb
217
+ - spec/bourbon/css3/font_face_spec_1.rb
218
+ - spec/bourbon/css3/font_face_spec_2.rb
219
+ - spec/bourbon/css3/font_face_spec_3.rb
220
+ - spec/bourbon/css3/font_face_spec_4.rb
263
221
  - spec/bourbon/functions/assign_inputs_spec.rb
264
222
  - spec/bourbon/functions/contains_spec.rb
265
223
  - spec/bourbon/functions/is_length_spec.rb
@@ -267,16 +225,12 @@ files:
267
225
  - spec/bourbon/functions/is_number_spec.rb
268
226
  - spec/bourbon/functions/is_size_spec.rb
269
227
  - spec/bourbon/functions/modular_scale_spec.rb
270
- - spec/bourbon/functions/px_to_em_spec.rb
271
- - spec/bourbon/functions/px_to_rem_spec.rb
272
228
  - spec/bourbon/functions/shade_spec.rb
273
- - spec/bourbon/functions/strip_units_spec.rb
229
+ - spec/bourbon/functions/strip_unit_spec.rb
274
230
  - spec/bourbon/functions/tint_spec.rb
275
231
  - spec/bourbon/functions/unpack_spec.rb
276
- - spec/bourbon/helpers/convert_units_spec.rb
277
232
  - spec/bourbon/helpers/directional_values_spec.rb
278
233
  - spec/bourbon/helpers/font_source_declaration_spec.rb
279
- - spec/bourbon/helpers/str_to_num_spec.rb
280
234
  - spec/fixtures/_setup.scss
281
235
  - spec/fixtures/addons/border-color.scss
282
236
  - spec/fixtures/addons/border-radius.scss
@@ -290,13 +244,13 @@ files:
290
244
  - spec/fixtures/addons/margin.scss
291
245
  - spec/fixtures/addons/padding.scss
292
246
  - spec/fixtures/addons/position.scss
293
- - spec/fixtures/addons/retina-image.scss
294
247
  - spec/fixtures/addons/size.scss
295
248
  - spec/fixtures/addons/text-inputs.scss
296
- - spec/fixtures/addons/triangle.scss
297
249
  - spec/fixtures/addons/word-wrap.scss
298
- - spec/fixtures/css3/font-face.scss
299
- - spec/fixtures/css3/hidpi-media-query.scss
250
+ - spec/fixtures/css3/font-face-1.scss
251
+ - spec/fixtures/css3/font-face-2.scss
252
+ - spec/fixtures/css3/font-face-3.scss
253
+ - spec/fixtures/css3/font-face-4.scss
300
254
  - spec/fixtures/functions/assign-inputs.scss
301
255
  - spec/fixtures/functions/contains.scss
302
256
  - spec/fixtures/functions/is-length.scss
@@ -304,16 +258,12 @@ files:
304
258
  - spec/fixtures/functions/is-number.scss
305
259
  - spec/fixtures/functions/is-size.scss
306
260
  - spec/fixtures/functions/modular-scale.scss
307
- - spec/fixtures/functions/px-to-em.scss
308
- - spec/fixtures/functions/px-to-rem.scss
309
261
  - spec/fixtures/functions/shade.scss
310
- - spec/fixtures/functions/strip-units.scss
262
+ - spec/fixtures/functions/strip-unit.scss
311
263
  - spec/fixtures/functions/tint.scss
312
264
  - spec/fixtures/functions/unpack.scss
313
- - spec/fixtures/helpers/convert-units.scss
314
265
  - spec/fixtures/helpers/directional-values.scss
315
266
  - spec/fixtures/helpers/font-source-declaration.scss
316
- - spec/fixtures/helpers/str-to-num.scss
317
267
  - spec/spec_helper.rb
318
268
  - spec/support/matchers/be_contained_in.rb
319
269
  - spec/support/matchers/have_rule.rb
@@ -336,12 +286,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
336
286
  version: '0'
337
287
  required_rubygems_version: !ruby/object:Gem::Requirement
338
288
  requirements:
339
- - - ">="
289
+ - - ">"
340
290
  - !ruby/object:Gem::Version
341
- version: '0'
291
+ version: 1.3.1
342
292
  requirements: []
343
293
  rubyforge_project:
344
- rubygems_version: 2.5.1
294
+ rubygems_version: 2.4.8
345
295
  signing_key:
346
296
  specification_version: 4
347
297
  summary: A simple and lightweight mixin library for Sass
@@ -364,13 +314,13 @@ test_files:
364
314
  - spec/bourbon/addons/margin_spec.rb
365
315
  - spec/bourbon/addons/padding_spec.rb
366
316
  - spec/bourbon/addons/position_spec.rb
367
- - spec/bourbon/addons/retina_image_spec.rb
368
317
  - spec/bourbon/addons/size_spec.rb
369
318
  - spec/bourbon/addons/text_inputs_spec.rb
370
- - spec/bourbon/addons/triangle_spec.rb
371
319
  - spec/bourbon/addons/word_wrap_spec.rb
372
- - spec/bourbon/css3/font_face_spec.rb
373
- - spec/bourbon/css3/hidpi_media_query_spec.rb
320
+ - spec/bourbon/css3/font_face_spec_1.rb
321
+ - spec/bourbon/css3/font_face_spec_2.rb
322
+ - spec/bourbon/css3/font_face_spec_3.rb
323
+ - spec/bourbon/css3/font_face_spec_4.rb
374
324
  - spec/bourbon/functions/assign_inputs_spec.rb
375
325
  - spec/bourbon/functions/contains_spec.rb
376
326
  - spec/bourbon/functions/is_length_spec.rb
@@ -378,16 +328,12 @@ test_files:
378
328
  - spec/bourbon/functions/is_number_spec.rb
379
329
  - spec/bourbon/functions/is_size_spec.rb
380
330
  - spec/bourbon/functions/modular_scale_spec.rb
381
- - spec/bourbon/functions/px_to_em_spec.rb
382
- - spec/bourbon/functions/px_to_rem_spec.rb
383
331
  - spec/bourbon/functions/shade_spec.rb
384
- - spec/bourbon/functions/strip_units_spec.rb
332
+ - spec/bourbon/functions/strip_unit_spec.rb
385
333
  - spec/bourbon/functions/tint_spec.rb
386
334
  - spec/bourbon/functions/unpack_spec.rb
387
- - spec/bourbon/helpers/convert_units_spec.rb
388
335
  - spec/bourbon/helpers/directional_values_spec.rb
389
336
  - spec/bourbon/helpers/font_source_declaration_spec.rb
390
- - spec/bourbon/helpers/str_to_num_spec.rb
391
337
  - spec/fixtures/_setup.scss
392
338
  - spec/fixtures/addons/border-color.scss
393
339
  - spec/fixtures/addons/border-radius.scss
@@ -401,13 +347,13 @@ test_files:
401
347
  - spec/fixtures/addons/margin.scss
402
348
  - spec/fixtures/addons/padding.scss
403
349
  - spec/fixtures/addons/position.scss
404
- - spec/fixtures/addons/retina-image.scss
405
350
  - spec/fixtures/addons/size.scss
406
351
  - spec/fixtures/addons/text-inputs.scss
407
- - spec/fixtures/addons/triangle.scss
408
352
  - spec/fixtures/addons/word-wrap.scss
409
- - spec/fixtures/css3/font-face.scss
410
- - spec/fixtures/css3/hidpi-media-query.scss
353
+ - spec/fixtures/css3/font-face-1.scss
354
+ - spec/fixtures/css3/font-face-2.scss
355
+ - spec/fixtures/css3/font-face-3.scss
356
+ - spec/fixtures/css3/font-face-4.scss
411
357
  - spec/fixtures/functions/assign-inputs.scss
412
358
  - spec/fixtures/functions/contains.scss
413
359
  - spec/fixtures/functions/is-length.scss
@@ -415,16 +361,12 @@ test_files:
415
361
  - spec/fixtures/functions/is-number.scss
416
362
  - spec/fixtures/functions/is-size.scss
417
363
  - spec/fixtures/functions/modular-scale.scss
418
- - spec/fixtures/functions/px-to-em.scss
419
- - spec/fixtures/functions/px-to-rem.scss
420
364
  - spec/fixtures/functions/shade.scss
421
- - spec/fixtures/functions/strip-units.scss
365
+ - spec/fixtures/functions/strip-unit.scss
422
366
  - spec/fixtures/functions/tint.scss
423
367
  - spec/fixtures/functions/unpack.scss
424
- - spec/fixtures/helpers/convert-units.scss
425
368
  - spec/fixtures/helpers/directional-values.scss
426
369
  - spec/fixtures/helpers/font-source-declaration.scss
427
- - spec/fixtures/helpers/str-to-num.scss
428
370
  - spec/spec_helper.rb
429
371
  - spec/support/matchers/be_contained_in.rb
430
372
  - spec/support/matchers/have_rule.rb
@@ -432,3 +374,4 @@ test_files:
432
374
  - spec/support/matchers/have_value.rb
433
375
  - spec/support/parser_support.rb
434
376
  - spec/support/sass_support.rb
377
+ has_rdoc: