sass-embedded 1.80.2-arm-linux-musleabihf → 1.80.3-arm-linux-musleabihf

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: 9c0d4e7598dd7c078333fd04f252c22a159b5f64bfb6b3fcfd5a8825b5b37ea9
4
- data.tar.gz: eade8b9ece06f9bb572b15be8bfbd99ef736d24515a91b44a80a1e87dd4aad72
3
+ metadata.gz: a240fb02bfeebb4da6515bead84b48b31f0b36c92ee41ce73f66795f7630c4da
4
+ data.tar.gz: 433f06461ff1067e5013850ba6a901fe752305ff384d4c6e0ab67fbe3abcdaac
5
5
  SHA512:
6
- metadata.gz: 2783b3c5983e44a06b2c5ee2b23f66996a837571b49af5ad7fd1b8cef89429a2dc1c1c72d0b4bc7d62b6d94762a6572e516223a1d72b4a7a359663a166f9b4c7
7
- data.tar.gz: a9e2fdf470d82c76f6a0a098460ecc717d21c2040d322a22e01ca92a5aaf2001f562797f1cd697dbf3686204566e075af6ef88ee71e75c02a62750889f7bbcb4
6
+ metadata.gz: 4158c3c610c29f79ce3abc311511512968de8b0296a37174564eb3bb2654c9249628041b7f17a6e1f62a43a731b9dd72abead02baac03410827c99dc80200a48
7
+ data.tar.gz: 3827cddf91a18eefae0ce94bed498607511b741a174ea4b46e7cbe9174b3a0053ab76c7fd15ed3ec54778c5b20c3483050989b7e5e669bf6d79a4bd8ca2bfc27
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.3'
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.3
5
5
  platform: arm-linux-musleabihf
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-19 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.3
116
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.80.3
117
117
  funding_uri: https://github.com/sponsors/ntkme
118
118
  rubygems_mfa_required: 'true'
119
119
  post_install_message: