sass-embedded 1.89.2-aarch64-linux-musl → 1.90.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/ext/sass/dart-sass/src/LICENSE +4 -4
- data/ext/sass/dart-sass/src/dart +0 -0
- data/ext/sass/dart-sass/src/sass.snapshot +0 -0
- data/lib/sass/embedded/version.rb +1 -1
- data/lib/sass/value/color.rb +4 -4
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a555ce5d48fb5092c4d7a2c1b930e534dd22dfc186b21030f6743cc1a01045ba
|
4
|
+
data.tar.gz: 9ac8ec49c5bccc30ab81b8abacd18dda96e8141967f2740be27d2f5ea5e60836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7eb2f39d953a4a6709ab2bf68d58cfa2e6ec7c43f40bb14d4baff93f7c5ca83e76bdad037a6fa128a8f14f618e48e9afbf51cb8ed7a689d36af56cd11d9440b
|
7
|
+
data.tar.gz: a92ce359f16e54c6b6c432cf69f82904a9de84836a43a3baf009522d0c22c544a7a8561b452046950c6a410fb742636e3a46ac4cb5d93996cedffd5f56494d9d
|
@@ -614,8 +614,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
614
614
|
|
615
615
|
--------------------------------------------------------------------------------
|
616
616
|
|
617
|
-
coverage, dartdoc, glob, http, http_parser, matcher, path, pool,
|
618
|
-
source_span, string_scanner, test and watcher license:
|
617
|
+
coverage, dart_style, dartdoc, glob, http, http_parser, matcher, path, pool,
|
618
|
+
pub_semver, source_span, string_scanner, test and watcher license:
|
619
619
|
|
620
620
|
Copyright 2014, the Dart project authors.
|
621
621
|
|
@@ -1186,7 +1186,7 @@ petitparser license:
|
|
1186
1186
|
|
1187
1187
|
The MIT License
|
1188
1188
|
|
1189
|
-
Copyright (c) 2006-
|
1189
|
+
Copyright (c) 2006-2024 Lukas Renggli.
|
1190
1190
|
All rights reserved.
|
1191
1191
|
|
1192
1192
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
@@ -1645,7 +1645,7 @@ xml license:
|
|
1645
1645
|
|
1646
1646
|
The MIT License
|
1647
1647
|
|
1648
|
-
Copyright (c) 2006-
|
1648
|
+
Copyright (c) 2006-2025 Lukas Renggli.
|
1649
1649
|
All rights reserved.
|
1650
1650
|
|
1651
1651
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
data/ext/sass/dart-sass/src/dart
CHANGED
Binary file
|
Binary file
|
data/lib/sass/value/color.rb
CHANGED
@@ -421,9 +421,9 @@ module Sass
|
|
421
421
|
def _in_gamut?
|
422
422
|
return true unless _space.bounded?
|
423
423
|
|
424
|
-
_is_channel_in_gamut(channel0, _space.channels[0]) &&
|
425
|
-
_is_channel_in_gamut(channel1, _space.channels[1]) &&
|
426
|
-
_is_channel_in_gamut(channel2, _space.channels[2])
|
424
|
+
_is_channel_in_gamut?(channel0, _space.channels[0]) &&
|
425
|
+
_is_channel_in_gamut?(channel1, _space.channels[1]) &&
|
426
|
+
_is_channel_in_gamut?(channel2, _space.channels[2])
|
427
427
|
end
|
428
428
|
|
429
429
|
def _to_gamut(method)
|
@@ -485,7 +485,7 @@ module Sass
|
|
485
485
|
((hue % 360) + 360 + (invert ? 180 : 0)) % 360
|
486
486
|
end
|
487
487
|
|
488
|
-
def _is_channel_in_gamut(value, channel)
|
488
|
+
def _is_channel_in_gamut?(value, channel)
|
489
489
|
case channel
|
490
490
|
when LinearChannel
|
491
491
|
FuzzyMath.less_than_or_equals?(value, channel.max) && FuzzyMath.greater_than_or_equals?(value, channel.min)
|
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.90.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.90.0
|
115
|
+
source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.90.0
|
116
116
|
funding_uri: https://github.com/sponsors/ntkme
|
117
117
|
rubygems_mfa_required: 'true'
|
118
118
|
rdoc_options: []
|
@@ -129,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
129
|
- !ruby/object:Gem::Version
|
130
130
|
version: '0'
|
131
131
|
requirements: []
|
132
|
-
rubygems_version: 3.
|
132
|
+
rubygems_version: 3.7.1
|
133
133
|
specification_version: 4
|
134
134
|
summary: Use dart-sass with Ruby!
|
135
135
|
test_files: []
|