sass-embedded 1.77.1-x86_64-linux-android → 1.77.3-x86_64-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: 669bf6cee8fc66432d1faab44c5f41772000769ba7b0d042ec33d4f31887425c
4
- data.tar.gz: 7cf4c6c26ce4ad97316593d49e7358530f8985db1a64f4b1b81f75787775afe0
3
+ metadata.gz: 608d24131212afa649f9c582a27d68e477e02807d941dfacebc4b2f2c011fb78
4
+ data.tar.gz: e1b611b8be62b8b02b612f7249249b7bdf9ae72f0cec0f7750b065154855f25b
5
5
  SHA512:
6
- metadata.gz: f04424d4b9426ee2e9135f8ddf698ea2568cddd4e4004779fa96e426dfed8f6de549fa41d1bdee20a76a24a3ca3cc545c5a3ad4e3f74a51a8d4c6780b4e05f15
7
- data.tar.gz: 7e78731705f5f1d961f55495d45ca2cf728f30f792c35c67e9d39b57893185145c5e775ccbe4abd55862b7a53267c0cc49018ed358fa7d19f495cbb2977682b4
6
+ metadata.gz: 350ad480974d2ae5f6e0fa6c9a7233b6ca849d33df284bc4ed6b5190217e98f14562608d31384a211f07b9a72ad1b8202a531a6af5ac0a6fd5f421df6c9e846c
7
+ data.tar.gz: d4053c1fb78f0515ecf3fff98940e706a39d8c5d1a98adc7785cccdfc0c131f269cb7d6f0cb088d517456857effe1cf0e38153ebae3ab7587fe876741b4984e4
@@ -87,6 +87,39 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
87
87
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
88
88
 
89
89
 
90
+ --------------------------------------------------------------------------------
91
+
92
+ _macros and macros license:
93
+
94
+ Copyright 2024, the Dart project authors.
95
+
96
+ Redistribution and use in source and binary forms, with or without
97
+ modification, are permitted provided that the following conditions are
98
+ met:
99
+
100
+ * Redistributions of source code must retain the above copyright
101
+ notice, this list of conditions and the following disclaimer.
102
+ * Redistributions in binary form must reproduce the above
103
+ copyright notice, this list of conditions and the following
104
+ disclaimer in the documentation and/or other materials provided
105
+ with the distribution.
106
+ * Neither the name of Google LLC nor the names of its
107
+ contributors may be used to endorse or promote products derived
108
+ from this software without specific prior written permission.
109
+
110
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
111
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
112
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
113
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
114
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
115
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
116
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
117
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
118
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
119
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
120
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
121
+
122
+
90
123
  --------------------------------------------------------------------------------
91
124
 
92
125
  analyzer, protobuf and protoc_plugin license:
Binary file
Binary file
@@ -23,6 +23,8 @@ module Sass
23
23
  end
24
24
 
25
25
  @stdin.binmode
26
+
27
+ @wait_thread.name = "sass-embedded-process-waiter-#{@wait_thread.pid}"
26
28
  end
27
29
 
28
30
  def listen(dispatcher)
@@ -60,8 +62,6 @@ module Sass
60
62
  @stderr.close
61
63
  end
62
64
  end
63
-
64
- @wait_thread.name = "sass-embedded-process-waiter-#{@wait_thread.pid}"
65
65
  end
66
66
 
67
67
  def close
@@ -19,8 +19,10 @@ module Sass
19
19
 
20
20
  if logger.respond_to?(:warn) # rubocop:disable Style/GuardClause
21
21
  define_singleton_method(:warn) do |event|
22
+ deprecation = event.type == :DEPRECATION_WARNING
22
23
  logger.warn(event.message,
23
- deprecation: event.type == :DEPRECATION_WARNING,
24
+ deprecation:,
25
+ deprecation_type: (event.deprecation_type if deprecation),
24
26
  span: event.span.nil? ? nil : Logger::SourceSpan.new(event.span),
25
27
  stack: event.stack_trace)
26
28
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.77.1'
5
+ VERSION = '1.77.3'
6
6
  end
7
7
  end
@@ -18,7 +18,7 @@ module Sass
18
18
  module Silent
19
19
  module_function
20
20
 
21
- def warn(message, deprecation: false, span: nil, stack: nil); end
21
+ def warn(message, deprecation: false, deprecation_type: nil, span: nil, stack: nil); end
22
22
 
23
23
  def debug(message, span: nil); end
24
24
  end
@@ -18,9 +18,7 @@ module Sass
18
18
  end
19
19
 
20
20
  # @return [Integer, nil]
21
- attr_reader :id
22
-
23
- protected :id
21
+ protected attr_reader :id
24
22
 
25
23
  # @return [::String, nil]
26
24
  attr_reader :signature
@@ -13,9 +13,7 @@ module Sass
13
13
  end
14
14
 
15
15
  # @return [Integer]
16
- attr_reader :id
17
-
18
- protected :id
16
+ protected attr_reader :id
19
17
 
20
18
  # @return [::Boolean]
21
19
  def ==(other)
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.1
4
+ version: 1.77.3
5
5
  platform: x86_64-linux-android
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-10 00:00:00.000000000 Z
11
+ date: 2024-05-29 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.1
98
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.1
97
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.77.3
98
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.3
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.2.0
109
+ version: '3.2'
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.10
116
+ rubygems_version: 3.5.11
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Use dart-sass with Ruby!