sass-embedded 1.80.0-aarch64-linux-musl → 1.80.2-aarch64-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: '08edd8f2dc9fd576b00a8a150ab7c7b094a5227f34e128889c85541e62a87188'
4
- data.tar.gz: e027c177921163cbecc4664af9a1b12894afe66e2dd4f6bd50c8c2114313c1d3
3
+ metadata.gz: 4e66ddad2a718e19c17723256b20ece14bd9118083b9baffd58438f2de520068
4
+ data.tar.gz: f12ce94cd3f871a227d37718c12ec6302074cdedaddebcde0c408bded697541c
5
5
  SHA512:
6
- metadata.gz: '07525930f9f7da3a57493682bfcc7dfa5df0c05d6768b16b80dd8bc2f06a1c3d8a48ff87b8839d7ef8fece7da5e59bdcc50a84b04b4bfeba44c85e1482557e95'
7
- data.tar.gz: a5489bec8f8dcfc141abdc238faae91edafa7b92d302bef2dd7e285d8695bee9203001bf4f9c7afe77c5c850439b6fd1b9843b8cd32af96d793817ccba3c4c6f
6
+ metadata.gz: 06fc36901945b0f24691fc4c9bcc368bf7ad15810dab8062dbdcc1c829c5ed55d140d7b7df29f7596f5c61c5123c97ab83dcd2ff044404670d5de4c63e68feb9
7
+ data.tar.gz: a028c60de7c4395ccd233626d245498159b47fb67668227af5e89e4c18268a225fbe3f14d357a0e233897d906ca814bc3048215f550085ae949bf62c0810955b
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: aarch64-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: