sass-embedded 1.87.0-aarch64-linux-musl → 1.88.0-aarch64-linux-musl
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/LICENSE +18 -17
- data/ext/sass/dart-sass/src/sass.snapshot +0 -0
- data/lib/sass/embedded/version.rb +1 -1
- data/lib/sass/value/color.rb +7 -7
- data/lib/sass/value/number.rb +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 233bb421935a76670edb358f653296dd9c831f77c97efdfe741b47a7bbec7e93
|
4
|
+
data.tar.gz: 0364c59b5419611ebe5b94a757790b12ba00b4d6e9b6c8079c2e458c50573b8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b175a728a8c2db71f570e044837f94c55a9888f6aa5ea770d2f5b6f953c9d53c3da0a14a981a9846de8820f14e3a2ac4d54328af550a036130e588986aa862f9
|
7
|
+
data.tar.gz: 51176b9c975bffd194e5018f952b286147e57673a628e1a51326eb7f69ee9a1326e0beb0f92b05a45e329d194749361e3df5206218fa148bb802572b6911793e
|
data/LICENSE
CHANGED
@@ -1,20 +1,21 @@
|
|
1
|
-
|
1
|
+
MIT License
|
2
2
|
|
3
|
-
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
3
|
+
Copyright (c) 2025 なつき
|
10
4
|
|
11
|
-
|
12
|
-
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
13
11
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
Binary file
|
data/lib/sass/value/color.rb
CHANGED
@@ -51,11 +51,11 @@ module Sass
|
|
51
51
|
def initialize(**options)
|
52
52
|
unless options.key?(:space)
|
53
53
|
options[:space] = case options
|
54
|
-
in {red: _, green: _, blue: _}
|
54
|
+
in { red: _, green: _, blue: _ }
|
55
55
|
'rgb'
|
56
|
-
in {hue: _, saturation: _, lightness: _}
|
56
|
+
in { hue: _, saturation: _, lightness: _ }
|
57
57
|
'hsl'
|
58
|
-
in {hue: _, whiteness: _, blackness: _}
|
58
|
+
in { hue: _, whiteness: _, blackness: _ }
|
59
59
|
'hwb'
|
60
60
|
else
|
61
61
|
raise Sass::ScriptError.new('No color space found', 'space')
|
@@ -207,17 +207,17 @@ module Sass
|
|
207
207
|
|
208
208
|
if legacy? && !space_set_explictly
|
209
209
|
case options
|
210
|
-
in {whiteness: _} | {blackness: _}
|
210
|
+
in { whiteness: _ } | { blackness: _ }
|
211
211
|
space = Space::HWB
|
212
|
-
in {saturation: _} | {lightness: _}
|
212
|
+
in { saturation: _ } | { lightness: _ }
|
213
213
|
space = Space::HSL
|
214
|
-
in {hue: _}
|
214
|
+
in { hue: _ }
|
215
215
|
space = if _space == Space::HWB
|
216
216
|
Space::HWB
|
217
217
|
else
|
218
218
|
Space::HSL
|
219
219
|
end
|
220
|
-
in {red: _} | {blue: _} | {green: _}
|
220
|
+
in { red: _ } | { blue: _ } | { green: _ }
|
221
221
|
space = Space::RGB
|
222
222
|
else
|
223
223
|
end
|
data/lib/sass/value/number.rb
CHANGED
@@ -88,12 +88,12 @@ module Sass
|
|
88
88
|
end
|
89
89
|
|
90
90
|
FuzzyMath.equals(
|
91
|
-
|
91
|
+
value *
|
92
92
|
Unit.canonical_multiplier(numerator_units) /
|
93
|
-
Unit.canonical_multiplier(denominator_units)
|
94
|
-
|
93
|
+
Unit.canonical_multiplier(denominator_units),
|
94
|
+
other.value *
|
95
95
|
Unit.canonical_multiplier(other.numerator_units) /
|
96
|
-
Unit.canonical_multiplier(other.denominator_units)
|
96
|
+
Unit.canonical_multiplier(other.denominator_units)
|
97
97
|
)
|
98
98
|
end
|
99
99
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass-embedded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.88.0
|
5
5
|
platform: aarch64-linux-musl
|
6
6
|
authors:
|
7
7
|
- なつき
|
@@ -111,8 +111,8 @@ licenses:
|
|
111
111
|
- MIT
|
112
112
|
metadata:
|
113
113
|
bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
|
114
|
-
documentation_uri: https://rubydoc.info/gems/sass-embedded/1.
|
115
|
-
source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.
|
114
|
+
documentation_uri: https://rubydoc.info/gems/sass-embedded/1.88.0
|
115
|
+
source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.88.0
|
116
116
|
funding_uri: https://github.com/sponsors/ntkme
|
117
117
|
rubygems_mfa_required: 'true'
|
118
118
|
rdoc_options: []
|