sass-embedded 1.71.0-x86-linux-musl → 1.71.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 +4 -4
 - data/ext/sass/dart-sass/src/sass.snapshot +0 -0
 - data/lib/sass/calculation_value/calculation_operation.rb +1 -1
 - data/lib/sass/compiler/dispatcher.rb +1 -1
 - data/lib/sass/compiler/host.rb +4 -4
 - data/lib/sass/embedded/version.rb +1 -1
 - data/lib/sass/node_package_importer.rb +2 -0
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 183749e0dc4fdaabf394a9e6133e8c9181d26353f1d875e2ef56d30591297c73
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 198413c50c19eaf908eea3d4602151a3a8260aaa8819a2d5c6cfcfee822763eb
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9ebc41183d13b5bd8ba9877d3922276730856fdd440aec44cbd9e30f3d3d075dc3ae52f4c91e5f1ed1beb0e87c02af918b56b50daca26a5f1a894423bd0021c5
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 791938b40d2e2751216f2b0c60a7b142fed8cc67b71a9d4dadf5cdabdf8df2f93c404154196903f90e78e05f2cbe11750759e84ed9c05111467d96bd0cd4209a
         
     | 
| 
         Binary file 
     | 
| 
         @@ -4,7 +4,7 @@ module Sass 
     | 
|
| 
       4 
4 
     | 
    
         
             
              class Compiler
         
     | 
| 
       5 
5 
     | 
    
         
             
                # The {Dispatcher} class.
         
     | 
| 
       6 
6 
     | 
    
         
             
                #
         
     | 
| 
       7 
     | 
    
         
            -
                # It dispatches messages between  
     | 
| 
      
 7 
     | 
    
         
            +
                # It dispatches messages between multiple instances of {Host} and a single {Connection} to the compiler.
         
     | 
| 
       8 
8 
     | 
    
         
             
                class Dispatcher
         
     | 
| 
       9 
9 
     | 
    
         
             
                  def initialize
         
     | 
| 
       10 
10 
     | 
    
         
             
                    @id = 1
         
     | 
    
        data/lib/sass/compiler/host.rb
    CHANGED
    
    | 
         @@ -80,13 +80,13 @@ module Sass 
     | 
|
| 
       80 
80 
     | 
    
         
             
                        result.formatted == '' ? nil : result.formatted,
         
     | 
| 
       81 
81 
     | 
    
         
             
                        result.stack_trace == '' ? nil : result.stack_trace,
         
     | 
| 
       82 
82 
     | 
    
         
             
                        result.span.nil? ? nil : Logger::SourceSpan.new(result.span),
         
     | 
| 
       83 
     | 
    
         
            -
                        compile_response.loaded_urls
         
     | 
| 
      
 83 
     | 
    
         
            +
                        compile_response.loaded_urls.to_a
         
     | 
| 
       84 
84 
     | 
    
         
             
                      )
         
     | 
| 
       85 
85 
     | 
    
         
             
                    when :success
         
     | 
| 
       86 
86 
     | 
    
         
             
                      CompileResult.new(
         
     | 
| 
       87 
87 
     | 
    
         
             
                        result.css,
         
     | 
| 
       88 
88 
     | 
    
         
             
                        result.source_map == '' ? nil : result.source_map,
         
     | 
| 
       89 
     | 
    
         
            -
                        compile_response.loaded_urls
         
     | 
| 
      
 89 
     | 
    
         
            +
                        compile_response.loaded_urls.to_a
         
     | 
| 
       90 
90 
     | 
    
         
             
                      )
         
     | 
| 
       91 
91 
     | 
    
         
             
                    else
         
     | 
| 
       92 
92 
     | 
    
         
             
                      raise ArgumentError, "Unknown CompileResponse.result #{result}"
         
     | 
| 
         @@ -204,12 +204,12 @@ module Sass 
     | 
|
| 
       204 
204 
     | 
    
         | 
| 
       205 
205 
     | 
    
         
             
                  def send_message0(...)
         
     | 
| 
       206 
206 
     | 
    
         
             
                    inbound_message = EmbeddedProtocol::InboundMessage.new(...)
         
     | 
| 
       207 
     | 
    
         
            -
                    @stream.send_proto(0, inbound_message 
     | 
| 
      
 207 
     | 
    
         
            +
                    @stream.send_proto(0, EmbeddedProtocol::InboundMessage.encode(inbound_message))
         
     | 
| 
       208 
208 
     | 
    
         
             
                  end
         
     | 
| 
       209 
209 
     | 
    
         | 
| 
       210 
210 
     | 
    
         
             
                  def send_message(...)
         
     | 
| 
       211 
211 
     | 
    
         
             
                    inbound_message = EmbeddedProtocol::InboundMessage.new(...)
         
     | 
| 
       212 
     | 
    
         
            -
                    @stream.send_proto(id, inbound_message 
     | 
| 
      
 212 
     | 
    
         
            +
                    @stream.send_proto(id, EmbeddedProtocol::InboundMessage.encode(inbound_message))
         
     | 
| 
       213 
213 
     | 
    
         
             
                  end
         
     | 
| 
       214 
214 
     | 
    
         
             
                end
         
     | 
| 
       215 
215 
     | 
    
         | 
| 
         @@ -4,6 +4,8 @@ module Sass 
     | 
|
| 
       4 
4 
     | 
    
         
             
              # The built-in Node.js package importer. This loads pkg: URLs from node_modules
         
     | 
| 
       5 
5 
     | 
    
         
             
              # according to the standard Node.js resolution algorithm.
         
     | 
| 
       6 
6 
     | 
    
         
             
              #
         
     | 
| 
      
 7 
     | 
    
         
            +
              # @param entry_point_directory [String] The directory where the {NodePackageImporter} should start when resolving
         
     | 
| 
      
 8 
     | 
    
         
            +
              #   `pkg:` URLs in sources other than files on disk.
         
     | 
| 
       7 
9 
     | 
    
         
             
              # @see https://sass-lang.com/documentation/js-api/classes/nodepackageimporter/
         
     | 
| 
       8 
10 
     | 
    
         
             
              class NodePackageImporter
         
     | 
| 
       9 
11 
     | 
    
         
             
                def initialize(entry_point_directory)
         
     | 
    
        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.71. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.71.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-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-02-21 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: google-protobuf
         
     | 
| 
         @@ -88,8 +88,8 @@ licenses: 
     | 
|
| 
       88 
88 
     | 
    
         
             
            - MIT
         
     | 
| 
       89 
89 
     | 
    
         
             
            metadata:
         
     | 
| 
       90 
90 
     | 
    
         
             
              bug_tracker_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/issues
         
     | 
| 
       91 
     | 
    
         
            -
              documentation_uri: https://rubydoc.info/gems/sass-embedded/1.71. 
     | 
| 
       92 
     | 
    
         
            -
              source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.71. 
     | 
| 
      
 91 
     | 
    
         
            +
              documentation_uri: https://rubydoc.info/gems/sass-embedded/1.71.1
         
     | 
| 
      
 92 
     | 
    
         
            +
              source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.71.1
         
     | 
| 
       93 
93 
     | 
    
         
             
              funding_uri: https://github.com/sponsors/ntkme
         
     | 
| 
       94 
94 
     | 
    
         
             
              rubygems_mfa_required: 'true'
         
     | 
| 
       95 
95 
     | 
    
         
             
            post_install_message: 
         
     |