sass-embedded 1.80.2-x64-mingw-ucrt → 1.80.4-x64-mingw-ucrt

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: be9962699ac749ade61f8660c34f7383934246e659c3bd08b28e69ba178102a2
4
- data.tar.gz: 1fdbd5bdde1840693f8967a4345c091c27908d4306355ad4ab9076a2dd76d7a3
3
+ metadata.gz: 769d312ca198381a86411792c12cb791dcfc76f67654540d5f2703b52effeac2
4
+ data.tar.gz: 37a6a9cdd20460ba46e3bf7ec8316d0b924e7aaeb37a9bd5a9426df1c361aeb4
5
5
  SHA512:
6
- metadata.gz: 130310cfe2e1ad1a5fc289c44f3c53c228d9c2c845eb4cffa53869f96ffa2048e9d71cadf0fe40a43971fc0d036c3f03b743fd8545e576ec3a170f9c372c6655
7
- data.tar.gz: 6f94a792bfc14c4e7555f4f20e408d62453a7545fa79ed30ef8b30ed5c1beeb3e40db4d56f695e9e709733abbdd243cf29ee671145d835745f39b1523249506e
6
+ metadata.gz: 60fe8ed3b7c97548626bd664ee82f11729a327e07db0f2618de8723232cbbfa1937531a21658901a7bc66301ac1c26336e11906749ea0aadef856cce1fc81c94
7
+ data.tar.gz: f5ce128c5e7c92af3d5622b36dccaf6c6968567366ae258b184fa72dba545ca05d24d1dfa91b1e81dbc1b87c174be68d3d6d404d6156eaf33038ac34dfce42ef
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: x64-mingw-ucrt
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: