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

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: e8b51971fea9f5d426b36112e9a6fde846f2f79707cd358b37c188615179bb3c
4
- data.tar.gz: d02a403803d8ada3c95a2951a5034075bb1300f09a55a84fccf851d618060ae9
3
+ metadata.gz: e2a4c5f521545557037497b3ed4b5f53fdf133ab7a02f64650bb303e9e8e1cf0
4
+ data.tar.gz: a9ebca5a3b26005509156c9c63415431f5039601ada3e332532903a62329adbe
5
5
  SHA512:
6
- metadata.gz: d92c3545814ea6a828094701a0002c31f0499f13a15e97cc566e3fa6573987b37c8a1da7ffa7e5c07b909db49581e4335755eb8c656072cd42ad012d6b4a7b39
7
- data.tar.gz: 3923302734d3f38dac8265fdb31cef4cc7b6e45fcdbdbb9c09efce985d95472009bd6090ffd52cc77c51239d691f87b688fb0a4881299de407caf6f161a6ed49
6
+ metadata.gz: 01a1af91eb7f08c227d84bb71756dca60a77086cd8794824ad319c519f319d06e2efb9d7d035464a1c8a4a08d74987b33bbd07654314a486e1ed4fc495e63a67
7
+ data.tar.gz: 41684ba75f247e581bae0371365a58718f6312c27b8b17de263c700494041c7a6d3b0c34cb63bdc6b49c9e71ac318b4370378f87df699b61c3de1e9dc7e5bf3a
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-android
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: []