sass-embedded 1.80.2-riscv64-linux-musl → 1.80.3-riscv64-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: a69b287905ad7458f85ac7c43797a78d55dad4827ae869ed68f7cd47984e7d0b
4
- data.tar.gz: 5248c228905b0b45964f62a5d37ff44f0403b6f713e963ce4df538e521333705
3
+ metadata.gz: 16f0786a41c259d749ada39e041a3c03c672270718f2651f83ac48a4ba28b8c7
4
+ data.tar.gz: ec3603cf5dce41ae2c629d7d3f0edac3a5b105249314fed0df31c04675acdaba
5
5
  SHA512:
6
- metadata.gz: 1ce05fe322c86469fdb476223049aef79a2162ff46eaff98c6aba605f2ce4f767c39c7601c530c8d748e26d8344e319ce4b1df774ad43cf53c8859e29f56cd56
7
- data.tar.gz: a623e0ccfe51abbf75305e3de4b4a5266217009fecbe057e92ba2750291c09f8ab78e8cc4d13a2f8ffbea779408509708b4bdc829a9915f4fb2d630b2e51d94f
6
+ metadata.gz: d8c72761252ad53b33dd43ae488755499231231fd6928fd76f4abd0d3fbde890c3933687a3e67bd73a7014780dda8a9e54367862efcb6151e1e100c2bde807e3
7
+ data.tar.gz: d68eeb09f8aeb9db561805ed8d8ae8c2240bff198b9eb32efb6c4c864dbf2d57c8d375856e2622a2a70ebc68f13e0d7b0876e44985106fde969f5e2e5c01077e
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: riscv64-linux-musl
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: