sass-embedded 1.77.4-x86-mingw32 → 1.77.5-x86-mingw32

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: f9e1c7805c04064691443f2854aebecd518e1f8b42707ccf36a10f8e73dddddc
4
- data.tar.gz: 64488944faccb1361bb96c07f0c3dc8104568ac2fe4b5ef95c3634f959fc5bb7
3
+ metadata.gz: 52766194c2335e69abca700c8b153a7c06ee982cbd78709cfc8db0de6dc5dd94
4
+ data.tar.gz: f7e990d0f1ab1cc5e49cdd22b63db3fb08fd46088f067dd8004cfde4fb26d879
5
5
  SHA512:
6
- metadata.gz: d3fd8f1d22b4e7bda46eff4b4e9ff79437e5b25f075db3762e9b7da8ef4f3a82ac15947364fb54def12ad661ba89d7651967f45e8f160023aaadd1ab93389ba6
7
- data.tar.gz: 22742c045198e9a06a27ee09ac9c1531c4e6526c70d46508b7fbda4a172715aa3cb710a6b873b9c662a32fb56dab8b29061c9ed735a2887c793678e1fe104652
6
+ metadata.gz: 043471aee49c9e12718105bd7bf858ed6b8f4bdacf5980e12efef5a984c3c81bbe2cbe58c67063c662033d4cd68e35e6afe151bd1522ac4cc39e2d11f33e62b1
7
+ data.tar.gz: 961f682af9e60cb3523f911af1a98f808b0ad374daec2f82668f1339c21ed0048dbbe62211afb3cb5989deb73303b94ff16319db8633c2606ae0e0461e30573f
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-mingw32
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: