sass-embedded 1.69.4-aarch64-linux-musl → 1.69.5-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: ec3f8a749ffe893613007f0afc8237e70035faeb128990452ab11075e204aaaa
4
- data.tar.gz: a882319b094ec533f56233a17ca2a50f4afc9b09ce8f0e0ceee916e829e815a7
3
+ metadata.gz: 959bcc2f0962113f5930485fa25c9dee55ad2a52d9be879f9cc34733169ae25a
4
+ data.tar.gz: 3c4d147a76e61d1a84dd71f093d008bb6412e5fa3a7d4e4fbe216e03e5ac7772
5
5
  SHA512:
6
- metadata.gz: b22ae563c2eefef825475635d0c7cd9a6c5f933531adf52af4afe0076c19bcbcc067425342e127e526f1e258c89d55cc1e86b30c3c52d5d2218b5542a794b68b
7
- data.tar.gz: e28458aa85a660cfecedb34e1622b04d2435dc8b106d3d0b13fdcd7bed6a7b502639930af59aa63f3a12cd7a480b366f6ec7f3d66458aa717e7a38529000b947
6
+ metadata.gz: faaf6bcd398add602841954baa30edd41da22607411642ec00ee941369c738c7aecc33b8096a8dedd61f452cc258e93f154a2f806b375933bced380284625e8a
7
+ data.tar.gz: e20bc8c6fe653acbc85fe9b3b057cd8344235cbf20dc4a11382c4a37ba56351135e50e21ca8d2ab7be9535aa0c07a2d0b09823c0cfbd6b776a4d8358babfd5e6
Binary file
Binary file
@@ -11,6 +11,7 @@ module Sass
11
11
  # It runs the `sass --embedded` command.
12
12
  class Connection
13
13
  def initialize(dispatcher)
14
+ @mutex = Mutex.new
14
15
  @stdin, stdout, stderr, @wait_thread = begin
15
16
  Open3.popen3(*CLI::COMMAND, '--embedded', chdir: __dir__)
16
17
  rescue Errno::ENOENT
@@ -59,7 +60,9 @@ module Sass
59
60
  buffer = []
60
61
  Varint.write(buffer, Varint.length(id) + proto.length)
61
62
  Varint.write(buffer, id)
62
- @stdin.write(buffer.pack('C*'), proto)
63
+ @mutex.synchronize do
64
+ @stdin.write(buffer.pack('C*'), proto)
65
+ end
63
66
  end
64
67
  end
65
68
 
@@ -10,14 +10,14 @@ module Sass
10
10
  module_function
11
11
 
12
12
  def to_struct(obj, *symbols)
13
- return obj unless obj.is_a? Hash
13
+ return obj unless obj.is_a?(Hash)
14
14
 
15
15
  struct = Object.new
16
16
  symbols.each do |key|
17
17
  next unless obj.key?(key)
18
18
 
19
19
  value = obj[key]
20
- if value.respond_to? :call
20
+ if value.respond_to?(:call)
21
21
  struct.define_singleton_method key do |*args, **kwargs|
22
22
  value.call(*args, **kwargs)
23
23
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  class Embedded
5
- VERSION = '1.69.4'
5
+ VERSION = '1.69.5'
6
6
  end
7
7
  end
data/lib/sass/embedded.rb CHANGED
@@ -70,9 +70,8 @@ module Sass
70
70
  at_exit do
71
71
  @instance.close
72
72
  end
73
+ @instance
73
74
  end
74
-
75
- @instance
76
75
  end
77
76
  end
78
77
  # rubocop:enable Layout/LineLength
@@ -50,42 +50,42 @@ module Sass
50
50
 
51
51
  # @return [Integer]
52
52
  def red
53
- hsl_to_rgb unless defined? @red
53
+ hsl_to_rgb unless defined?(@red)
54
54
 
55
55
  @red
56
56
  end
57
57
 
58
58
  # @return [Integer]
59
59
  def green
60
- hsl_to_rgb unless defined? @green
60
+ hsl_to_rgb unless defined?(@green)
61
61
 
62
62
  @green
63
63
  end
64
64
 
65
65
  # @return [Integer]
66
66
  def blue
67
- hsl_to_rgb unless defined? @blue
67
+ hsl_to_rgb unless defined?(@blue)
68
68
 
69
69
  @blue
70
70
  end
71
71
 
72
72
  # @return [Numeric]
73
73
  def hue
74
- rgb_to_hsl unless defined? @hue
74
+ rgb_to_hsl unless defined?(@hue)
75
75
 
76
76
  @hue
77
77
  end
78
78
 
79
79
  # @return [Numeric]
80
80
  def saturation
81
- rgb_to_hsl unless defined? @saturation
81
+ rgb_to_hsl unless defined?(@saturation)
82
82
 
83
83
  @saturation
84
84
  end
85
85
 
86
86
  # @return [Numeric]
87
87
  def lightness
88
- rgb_to_hsl unless defined? @lightness
88
+ rgb_to_hsl unless defined?(@lightness)
89
89
 
90
90
  @lightness
91
91
  end
@@ -29,7 +29,7 @@ module Sass
29
29
  # @return [::Boolean]
30
30
  def ==(other)
31
31
  if id.nil?
32
- other.equal? self
32
+ other.equal?(self)
33
33
  else
34
34
  other.is_a?(Sass::Value::Function) && other.id == id
35
35
  end
@@ -30,7 +30,7 @@ module Sass
30
30
  # @param index [Numeric, Value]
31
31
  # @return [List<(Value, Value)>, Value]
32
32
  def at(index)
33
- if index.is_a? Numeric
33
+ if index.is_a?(Numeric)
34
34
  index = index.floor
35
35
  index = to_a_length + index if index.negative?
36
36
  return nil if index.negative? || index >= to_a_length
@@ -25,12 +25,12 @@ module Sass
25
25
  denominator_units = []
26
26
  when ::Hash
27
27
  numerator_units = unit.fetch(:numerator_units, [])
28
- unless numerator_units.is_a? Array
28
+ unless numerator_units.is_a?(Array)
29
29
  raise Sass::ScriptError, "invalid numerator_units #{numerator_units.inspect}"
30
30
  end
31
31
 
32
32
  denominator_units = unit.fetch(:denominator_units, [])
33
- unless denominator_units.is_a? Array
33
+ unless denominator_units.is_a?(Array)
34
34
  raise Sass::ScriptError, "invalid denominator_units #{denominator_units.inspect}"
35
35
  end
36
36
  else
@@ -75,7 +75,7 @@ module Sass
75
75
 
76
76
  # @return [::Boolean]
77
77
  def ==(other)
78
- return false unless other.is_a? Sass::Value::Number
78
+ return false unless other.is_a?(Sass::Value::Number)
79
79
 
80
80
  return false if numerator_units.length != other.numerator_units.length ||
81
81
  denominator_units.length != other.denominator_units.length
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.69.4
4
+ version: 1.69.5
5
5
  platform: aarch64-linux-musl
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-17 00:00:00.000000000 Z
11
+ date: 2023-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -85,8 +85,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
85
85
  licenses:
86
86
  - MIT
87
87
  metadata:
88
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.69.4
89
- source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.69.4
88
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.69.5
89
+ source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.69.5
90
90
  funding_uri: https://github.com/sponsors/ntkme
91
91
  post_install_message:
92
92
  rdoc_options: []