sass-embedded 1.69.4-x86_64-linux-musl → 1.69.5-x86_64-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: 3d78496f8fa954236a7a0ca0c362b561c47e2d386b0166cd3e9d8343f4e47034
4
- data.tar.gz: c895d6d4c9ca892b3c13310fde4b071bdaba4373b94463fce8eaff0b58552a03
3
+ metadata.gz: 6f0ba41ce18adbec1f0a25c5719482c07d8d404c62090adb243ad2ab0bc0e991
4
+ data.tar.gz: 7aa6ae716249d6b1036be6f5401e33ef22066605602660899c341e833e7c44b4
5
5
  SHA512:
6
- metadata.gz: '091e62a5fb371aeb41eeb96bfc2e69e1568d5fe6d7e6c50d328841c99408741506e271065b826f648bcb4a831de9c8e14c63be31a68600886ed99ae84d8e45d2'
7
- data.tar.gz: 837849e6ba610873ba391a04a26da2f117d86bd78e92488249b287047c419ed7bfd30f85a0dde37fb10dd950793da8faea95dbc830742233813de187cf3bbbbb
6
+ metadata.gz: b06846204fff7f6688ebea729b15b688beb9eb16b55b021256f98d8b8e51e668cba969cb1bad35182483cfbd4e37e5eca37bca20eae76e8d61bb7a6962083f1a
7
+ data.tar.gz: ad79dfe7ef4489e27eabc67ce0dfb72cf2dd793a8de0cc81accbc3417ce509562da5a12ad181e565a05409f480966e8606d69f7f0777eabfd9c5b1db9168a25f
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: x86_64-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: []