sass-embedded 1.77.4-x86_64-darwin → 1.77.5-x86_64-darwin

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: 34b6cf8bf8c74e09545df295d0c2b56748f9d595d4b00e8a65c8b70b3eac080b
4
- data.tar.gz: 2525c5aefc0e250305baa45459a011d5218c72dbdf31f7dafd49e8bc30d054a4
3
+ metadata.gz: 8339e740b29e0ea3b3c3634c6f4301524bc251dbe8db1cf3fc203b53669094ed
4
+ data.tar.gz: 7ac8bb56f2cb2c842d44730c1c2012708f6605e0a49927664669c2211e0025b4
5
5
  SHA512:
6
- metadata.gz: bba27b62896c244bc1d70c92d61479a3d8f04fc6fb3b55959638f872e4a1460b50338c3ec6803f79ffcae2a8c382ed18f27b7a6e74f29bb539d83c0efb4f9457
7
- data.tar.gz: 58709ce44b439ea068da4a69b24e65e0977db47fb030466e2ce7c512e90491ec64834968e9071a32a3be83c5869fb76748edc3c29eba82f1a01ea8919711f6ad
6
+ metadata.gz: 2f004d726ceea1d48314a864898f749544544922c0141a81125bad60df06cf0e324a014c6b3edf60dfee939a749d61b4fe06e64dae6bfe0defad762af400f02d
7
+ data.tar.gz: c75738f13ac752a0d6eb359bfece183e5178382cfa564c8d93a484b2bd6a415e517b35533ba938a3e685c2c2392e412b8bab271ef1c09c4724d4c27c53bc6299
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-darwin
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: