sass-embedded 1.69.4-aarch64-linux-gnu → 1.69.5-aarch64-linux-gnu

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: c3ceaffd5160da92b6971e8e247d4329edcf83a2edff78a311ee484c6ef1a786
4
- data.tar.gz: 71a2ba5bcc6525599fffa809b5c696b7e6928a6805d120229c2cbe05e9052a7d
3
+ metadata.gz: 556ba39ff0f5ab4bfded4090f7b645e9ad67ea07bff27ba86ca51673b6b5d3d3
4
+ data.tar.gz: f807409f66da4d9f957ee3794a216979b00f9d2ef6d518d9bd54677806369243
5
5
  SHA512:
6
- metadata.gz: 580e2b580a45eac09e453e2d23fccf1f9ffdd0a6e8e1f0c879360c1c4a6dc1ccb2517b18c81a11db0669b09b3879049dc571aa3fcc9f8782dbff708e51b4a80e
7
- data.tar.gz: 014ba4ee705ff6df88a0184ddf089e268eda909eaed4f8688b5a5efc4107b5dfa0102387960a7489d7bb88c0add0d117ae04d6c2acc847586b6211fc0a6d9b1d
6
+ metadata.gz: f4c33bedee5eff2856f4589c4b3df7cc8b12561926390806d6c4f4980878de8bc07ace1c2eb55be64ce8e15aeb66d38474f84610a1e3e1e67b77f3dba64c9f23
7
+ data.tar.gz: 995017c1efb4dab176f8618e3a427622e0a6ae3f0a7efde6878d6e0d7e2475e49b65092e4bb394af02bd90609d75f8fa8dfcd00cd7ee7a8a597cc17b12d7c4e0
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-gnu
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: []