sass-embedded 1.77.0-x86-linux-musl → 1.77.1-x86-linux-musl

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: a10c3f43db97fd076f9f21f447db753fb1cddde66c0b016e7e2f1a89414761cf
4
- data.tar.gz: 72287bd8a61b2266154a73ad89d48299cd8dca910cc0c0c25d3f872f61589dda
3
+ metadata.gz: cb0e4424947c4fcc537855701fed751321d98fb1c0b81806e0587bd5fb774ee6
4
+ data.tar.gz: d4740e867df96dc682d5a08a634e8c1efba407cfdd6be056e768be56ece6c39a
5
5
  SHA512:
6
- metadata.gz: f207da0737349b646cc5f2c239c3ad13320e284322ca0bb48a0c8b8a475a37114ef0f8c3444c1c62943ed92681a595d8b81ae59776d924e9e0f1178f01d37621
7
- data.tar.gz: 939099dd93b262720a254363f4208b62c153e333fc3930b646ec77111ecd9c45e1d0719771f4fb43fd428516d54afa4106ca3b055e93165fe993e13b7aa87f02
6
+ metadata.gz: b5f590755bb58ee680bb8eafdda995e410a2bcfedbb8f1a4fa5c97c1b09e5c0df6e680d36fbcd49100a070ff807366e8f139b6fc54699247774a462c8a991f9f
7
+ data.tar.gz: ef67ce9e6ba77dcbcc556d8391928584f357bccbc529205d8ba83eb34d97f250bbcad7adb60fafd523d63e93a0179cb129b118bc454d9bdd011f616e83cbf259
data/ext/sass/cli.rb CHANGED
@@ -1,22 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- spec = Gem.loaded_specs['sass-embedded']
4
- platform = spec&.platform
5
- if platform.is_a?(Gem::Platform) && platform.os == 'linux' && platform.version.nil?
6
- update = if Gem.disable_system_update_message
7
- 'updating Ruby to version 3.2 or later'
8
- else
9
- "running 'gem update --system' to update RubyGems"
10
- end
11
- install = if defined?(Bundler)
12
- "running 'rm -f Gemfile.lock && bundle install'"
13
- else
14
- "running 'gem install sass-embedded'"
15
- end
16
- raise LoadError, "The gemspec for #{spec.name} at #{spec.loaded_from} was broken. " \
17
- "Try #{update}, and then try #{install} to reinstall."
18
- end
19
-
20
3
  module Sass
21
4
  module CLI
22
5
  COMMAND = [
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
@@ -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(
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.77.0'
5
+ VERSION = '1.77.1'
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.77.0
4
+ version: 1.77.1
5
5
  platform: x86-linux-musl
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-07 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.77.0
98
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.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,7 +106,7 @@ 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
  - - ">="