sass-embedded 1.80.2-x86-linux-musl → 1.80.4-x86-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bbc4e91ff4c0cdf4cee1248cb19622427cc53f77a533884de2a29b04548344e
4
- data.tar.gz: 8b4ecfef5c8e560e0c0f334af54540fa206dcefbc2423c3fb6be64ebd4026c15
3
+ metadata.gz: 4f749057451f60ecc5e0c84ef0f22784270d8d5769061eb9ebabc35e95035f70
4
+ data.tar.gz: 4fdee07f1164a407d87a6f2a8f502e62a9a964cb6d604e1151748387901dd861
5
5
  SHA512:
6
- metadata.gz: 10275b6238df6c896dacc50649681f22bd3a7fccdf4c2729b2f2acaac75a8145578db17bd5e7c099d06230b33512782a88528f8ce07d06cac3b0342e2eb14cdb
7
- data.tar.gz: 15c46c7199c40ab7f2aeccdea6b1563666e2df81ac7cf4fbd317a924bb39df9a9e69884bc14e36a0a0311e4c71587a6ba402aa59ca219fe9d4d234e223cfebfb
6
+ metadata.gz: debf46b72298096a81dcafc661be5b6cbcab26160ab04449e0bbb2543fae0d4a355abc032d474d72e56a6b0ee7ef91371a971a4f02ef8e9644fcbd76c39be2e1
7
+ data.tar.gz: 863b2ef0f4a7b509c281a9b99ae85a0ffcca48e482125e4897aa165be9b6574d73e1ecf91a76883140b85f276f4bf0841dba40fa0779e59c2a0b1bc449568c84
Binary file
Binary file
@@ -39,7 +39,7 @@ module Sass
39
39
  argument_list: EmbeddedProtocol::Value::ArgumentList.new(
40
40
  id: obj.instance_eval { @id },
41
41
  contents: obj.to_a.map { |element| to_proto(element) },
42
- keywords: obj.keywords.each.with_object({}) { |(key, value), hash| hash[key.to_s] = to_proto(value) },
42
+ keywords: obj.keywords.each_with_object({}) { |(key, value), hash| hash[key.to_s] = to_proto(value) },
43
43
  separator: ListSeparator.to_proto(obj.separator)
44
44
  )
45
45
  )
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.80.2'
5
+ VERSION = '1.80.4'
6
6
  end
7
7
  end
@@ -7,7 +7,7 @@ module Sass
7
7
 
8
8
  CSS_ESCAPE = [*"\x01".."\x08", *"\x0A".."\x1F", "\x7F"]
9
9
  .product([*'0'..'9', *'a'..'f', *'A'..'F', "\t", ' ', nil])
10
- .each.with_object({ "\0" => "\uFFFD", '\\' => '\\\\', '"' => '\\"', "'" => "\\'" }) do |(c, x), h|
10
+ .each_with_object({ "\0" => "\uFFFD", '\\' => '\\\\', '"' => '\\"', "'" => "\\'" }) do |(c, x), h|
11
11
  h["#{c}#{x}".freeze] = "\\#{c.ord.to_s(16)}#{" #{x}" if x}".freeze
12
12
  end.freeze
13
13
 
@@ -141,7 +141,7 @@ module Sass
141
141
  'pixel density': %w[dpi dpcm dppx]
142
142
  }.freeze
143
143
 
144
- TYPES_BY_UNIT = UNITS_BY_TYPE.each.with_object({}) do |(key, values), hash|
144
+ TYPES_BY_UNIT = UNITS_BY_TYPE.each_with_object({}) do |(key, values), hash|
145
145
  values.each do |value|
146
146
  hash[value] = key
147
147
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.2
4
+ version: 1.80.4
5
5
  platform: x86-linux-musl
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-17 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -112,8 +112,8 @@ licenses:
112
112
  - MIT
113
113
  metadata:
114
114
  bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
115
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.80.2
116
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.80.2
115
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.80.4
116
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.80.4
117
117
  funding_uri: https://github.com/sponsors/ntkme
118
118
  rubygems_mfa_required: 'true'
119
119
  post_install_message: