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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c7adac466a3fa21929ea84eaf1b9e4db02af5c8e5c08ba772d54ed558a3a601
4
- data.tar.gz: 8b17268cf0e580ff903da0c1282f1421680edcc5a83c61fa7c8cd5dca38d0a0c
3
+ metadata.gz: 42eed0fcee0267256679de8457f0502e39f64b924670e14325cc12c366872e13
4
+ data.tar.gz: 17dfa5167a095a8925d76290917515f4205e1ae014a233c4427b3431e547929c
5
5
  SHA512:
6
- metadata.gz: 8b4acc3ffff2cdac880db564855d417cc2d8931cc2c53a4434f565969ce41d8ef44ce7d400de30128172ca9e442933a4f88d39a07c1bc0bdc1c6c5074e917390
7
- data.tar.gz: e4479f37b4635575d446c6a96cffbc162bd848c0443d945755bbf6bb5ebbf5626369d3f985b4000de00bfb4ab133a7028ad68ec9f98e7794d39949decda8151a
6
+ metadata.gz: 7d7ba3f1d32751311900b9d97a86b5dbee97a51baaddae72a11566f351a0eb1da58bba33cfd3f27634fbd658746737c9625463a5ac161bf68fc4adaf059b6b78
7
+ data.tar.gz: 4672c6c3c77bd3556decc859c0660b1d0d7dc38a1f67e1a72e70da1ab1f3a75a0e31484210b3987383eee19aea3e841d91554917561817c164d10ea25d12e19a
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-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: []