bourbon 4.2.3 → 4.3.4

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 (87) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.npmignore +2 -1
  4. data/.scss-lint.yml +142 -1
  5. data/CHANGELOG.md +47 -0
  6. data/LICENSE.md +1 -1
  7. data/README.md +21 -7
  8. data/app/assets/stylesheets/_bourbon-deprecate.scss +19 -0
  9. data/app/assets/stylesheets/_bourbon-deprecated-upcoming.scss +28 -14
  10. data/app/assets/stylesheets/_bourbon.scss +5 -2
  11. data/app/assets/stylesheets/addons/_border-color.scss +3 -0
  12. data/app/assets/stylesheets/addons/_border-style.scss +3 -0
  13. data/app/assets/stylesheets/addons/_border-width.scss +3 -0
  14. data/app/assets/stylesheets/addons/_buttons.scss +5 -0
  15. data/app/assets/stylesheets/addons/_margin.scss +3 -0
  16. data/app/assets/stylesheets/addons/_padding.scss +3 -0
  17. data/app/assets/stylesheets/addons/_position.scss +3 -0
  18. data/app/assets/stylesheets/addons/_retina-image.scss +2 -0
  19. data/app/assets/stylesheets/addons/_size.scss +5 -0
  20. data/app/assets/stylesheets/addons/_text-inputs.scss +6 -0
  21. data/app/assets/stylesheets/css3/_animation.scss +18 -0
  22. data/app/assets/stylesheets/css3/_appearance.scss +2 -0
  23. data/app/assets/stylesheets/css3/_backface-visibility.scss +2 -0
  24. data/app/assets/stylesheets/css3/_background-image.scss +4 -2
  25. data/app/assets/stylesheets/css3/_background.scss +4 -2
  26. data/app/assets/stylesheets/css3/_border-image.scss +4 -2
  27. data/app/assets/stylesheets/css3/_calc.scss +2 -0
  28. data/app/assets/stylesheets/css3/_columns.scss +21 -1
  29. data/app/assets/stylesheets/css3/_filter.scss +2 -0
  30. data/app/assets/stylesheets/css3/_flex-box.scss +40 -0
  31. data/app/assets/stylesheets/css3/_font-face.scss +5 -0
  32. data/app/assets/stylesheets/css3/_font-feature-settings.scss +2 -0
  33. data/app/assets/stylesheets/css3/_hidpi-media-query.scss +2 -0
  34. data/app/assets/stylesheets/css3/_hyphens.scss +2 -0
  35. data/app/assets/stylesheets/css3/_image-rendering.scss +1 -0
  36. data/app/assets/stylesheets/css3/_keyframes.scss +2 -0
  37. data/app/assets/stylesheets/css3/_linear-gradient.scss +2 -0
  38. data/app/assets/stylesheets/css3/_perspective.scss +4 -0
  39. data/app/assets/stylesheets/css3/_placeholder.scss +2 -0
  40. data/app/assets/stylesheets/css3/_radial-gradient.scss +3 -2
  41. data/app/assets/stylesheets/css3/_selection.scss +2 -0
  42. data/app/assets/stylesheets/css3/_text-decoration.scss +8 -0
  43. data/app/assets/stylesheets/css3/_transform.scss +6 -0
  44. data/app/assets/stylesheets/css3/_transition.scss +10 -0
  45. data/app/assets/stylesheets/css3/_user-select.scss +2 -0
  46. data/app/assets/stylesheets/functions/_assign-inputs.scss +5 -0
  47. data/app/assets/stylesheets/functions/_contains-falsy.scss +5 -0
  48. data/app/assets/stylesheets/functions/_contains.scss +5 -0
  49. data/app/assets/stylesheets/functions/_is-length.scss +5 -0
  50. data/app/assets/stylesheets/functions/_is-light.scss +5 -0
  51. data/app/assets/stylesheets/functions/_is-number.scss +5 -0
  52. data/app/assets/stylesheets/functions/_is-size.scss +10 -0
  53. data/app/assets/stylesheets/functions/_modular-scale.scss +5 -0
  54. data/app/assets/stylesheets/functions/_px-to-em.scss +11 -0
  55. data/app/assets/stylesheets/functions/_px-to-rem.scss +11 -0
  56. data/app/assets/stylesheets/functions/_strip-units.scss +5 -0
  57. data/app/assets/stylesheets/functions/_transition-property-name.scss +15 -0
  58. data/app/assets/stylesheets/functions/_unpack.scss +5 -0
  59. data/app/assets/stylesheets/helpers/_convert-units.scss +5 -0
  60. data/app/assets/stylesheets/helpers/_directional-values.scss +12 -0
  61. data/app/assets/stylesheets/helpers/_font-source-declaration.scss +10 -0
  62. data/app/assets/stylesheets/helpers/_gradient-positions-parser.scss +11 -0
  63. data/app/assets/stylesheets/helpers/_linear-angle-parser.scss +10 -0
  64. data/app/assets/stylesheets/helpers/_linear-gradient-parser.scss +12 -2
  65. data/app/assets/stylesheets/helpers/_linear-positions-parser.scss +18 -2
  66. data/app/assets/stylesheets/helpers/_linear-side-corner-parser.scss +12 -2
  67. data/app/assets/stylesheets/helpers/_radial-arg-parser.scss +5 -0
  68. data/app/assets/stylesheets/helpers/_radial-gradient-parser.scss +6 -1
  69. data/app/assets/stylesheets/helpers/_radial-positions-parser.scss +10 -0
  70. data/app/assets/stylesheets/helpers/_render-gradients.scss +5 -0
  71. data/app/assets/stylesheets/helpers/_shape-size-stripper.scss +5 -0
  72. data/app/assets/stylesheets/helpers/_str-to-num.scss +5 -0
  73. data/app/assets/stylesheets/settings/_deprecation-warnings.scss +8 -0
  74. data/bourbon.gemspec +6 -6
  75. data/bower.json +1 -1
  76. data/circle.yml +10 -0
  77. data/eyeglass-exports.js +7 -0
  78. data/index.js +7 -0
  79. data/lib/bourbon/version.rb +1 -1
  80. data/package.json +7 -2
  81. data/spec/bourbon/addons/text_inputs_spec.rb +1 -0
  82. data/spec/bourbon/functions/shade_spec.rb +2 -2
  83. data/spec/bourbon/functions/tint_spec.rb +2 -2
  84. data/spec/fixtures/functions/shade.scss +2 -2
  85. data/spec/fixtures/functions/tint.scss +2 -2
  86. metadata +34 -30
  87. data/.travis.yml +0 -7
@@ -1,7 +1,7 @@
1
1
  @import "setup";
2
2
 
3
3
  .shade-white {
4
- color: shade(#ffffff, 75%);
4
+ color: shade(#fff, 75%);
5
5
  }
6
6
 
7
7
  .shade-black {
@@ -13,5 +13,5 @@
13
13
  }
14
14
 
15
15
  .shade-gray {
16
- color: shade(#222222, 33%);
16
+ color: shade(#222, 33%);
17
17
  }
@@ -1,7 +1,7 @@
1
1
  @import "setup";
2
2
 
3
3
  .tint-white {
4
- color: tint(#ffffff, 75%);
4
+ color: tint(#fff, 75%);
5
5
  }
6
6
 
7
7
  .tint-black {
@@ -13,5 +13,5 @@
13
13
  }
14
14
 
15
15
  .tint-gray {
16
- color: tint(#aaaaaa, 33%);
16
+ color: tint(#aaa, 33%);
17
17
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bourbon
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.3
4
+ version: 4.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andres Mejia
@@ -22,7 +22,7 @@ authors:
22
22
  autorequire:
23
23
  bindir: bin
24
24
  cert_chain: []
25
- date: 2015-05-08 00:00:00.000000000 Z
25
+ date: 2017-04-01 00:00:00.000000000 Z
26
26
  dependencies:
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sass
@@ -42,86 +42,86 @@ dependencies:
42
42
  name: thor
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ">="
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
47
+ version: '0.19'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '0'
54
+ version: '0.19'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: aruba
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ">="
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: 0.6.2
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ">="
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0'
68
+ version: 0.6.2
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: css_parser
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - ">="
73
+ - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: '0'
75
+ version: '1.3'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ">="
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '0'
82
+ version: '1.3'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rake
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ">="
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '0'
89
+ version: '10.4'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ">="
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '0'
96
+ version: '10.4'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rspec
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ">="
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: '0'
103
+ version: '3.3'
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ">="
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: '0'
110
+ version: '3.3'
111
111
  - !ruby/object:Gem::Dependency
112
- name: scss-lint
112
+ name: scss_lint
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - "~>"
115
+ - - '='
116
116
  - !ruby/object:Gem::Version
117
- version: '0.35'
117
+ version: '0.41'
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - "~>"
122
+ - - '='
123
123
  - !ruby/object:Gem::Version
124
- version: '0.35'
124
+ version: '0.41'
125
125
  description: |
126
126
  Bourbon is a library of pure Sass mixins that are designed to be simple and easy
127
127
  to use. No configuration required. The mixins aim to be as vanilla as possible,
@@ -136,12 +136,13 @@ files:
136
136
  - ".hound.yml"
137
137
  - ".npmignore"
138
138
  - ".scss-lint.yml"
139
- - ".travis.yml"
139
+ - CHANGELOG.md
140
140
  - CONTRIBUTING.md
141
141
  - Gemfile
142
142
  - LICENSE.md
143
143
  - README.md
144
144
  - Rakefile
145
+ - app/assets/stylesheets/_bourbon-deprecate.scss
145
146
  - app/assets/stylesheets/_bourbon-deprecated-upcoming.scss
146
147
  - app/assets/stylesheets/_bourbon.scss
147
148
  - app/assets/stylesheets/addons/_border-color.scss
@@ -218,17 +219,21 @@ files:
218
219
  - app/assets/stylesheets/helpers/_shape-size-stripper.scss
219
220
  - app/assets/stylesheets/helpers/_str-to-num.scss
220
221
  - app/assets/stylesheets/settings/_asset-pipeline.scss
222
+ - app/assets/stylesheets/settings/_deprecation-warnings.scss
221
223
  - app/assets/stylesheets/settings/_prefixer.scss
222
224
  - app/assets/stylesheets/settings/_px-to-em.scss
223
225
  - bin/bourbon
224
226
  - bourbon.gemspec
225
227
  - bower.json
228
+ - circle.yml
229
+ - eyeglass-exports.js
226
230
  - features/install.feature
227
231
  - features/step_definitions/bourbon_steps.rb
228
232
  - features/support/bourbon_support.rb
229
233
  - features/support/env.rb
230
234
  - features/update.feature
231
235
  - features/version.feature
236
+ - index.js
232
237
  - lib/bourbon.rb
233
238
  - lib/bourbon/engine.rb
234
239
  - lib/bourbon/generator.rb
@@ -336,7 +341,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
336
341
  version: '0'
337
342
  requirements: []
338
343
  rubyforge_project:
339
- rubygems_version: 2.4.5
344
+ rubygems_version: 2.5.1
340
345
  signing_key:
341
346
  specification_version: 4
342
347
  summary: A simple and lightweight mixin library for Sass
@@ -427,4 +432,3 @@ test_files:
427
432
  - spec/support/matchers/have_value.rb
428
433
  - spec/support/parser_support.rb
429
434
  - spec/support/sass_support.rb
430
- has_rdoc:
data/.travis.yml DELETED
@@ -1,7 +0,0 @@
1
- branches:
2
- except:
3
- - gh-pages
4
- language: ruby
5
- notifications:
6
- email: false
7
- rvm: 2.2.1