sass-embedded 1.86.0-x86_64-darwin → 1.86.1-x86_64-darwin

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: 884d802bf660d9483a699aef7334af535f1ba0f1b0cb0912970a00af5f778039
4
- data.tar.gz: 2afe1910cfba29ed4aeb495a84b6217415e0e0e9b733a948c6453de9007b58b1
3
+ metadata.gz: 42435b76c50e21a35e5427fb1178339c31d19043ef5bea996201cf8b4458f143
4
+ data.tar.gz: 679070a686735ebc40a5cfda28032d0522f6718f7cb0ae5c03af02bd6091d603
5
5
  SHA512:
6
- metadata.gz: 686c2b5a1c3fbd48dff0de6b2653484125b93052edd2be11ef7806f02c99604cfe2f02c61b799440cea5775759520a929c94b8203158e1a77fd5472909a0ff06
7
- data.tar.gz: 8ac0fc6e9b161df76a9c7d835ab89981db6a06d18f9937774405bf4364194c145e6572eea7bd57c1f8cbc318952430859316b3336ceb2ecede6abff2ee8ca271
6
+ metadata.gz: 961f8a2baf3b1137e557ab81a94f720b486130b7ba98e71d5d87b03dd1eeaea8f50f300e730b616d8a0ec179f6169b54adfd08e0fa336ceb688eba91b709d6bb
7
+ data.tar.gz: 585ba8643124fa7490006a9355dcc9a1b74ea7706f66bdff5683ff0a106efd5f128b289b8d38e74eafd4a2630896e9bed323ef5d48c160df93cabb32d7f1c93b
Binary file
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.86.0'
5
+ VERSION = '1.86.1'
6
6
  end
7
7
  end
@@ -275,17 +275,15 @@ module Sass
275
275
  name: nil,
276
276
  other: nil,
277
277
  other_name: nil)
278
- if other && (other.numerator_units != new_denominator_units && other.denominator_units != new_denominator_units)
279
- raise Sass::ScriptError, "Expected #{other} to have units #{unit_string(new_numerator_units,
280
- new_denominator_units).inspect}"
278
+ unless other.nil? ||
279
+ (other.numerator_units == new_numerator_units && other.denominator_units == new_denominator_units)
280
+ raise Sass::ScriptError,
281
+ "Expected #{other} to have units #{unit_string(new_numerator_units, new_denominator_units).inspect}"
281
282
  end
282
283
 
283
284
  return value if numerator_units == new_numerator_units && denominator_units == new_denominator_units
284
285
 
285
- return value if numerator_units == new_numerator_units && denominator_units == new_denominator_units
286
-
287
286
  other_unitless = new_numerator_units.empty? && new_denominator_units.empty?
288
-
289
287
  return value if coerce_unitless && (unitless? || other_unitless)
290
288
 
291
289
  compatibility_error = lambda {
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.86.0
4
+ version: 1.86.1
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - なつき
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-03-17 00:00:00.000000000 Z
10
+ date: 2025-03-31 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-protobuf
@@ -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.86.0
115
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.86.0
114
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.86.1
115
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.86.1
116
116
  funding_uri: https://github.com/sponsors/ntkme
117
117
  rubygems_mfa_required: 'true'
118
118
  rdoc_options: []