sass-embedded 1.80.2-x86_64-darwin → 1.80.4-x86_64-darwin

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: 4edbf336d989108ed0513f771c57b8f8b79fb4865fda79bb0fc8f28c9d4ca406
4
- data.tar.gz: e88eb76bdcfd7572e835c5ecca1ca8e8098c2faf8ce9d14c5c9eb893ae28ca39
3
+ metadata.gz: f9434ed93a7ea8d1a98b9dc2e49f189d885ecfd3af77aec1c6fe28781c3cb48c
4
+ data.tar.gz: d58dfdc8963568dadc2ee942ed78933bc2fed8e9b104551b0a94155266540ae3
5
5
  SHA512:
6
- metadata.gz: 508b6c66e76b31a86fe4537edab8d64dbe1a9ce50cdbb3285dee2bc4585ae7ef4d0b8a7d5d07b40dda9aef2d29f04e2439b9c991f28189b9fe40019d17c3a3b9
7
- data.tar.gz: 191a89b391a144a350897caef11975625400d2d89fdb838726795c67b4a080c2372dc05ddc3fb14d059ff5b8fa75fa0adb16312b77f90e272296a5bdc92cfc14
6
+ metadata.gz: 16024a3f70225f4efbf90aa076c7c88193d707d9011151b97b969eec73dbbc701a5c5d757f87381165f35107a8fda8ff37173d6ff624311a509e2acfd478a8fa
7
+ data.tar.gz: 5f38a8407a1c9ca9107638964d82dfaa70a424c6a1c3b950af07582692c17ca25353d51ba350701183bd7b59245e8ed38840bcf22393d16090b0cd2ff5956a02
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_64-darwin
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: