sass-embedded 1.77.4-x86_64-linux-musl → 1.77.5-x86_64-linux-musl

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fb974aaa5bf7a3291254aae68d207b7cc76824158266e5055f344a6e26a4345
4
- data.tar.gz: a3c751e9e341ad06f67567d5b8b64f43c487451cdb4b1a8b183e3d6f85ce7a22
3
+ metadata.gz: 5e67522c1d2e894bf9ff8012cf342d92324081a1c70f94c44e29f39134fed6fe
4
+ data.tar.gz: 1b0f3bd20648a328bf97c18fcb80b9926de8cb863b9c9b8f6d5fb534e391ff0e
5
5
  SHA512:
6
- metadata.gz: 76bc1dbc97ac9d44483673e68ff13e2b95a2a1ce31887b620d66ba0338e98029ddbdf8a414b9fbf251ca88f5108d1c796f99d6fd1088ca6a4d5c1fbdbace35f0
7
- data.tar.gz: 743b69d9a77d0c7a1d551eec94fe488b6ad8f9cfdca7930a632af5ec36e78dd51ef1586c4f1809fe437291495b211e121c28e39e8374d65a4d5abff7b1d73198
6
+ metadata.gz: 35cd065e5d03e74a64f5f0b4f912b4a6c045026131f29b5ac0c286a343320ea1ea8bd5f1e011f328e706616c550cfa81f03058649d6fd8c95d987b543f2bfaec
7
+ data.tar.gz: f18ebf736f56fae6ac6bed8604ab85e8697c8abb091052e3334767fae6a1e3bb2ade69b256ae687641523d43a9aa74be1426356957b1886af7e66145977c8d63
Binary file
Binary file
@@ -10,21 +10,11 @@ module Sass
10
10
  def initialize(logger)
11
11
  logger = Structifier.to_struct(logger, :debug, :warn)
12
12
 
13
- if logger.respond_to?(:debug)
14
- define_singleton_method(:debug) do |event|
15
- logger.debug(event.message,
16
- span: event.span.nil? ? nil : Logger::SourceSpan.new(event.span))
17
- end
18
- end
13
+ { debug: DebugContext, warn: WarnContext }.each do |symbol, context_class|
14
+ next unless logger.respond_to?(symbol)
19
15
 
20
- if logger.respond_to?(:warn) # rubocop:disable Style/GuardClause
21
- define_singleton_method(:warn) do |event|
22
- deprecation = event.type == :DEPRECATION_WARNING
23
- logger.warn(event.message,
24
- deprecation:,
25
- deprecation_type: (event.deprecation_type if deprecation),
26
- span: event.span.nil? ? nil : Logger::SourceSpan.new(event.span),
27
- stack: event.stack_trace)
16
+ define_singleton_method(symbol) do |event|
17
+ logger.public_send(symbol, event.message, context_class.new(event))
28
18
  end
29
19
  end
30
20
  end
@@ -49,6 +39,39 @@ module Sass
49
39
  def warn(event)
50
40
  Kernel.warn(event.formatted)
51
41
  end
42
+
43
+ # Contextual information passed to `debug`.
44
+ class DebugContext
45
+ # @return [Logger::SourceSpan, nil]
46
+ attr_reader :span
47
+
48
+ def initialize(event)
49
+ @span = event.span.nil? ? nil : Logger::SourceSpan.new(event.span)
50
+ end
51
+ end
52
+
53
+ private_constant :DebugContext
54
+
55
+ # Contextual information passed to `warn`.
56
+ class WarnContext < DebugContext
57
+ # @return [Boolean]
58
+ attr_reader :deprecation
59
+
60
+ # @return [String, nil]
61
+ attr_reader :deprecation_type
62
+
63
+ # @return [String]
64
+ attr_reader :stack
65
+
66
+ def initialize(event)
67
+ super
68
+ @deprecation = event.type == :DEPRECATION_WARNING
69
+ @deprecation_type = (event.deprecation_type if @deprecation)
70
+ @stack = event.stack_trace
71
+ end
72
+ end
73
+
74
+ private_constant :WarnContext
52
75
  end
53
76
 
54
77
  private_constant :LoggerRegistry
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Sass
4
4
  module Embedded
5
- VERSION = '1.77.4'
5
+ VERSION = '1.77.5'
6
6
  end
7
7
  end
@@ -18,9 +18,9 @@ module Sass
18
18
  module Silent
19
19
  module_function
20
20
 
21
- def warn(message, deprecation: false, deprecation_type: nil, span: nil, stack: nil); end
21
+ def warn(message, options); end
22
22
 
23
- def debug(message, span: nil); end
23
+ def debug(message, options); end
24
24
  end
25
25
 
26
26
  private_constant :Silent
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.4
4
+ version: 1.77.5
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - なつき
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-05-31 00:00:00.000000000 Z
11
+ date: 2024-06-12 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.4
98
- source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.4
97
+ documentation_uri: https://rubydoc.info/gems/sass-embedded/1.77.5
98
+ source_code_uri: https://github.com/sass-contrib/sass-embedded-host-ruby/tree/v1.77.5
99
99
  funding_uri: https://github.com/sponsors/ntkme
100
100
  rubygems_mfa_required: 'true'
101
101
  post_install_message: