sass-embedded 1.56.1-arm64-darwin → 1.56.2-arm64-darwin

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: 2399795174fdf45234f1e0f4ac6a04bad2eff4151966ab8db45647b1aa9ba85f
4
- data.tar.gz: 43b0ae0de89ffdd34aa459648e37013224741b6afeca5141d63ad16c03b2500c
3
+ metadata.gz: 7158fc5fe2c8c484c7029a21521af6fd50df92e5f54ad37b366deaf1dd18d01c
4
+ data.tar.gz: 2a345de66b0870553870a506f41980add9441142a7bd7a325141954519a21f9a
5
5
  SHA512:
6
- metadata.gz: c3d46689aa314f415dd27cbf81a7879be6e7b00edb8773948e15d8812a77b198f54bbe2523ce61cbbb18377a29f2fc5d90076aeaccf164a7e18e92b2e25bec5a
7
- data.tar.gz: a7b9268b53c3f8ba4eed31752e8f686512049e05bb2a637e103d1120acde124237fdc5f57ecd482e8b17b3fc13f39982d3acb2c4d59be3164b8ecc97ae6a7c70
6
+ metadata.gz: 11b1abd9027877c5d424015e58f7f868c0a635139a2e4d01925c00abf856d8d60a1df056ac80dbba6ad742190827cff3e09496f60d772e164115af16361c086d
7
+ data.tar.gz: 7d43e0ad653f30a51c4f5c459dbd469b35ef0ca15caa5511146759ba7e4e69a5e831832e91f98c866246f8da5816c947dc6a792e52423eada834ed13361f898f
@@ -1,4 +1,4 @@
1
- sass_embedded license:
1
+ Dart Sass Embedded license:
2
2
 
3
3
  Copyright (c) 2019, Google LLC
4
4
 
Binary file
@@ -15,26 +15,19 @@ module Sass
15
15
  private_constant :State
16
16
 
17
17
  def initialize
18
- @error = nil
19
18
  @result = nil
20
19
  @state = State::PENDING
21
20
 
22
21
  @condition_variable = ConditionVariable.new
23
22
  @mutex = Mutex.new
24
-
25
- begin
26
- yield if block_given?
27
- rescue StandardError => e
28
- reject e
29
- end
30
23
  end
31
24
 
32
25
  def resolve(value)
33
26
  @mutex.synchronize do
34
27
  return unless @state == State::PENDING
35
28
 
36
- @state = State::FULFILLED
37
29
  @result = value
30
+ @state = State::FULFILLED
38
31
  @condition_variable.broadcast
39
32
  end
40
33
  end
@@ -43,8 +36,8 @@ module Sass
43
36
  @mutex.synchronize do
44
37
  return unless @state == State::PENDING
45
38
 
39
+ @result = reason
46
40
  @state = State::REJECTED
47
- @error = reason
48
41
  @condition_variable.broadcast
49
42
  end
50
43
  end
@@ -53,7 +46,7 @@ module Sass
53
46
  @mutex.synchronize do
54
47
  @condition_variable.wait(@mutex) if @state == State::PENDING
55
48
 
56
- raise @error if @state == State::REJECTED
49
+ raise @result if @state == State::REJECTED
57
50
 
58
51
  @result
59
52
  end
@@ -70,13 +70,7 @@ module Sass
70
70
  when :error
71
71
  @mutex.synchronize do
72
72
  @id = PROTOCOL_ERROR_ID
73
- if message.type == :PARAMS
74
- []
75
- elsif message.id == PROTOCOL_ERROR_ID
76
- @observers.values
77
- else
78
- [@observers[message.id]]
79
- end
73
+ message.id == PROTOCOL_ERROR_ID ? @observers.values : [@observers[message.id]]
80
74
  end.each do |observer|
81
75
  observer.public_send(oneof, message)
82
76
  end
@@ -14,12 +14,11 @@ module Sass
14
14
 
15
15
  @global_functions = functions.keys
16
16
  @functions_by_name = functions.transform_keys do |signature|
17
- signature = signature.chomp
18
17
  index = signature.index('(')
19
18
  if index
20
- signature.slice(0, index)
19
+ signature.slice(0, index).chomp
21
20
  else
22
- signature
21
+ signature.chomp
23
22
  end
24
23
  end
25
24
 
@@ -86,10 +86,6 @@ module Sass
86
86
  importer = @importers_by_id[file_import_request.importer_id]
87
87
  file_url = importer.find_file_url(file_import_request.url, from_import: file_import_request.from_import)&.to_s
88
88
 
89
- if !file_url.nil? && !file_url.start_with?('file:')
90
- raise "file_url must be a file: URL, was #{file_url.inspect}"
91
- end
92
-
93
89
  EmbeddedProtocol::InboundMessage::FileImportResponse.new(
94
90
  id: file_import_request.id,
95
91
  file_url: file_url
@@ -180,7 +180,7 @@ module Sass
180
180
  when :compiler_function
181
181
  Sass::Value::Function.new(obj.id)
182
182
  when :host_function
183
- raise ProtocolError, 'The compiler may not send Value.host_function to host'
183
+ raise Sass::ScriptError, 'The compiler may not send Value.host_function to host'
184
184
  when :singleton
185
185
  case obj
186
186
  when :TRUE
@@ -15,14 +15,6 @@ module Sass
15
15
  @channel = channel
16
16
  end
17
17
 
18
- def id
19
- @connection.id
20
- end
21
-
22
- def send_message(**kwargs)
23
- @connection.send_message(**kwargs)
24
- end
25
-
26
18
  def compile_request(path:,
27
19
  source:,
28
20
  importer:,
@@ -85,11 +77,11 @@ module Sass
85
77
  end
86
78
 
87
79
  def compile_response(message)
88
- @async.resolve(message)
80
+ resolve(message)
89
81
  end
90
82
 
91
83
  def version_response(message)
92
- @async.resolve(message)
84
+ resolve(message)
93
85
  end
94
86
 
95
87
  def canonicalize_request(message)
@@ -109,7 +101,7 @@ module Sass
109
101
  end
110
102
 
111
103
  def error(message)
112
- @async.reject(CompileError.new(message.message, nil, nil, nil))
104
+ reject(CompileError.new(message.message, nil, nil, nil))
113
105
  end
114
106
 
115
107
  private
@@ -122,6 +114,22 @@ module Sass
122
114
  ensure
123
115
  @connection&.disconnect
124
116
  end
117
+
118
+ def resolve(value)
119
+ @async.resolve(value)
120
+ end
121
+
122
+ def reject(reason)
123
+ @async.reject(reason)
124
+ end
125
+
126
+ def id
127
+ @connection.id
128
+ end
129
+
130
+ def send_message(**kwargs)
131
+ @connection.send_message(**kwargs)
132
+ end
125
133
  end
126
134
 
127
135
  private_constant :Host
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  class Embedded
5
- VERSION = '1.56.1'
5
+ VERSION = '1.56.2'
6
6
  end
7
7
  end
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.56.1
4
+ version: 1.56.2
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-10 00:00:00.000000000 Z
11
+ date: 2022-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: 1.38.0
61
+ version: 1.40.0
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: 1.38.0
68
+ version: 1.40.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rubocop-performance
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -161,8 +161,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
161
161
  licenses:
162
162
  - MIT
163
163
  metadata:
164
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.56.1
165
- source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.56.1
164
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.56.2
165
+ source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v1.56.2
166
166
  funding_uri: https://github.com/sponsors/ntkme
167
167
  post_install_message:
168
168
  rdoc_options: []
@@ -179,7 +179,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
181
  requirements: []
182
- rubygems_version: 3.3.25
182
+ rubygems_version: 3.3.26
183
183
  signing_key:
184
184
  specification_version: 4
185
185
  summary: Use dart-sass with Ruby!