sass-embedded 1.87.0-aarch64-linux-gnu → 1.88.0-aarch64-linux-gnu

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bb694e852d7728659dd7705c99bb3d26d6487e2450e740d35b8e696ccc281d5
4
- data.tar.gz: be62b2469792745344b179c1b1e16cf1a42ff9835496be11a8bf321f79b506d5
3
+ metadata.gz: 94d286c3b8f8f5a7e8d7a2248064cd89dbba4050807f6da2b9ca636f8ebdb4c0
4
+ data.tar.gz: 1f38e522f183dc9d06c70632e3c9f8a45a63752a61fce926eaef54495a0e552c
5
5
  SHA512:
6
- metadata.gz: 0c1d917ea1c6daaac6857c0dcf28c3bedd05dd7a0c05c804c4c92592a62a43e3f3db6945c28f2a5d698bad19ad0f274d2bc9683ef22189a9fa24e6db9cd251d4
7
- data.tar.gz: ff54cb62aea918267e34f183c4acb41e308dc49b558f4f2c7a94dfad166ccce0c6727887a7afcc9e0fad4fd8efa2073a913f5b8e7464b29a82ae211dee409eaf
6
+ metadata.gz: 259062d68afcd3e8623ea75247daba339d569020ab109a9251abedf2256b61f159de87ea23d48f0cf5eab7f9d48d7c07d3023c7990e8b794f3a4fe1ccf667748
7
+ data.tar.gz: add4e7acfc29ebd9cbef625314ef7dd537bb4cbcd2a2b536e9087dadb85f2f978230e5827bc862320d1b2a6891bb9c9bd743abdc23b9ff20d876fbb5ecd2fb04
data/LICENSE CHANGED
@@ -1,20 +1,21 @@
1
- Copyright (c) 2022, なつき
1
+ MIT License
2
2
 
3
- Permission is hereby granted, free of charge, to any person obtaining
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
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
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
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.87.0'
5
+ VERSION = '1.88.0'
6
6
  end
7
7
  end
@@ -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
@@ -88,12 +88,12 @@ module Sass
88
88
  end
89
89
 
90
90
  FuzzyMath.equals(
91
- (value *
91
+ value *
92
92
  Unit.canonical_multiplier(numerator_units) /
93
- Unit.canonical_multiplier(denominator_units)),
94
- (other.value *
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.87.0
4
+ version: 1.88.0
5
5
  platform: aarch64-linux-gnu
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.87.0
115
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.87.0
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: []