sass-embedded 0.19.4 → 0.19.5

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: 12ce63a7fedb676fb7898007947caf7cf9c0b3f9cbf9ace7650a96ea975c759e
4
- data.tar.gz: ae244e0545f7de1c2c96adc9aff32839d3d9a91e4622b595240bc6788acd7279
3
+ metadata.gz: 1231cd99e6d3df128ffa348ac4e57f9dfef1d4d2bdd45cd916f24acf9c077f33
4
+ data.tar.gz: '0293ab277eb26fe189c6063cd3af3a6fe875fa521d7d5b80f6544ed88e0e12e7'
5
5
  SHA512:
6
- metadata.gz: d3fee2d250ed1b1f0a4aa4dd5bf3ea86435b1113ca9776094121f6509f3da2b7f10f0bbdb75b312b7a1a71be71f57f03fcb6c3e9614f62cda4d50df8315a2cc5
7
- data.tar.gz: 67cf5ff660de4c7bac4a9787dd0c896d491eae3bceed1ab93023dead14a3489b19827e5270d453c950d09c990216c42cb645c4ca59ffb5a0f66679357acc609d
6
+ metadata.gz: fff3b1ffa24f23e062c11e962db486b2710740442dc2314158530bbc7481bb27bfb631f3242a35bcd91d4bf17846d9befa2b32e7416a6188480ec4c6c4f3b0c9
7
+ data.tar.gz: c6154169700856bdf1d96497b0e8f2906f2dc6eb28f6c0213c603d7b69fcd3693ef034ae897ae9df826544908a02f3f5ea06d0f7234912fb8d9a893e6c8caed6
@@ -8,7 +8,6 @@ module Sass
8
8
  class Host
9
9
  def initialize(channel)
10
10
  @channel = channel
11
- @mutex = Mutex.new
12
11
  end
13
12
 
14
13
  def id
@@ -119,14 +118,14 @@ module Sass
119
118
  private
120
119
 
121
120
  def await
122
- @mutex.synchronize do
123
- @connection = @channel.connect(self)
124
- @async = Async.new
125
- yield
126
- @async.await
127
- ensure
128
- @connection.disconnect
129
- end
121
+ raise EOFError unless @async.nil?
122
+
123
+ @connection = @channel.connect(self)
124
+ @async = Async.new
125
+ yield
126
+ @async.await
127
+ ensure
128
+ @connection.disconnect
130
129
  end
131
130
  end
132
131
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  class Embedded
5
- VERSION = '0.19.4'
5
+ VERSION = '0.19.5'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-embedded
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.4
4
+ version: 0.19.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - なつき
@@ -163,8 +163,8 @@ homepage: https://github.com/ntkme/sass-embedded-host-ruby
163
163
  licenses:
164
164
  - MIT
165
165
  metadata:
166
- documentation_uri: https://www.rubydoc.info/gems/sass-embedded/0.19.4
167
- source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v0.19.4
166
+ documentation_uri: https://www.rubydoc.info/gems/sass-embedded/0.19.5
167
+ source_code_uri: https://github.com/ntkme/sass-embedded-host-ruby/tree/v0.19.5
168
168
  funding_uri: https://github.com/sponsors/ntkme
169
169
  post_install_message:
170
170
  rdoc_options: []