sass-embedded 1.80.0-x86-linux-musl → 1.80.2-x86-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b17420d44a60c0fed4c7b8a8fcceb01e6e4e6ae0caa2e6cac0b9f5d1093a5b70
4
- data.tar.gz: 8afe7f2d65535ce212620636331d23922870098759e0433313c5cc99fc384e73
3
+ metadata.gz: 0bbc4e91ff4c0cdf4cee1248cb19622427cc53f77a533884de2a29b04548344e
4
+ data.tar.gz: 8b4ecfef5c8e560e0c0f334af54540fa206dcefbc2423c3fb6be64ebd4026c15
5
5
  SHA512:
6
- metadata.gz: 2c8daf8e67374232e6aed60155905918141c3e81dcab3e9751146eba0271be8d2ba661b5d03fd82c89d2b8728a5fdb26232e1385ad8e17897b7031285500d820
7
- data.tar.gz: 7915819d47f69b5552c59a620f33cd3d7e0af1fe322aadc75cf908725ff7a423dbd020b0fbe87ff7c697e76c279b7a06d53874f4721fea51866e09635927ddf0
6
+ metadata.gz: 10275b6238df6c896dacc50649681f22bd3a7fccdf4c2729b2f2acaac75a8145578db17bd5e7c099d06230b33512782a88528f8ce07d06cac3b0342e2eb14cdb
7
+ data.tar.gz: 15c46c7199c40ab7f2aeccdea6b1563666e2df81ac7cf4fbd317a924bb39df9a9e69884bc14e36a0a0311e4c71587a6ba402aa59ca219fe9d4d234e223cfebfb
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.to_h { |key, value| [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
  )
@@ -126,8 +126,8 @@ module Sass
126
126
  obj.contents.map do |element|
127
127
  from_proto(element)
128
128
  end,
129
- obj.keywords.entries.to_h do |key, value|
130
- [key.to_sym, from_proto(value)]
129
+ obj.keywords.to_enum.with_object({}) do |(key, value), hash|
130
+ hash[key.to_sym] = from_proto(value)
131
131
  end,
132
132
  ListSeparator.from_proto(obj.separator)
133
133
  ).instance_eval do
@@ -144,8 +144,8 @@ module Sass
144
144
  )
145
145
  when :map
146
146
  Sass::Value::Map.new(
147
- obj.entries.to_h do |entry|
148
- [from_proto(entry.key), from_proto(entry.value)]
147
+ obj.entries.to_enum.with_object({}) do |entry, hash|
148
+ hash[from_proto(entry.key)] = from_proto(entry.value)
149
149
  end
150
150
  )
151
151
  when :compiler_function
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.80.0'
5
+ VERSION = '1.80.2'
6
6
  end
7
7
  end
@@ -5,17 +5,11 @@ module Sass
5
5
  module Serializer
6
6
  module_function
7
7
 
8
- CSS_ESCAPE = {
9
- "\0" => "\uFFFD",
10
- '\\' => '\\\\',
11
- '"' => '\\"',
12
- "'" => "\\'",
13
- **[*"\x01".."\x08", *"\x0A".."\x1F", "\x7F"].product(
14
- [*'0'..'9', *'a'..'f', *'A'..'F', "\t", ' ', nil]
15
- ).to_h do |c, x|
16
- ["#{c}#{x}".freeze, "\\#{c.ord.to_s(16)}#{" #{x}" if x}".freeze]
17
- end
18
- }.freeze
8
+ CSS_ESCAPE = [*"\x01".."\x08", *"\x0A".."\x1F", "\x7F"]
9
+ .product([*'0'..'9', *'a'..'f', *'A'..'F', "\t", ' ', nil])
10
+ .each.with_object({ "\0" => "\uFFFD", '\\' => '\\\\', '"' => '\\"', "'" => "\\'" }) do |(c, x), h|
11
+ h["#{c}#{x}".freeze] = "\\#{c.ord.to_s(16)}#{" #{x}" if x}".freeze
12
+ end.freeze
19
13
 
20
14
  private_constant :CSS_ESCAPE
21
15
 
@@ -141,10 +141,11 @@ module Sass
141
141
  'pixel density': %w[dpi dpcm dppx]
142
142
  }.freeze
143
143
 
144
- TYPES_BY_UNIT = UNITS_BY_TYPE.invert
145
- .to_a
146
- .flat_map { |pair| pair[0].map { |key| [key, pair[1]] } }
147
- .to_h
144
+ TYPES_BY_UNIT = UNITS_BY_TYPE.each.with_object({}) do |(key, values), hash|
145
+ values.each do |value|
146
+ hash[value] = key
147
+ end
148
+ end
148
149
 
149
150
  module_function
150
151
 
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.80.0
4
+ version: 1.80.2
5
5
  platform: x86-linux-musl
6
6
  authors:
7
7
  - なつき
@@ -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.0
116
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.80.0
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
117
117
  funding_uri: https://github.com/sponsors/ntkme
118
118
  rubygems_mfa_required: 'true'
119
119
  post_install_message: