sass-embedded 1.76.0-aarch64-linux-android → 1.77.1-aarch64-linux-android

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: 57db23128a6bcf7e6be2f96c966e0cc3eb9df4d75d34bc7e94c3d5e20d4801aa
4
- data.tar.gz: 6dd72c1ad20a465b4bc2b893f267cefff70edf41f1987cb66dbca9fc45e94170
3
+ metadata.gz: 7aff8d5ce96ea02046bc1ec1540471ccdc6b767742719cf19dc2dc79131ab889
4
+ data.tar.gz: a359c94d51bd1033aa3d5de5a5fb060fa86875ed9ab07663ceb9632f202e1f5f
5
5
  SHA512:
6
- metadata.gz: aeb0bc1e040a37a6796c487a82aa0df5539943f81a7bc5a2db7f5d3497fbf88f3da6ec7007eddd7fbb6555285d6821d8ac7aaac4b940d2970f707931fd1a91e7
7
- data.tar.gz: b500e3fa4511a0ed40973cb7edcd5c1f15d09cd817193ed5e80b92bb75db9d1ced4190927cf9d38b434f5fd9acd094cfb4d29af1bc27a67df08cf95c78d7f957
6
+ metadata.gz: 620b6a45a99525bb18458ea89d93f90d67e9221126bf004bd8243fafdcdf02451902ea34efd9dbc52c21f5b55d0193ede7b56954e9e6491fd2f1dc2378b18a85
7
+ data.tar.gz: 12507bf023a9a523d4e98b6ab3a48bb508d470a9cd5ef269abdc15feee9a714eed021f51de7a02c81334ac525234acf2287c7cb6ccefc2d346ee5a06fa734f0e
data/exe/sass CHANGED
@@ -5,7 +5,7 @@ require_relative '../ext/sass/cli'
5
5
 
6
6
  module Sass
7
7
  # The `sass` command line interface
8
- class CLI
8
+ module CLI
9
9
  begin
10
10
  Kernel.exec(*COMMAND, *ARGV)
11
11
  rescue Errno::ENOENT
data/ext/sass/cli.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Sass
4
- class CLI
4
+ module CLI
5
5
  COMMAND = [
6
6
  File.absolute_path('dart-sass/src/dart', __dir__).freeze,
7
7
  File.absolute_path('dart-sass/src/sass.snapshot', __dir__).freeze
@@ -1635,6 +1635,39 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1635
1635
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1636
1636
 
1637
1637
 
1638
+ --------------------------------------------------------------------------------
1639
+
1640
+ web_socket license:
1641
+
1642
+ Copyright 2024, the Dart project authors.
1643
+
1644
+ Redistribution and use in source and binary forms, with or without
1645
+ modification, are permitted provided that the following conditions are
1646
+ met:
1647
+
1648
+ * Redistributions of source code must retain the above copyright
1649
+ notice, this list of conditions and the following disclaimer.
1650
+ * Redistributions in binary form must reproduce the above
1651
+ copyright notice, this list of conditions and the following
1652
+ disclaimer in the documentation and/or other materials provided
1653
+ with the distribution.
1654
+ * Neither the name of Google LLC nor the names of its
1655
+ contributors may be used to endorse or promote products derived
1656
+ from this software without specific prior written permission.
1657
+
1658
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1659
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1660
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1661
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1662
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1663
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1664
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1665
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1666
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1667
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1668
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1669
+
1670
+
1638
1671
  --------------------------------------------------------------------------------
1639
1672
 
1640
1673
  yaml license:
Binary file
@@ -7,13 +7,17 @@ module Sass
7
7
  # @see https://sass-lang.com/documentation/js-api/interfaces/canonicalizecontext/
8
8
  class CanonicalizeContext
9
9
  # @return [String, nil]
10
- attr_reader :containing_url
10
+ def containing_url
11
+ @containing_url_unused = false
12
+ @containing_url
13
+ end
11
14
 
12
15
  # @return [Boolean]
13
16
  attr_reader :from_import
14
17
 
15
18
  # @!visibility private
16
19
  def initialize(canonicalize_request)
20
+ @containing_url_unused = true
17
21
  @containing_url = canonicalize_request.containing_url == '' ? nil : canonicalize_request.containing_url
18
22
  @from_import = canonicalize_request.from_import
19
23
  end
@@ -10,7 +10,7 @@ module Sass
10
10
  #
11
11
  # It runs the `sass --embedded` command.
12
12
  class Connection
13
- def initialize(dispatcher)
13
+ def initialize
14
14
  @mutex = Mutex.new
15
15
  @stdin, @stdout, @stderr, @wait_thread = begin
16
16
  Open3.popen3(*CLI::COMMAND, '--embedded', chdir: __dir__)
@@ -23,7 +23,9 @@ module Sass
23
23
  end
24
24
 
25
25
  @stdin.binmode
26
+ end
26
27
 
28
+ def listen(dispatcher)
27
29
  Thread.new do
28
30
  Thread.current.name = "sass-embedded-process-stdout-poller-#{@wait_thread.pid}"
29
31
 
@@ -10,7 +10,8 @@ module Sass
10
10
  @id = 1
11
11
  @observers = {}.compare_by_identity
12
12
  @mutex = Mutex.new
13
- @connection = Connection.new(self)
13
+ @connection = Connection.new
14
+ @connection.listen(self)
14
15
  ForkTracker.add(self)
15
16
  end
16
17
 
@@ -68,12 +68,14 @@ module Sass
68
68
 
69
69
  def canonicalize(canonicalize_request)
70
70
  importer = @importers_by_id[canonicalize_request.importer_id]
71
+ canonicalize_context = CanonicalizeContext.new(canonicalize_request)
71
72
  url = importer.canonicalize(canonicalize_request.url,
72
- CanonicalizeContext.new(canonicalize_request))&.to_s
73
+ canonicalize_context)&.to_s
73
74
 
74
75
  EmbeddedProtocol::InboundMessage::CanonicalizeResponse.new(
75
76
  id: canonicalize_request.id,
76
- url:
77
+ url:,
78
+ containing_url_unused: canonicalize_context.instance_eval { @containing_url_unused }
77
79
  )
78
80
  rescue StandardError => e
79
81
  EmbeddedProtocol::InboundMessage::CanonicalizeResponse.new(
@@ -103,12 +105,14 @@ module Sass
103
105
 
104
106
  def file_import(file_import_request)
105
107
  importer = @importers_by_id[file_import_request.importer_id]
108
+ canonicalize_context = CanonicalizeContext.new(file_import_request)
106
109
  file_url = importer.find_file_url(file_import_request.url,
107
- CanonicalizeContext.new(file_import_request))&.to_s
110
+ canonicalize_context)&.to_s
108
111
 
109
112
  EmbeddedProtocol::InboundMessage::FileImportResponse.new(
110
113
  id: file_import_request.id,
111
- file_url:
114
+ file_url:,
115
+ containing_url_unused: canonicalize_context.instance_eval { @containing_url_unused }
112
116
  )
113
117
  rescue StandardError => e
114
118
  EmbeddedProtocol::InboundMessage::FileImportResponse.new(
@@ -36,7 +36,7 @@ module Sass
36
36
  quiet_deps:,
37
37
  silence_deprecations:,
38
38
  verbose:)
39
- alert_color = Exception.respond_to?(:to_tty?) && Exception.to_tty? if alert_color.nil?
39
+ alert_color = Exception.to_tty? if alert_color.nil?
40
40
 
41
41
  @function_registry = FunctionRegistry.new(functions, alert_color:)
42
42
  @importer_registry = ImporterRegistry.new(importers, load_paths, alert_color:)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.76.0'
5
+ VERSION = '1.77.1'
6
6
  end
7
7
  end
@@ -26,7 +26,7 @@ module Sass
26
26
  def full_message(highlight: nil, order: nil, **)
27
27
  return super if @full_message.nil?
28
28
 
29
- highlight = Exception.respond_to?(:to_tty?) && Exception.to_tty? if highlight.nil?
29
+ highlight = Exception.to_tty? if highlight.nil?
30
30
  if highlight
31
31
  @full_message.dup
32
32
  else
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.76.0
4
+ version: 1.77.1
5
5
  platform: aarch64-linux-android
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-30 00:00:00.000000000 Z
11
+ date: 2024-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -94,8 +94,8 @@ licenses:
94
94
  - MIT
95
95
  metadata:
96
96
  bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
97
- documentation_uri: https://rubydoc.info/gems/sass-embedded/1.76.0
98
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.76.0
97
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.77.1
98
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.1
99
99
  funding_uri: https://github.com/sponsors/ntkme
100
100
  rubygems_mfa_required: 'true'
101
101
  post_install_message:
@@ -106,14 +106,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - ">="
108
108
  - !ruby/object:Gem::Version
109
- version: 3.1.0
109
+ version: 3.2.0
110
110
  required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  requirements:
112
112
  - - ">="
113
113
  - !ruby/object:Gem::Version
114
114
  version: '0'
115
115
  requirements: []
116
- rubygems_version: 3.5.9
116
+ rubygems_version: 3.5.10
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Use dart-sass with Ruby!