debug_logging 4.0.2 → 4.0.4

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.
@@ -5,7 +5,7 @@ module DebugLogging
5
5
  if ld.config_proxy.error_handler_proc
6
6
  begin
7
7
  yield
8
- rescue StandardError => e
8
+ rescue => e
9
9
  if ld.error_handler_proc
10
10
  ld.error_handler_proc.call(
11
11
  ld.config_proxy,
@@ -13,7 +13,7 @@ module DebugLogging
13
13
  self,
14
14
  ld.decorated_method,
15
15
  *ld.args,
16
- **ld.kwargs,
16
+ **ld.kwargs
17
17
  )
18
18
  else
19
19
  raise e
@@ -7,7 +7,7 @@ module DebugLogging
7
7
  DebugLogging::ArgumentPrinter.debug_event_name_to_s(decorated_method: ld.decorated_method),
8
8
  debug_args: ld.debug_args,
9
9
  config_proxy: ld.config_proxy,
10
- **paydirt,
10
+ **paydirt
11
11
  ) do
12
12
  yield
13
13
  end
@@ -7,36 +7,43 @@ module DebugLogging
7
7
  extend DebugLogging::ArgumentPrinter
8
8
 
9
9
  class << self
10
- attr_accessor :event
11
- end
12
- attach_to :log
10
+ def event
11
+ @@event
12
+ end
13
13
 
14
- EVENT_FORMAT_STRING = "%<name>s (%<duration>.3f secs) start=%<time>s end=%<end>s args=%<args>s payload=%<payload>s"
14
+ def event=(value)
15
+ @@event = value
16
+ end
15
17
 
16
- def self.log_event(event)
17
- @event = event
18
- if event.payload && event.payload[:exception_object]
19
- exception = event.payload[:exception_object]
20
- "#{event.name} [ERROR] : \n#{exception.class} : #{exception.message}\n" + exception.backtrace.join("\n")
21
- else
22
- format(EVENT_FORMAT_STRING, event_to_format_options(event))
18
+ def log_event(event)
19
+ self.event = event
20
+ if event.payload && event.payload[:exception_object]
21
+ exception = event.payload[:exception_object]
22
+ "#{event.name} [ERROR] : \n#{exception.class} : #{exception.message}\n" + exception.backtrace.join("\n")
23
+ else
24
+ format(EVENT_FORMAT_STRING, event_to_format_options(event))
25
+ end
23
26
  end
24
- end
25
27
 
26
- # @param [ActiveSupport::Notifications::Event]
27
- # @return [Hash]
28
- def self.event_to_format_options(event)
29
- args = event.payload[:debug_args]
30
- config_proxy = event.payload[:config_proxy]
31
- payload = event.payload.reject { |k, _| EXCLUDE_FROM_PAYLOAD.include?(k) }
32
- {
33
- name: event.name,
34
- duration: Rational(event.duration, 1000).to_f,
35
- time: debug_event_time_to_s(event.time),
36
- end: debug_event_time_to_s(event.end),
37
- args: debug_signature_to_s(args: args, config_proxy: config_proxy),
38
- payload: debug_payload_to_s(payload: payload, config_proxy: config_proxy),
39
- }
28
+ # @param [ActiveSupport::Notifications::Event]
29
+ # @return [Hash]
30
+ def event_to_format_options(event)
31
+ args = event.payload[:debug_args]
32
+ config_proxy = event.payload[:config_proxy]
33
+ payload = event.payload.except(*EXCLUDE_FROM_PAYLOAD)
34
+ {
35
+ name: event.name,
36
+ duration: Rational(event.duration, 1000).to_f,
37
+ time: debug_event_time_to_s(event.time),
38
+ end: debug_event_time_to_s(event.end),
39
+ args: debug_signature_to_s(args: args, config_proxy: config_proxy),
40
+ payload: debug_payload_to_s(payload: payload, config_proxy: config_proxy)
41
+ }
42
+ end
40
43
  end
44
+
45
+ attach_to :log
46
+
47
+ EVENT_FORMAT_STRING = "%<name>s (%<duration>.3f secs) start=%<time>s end=%<end>s args=%<args>s payload=%<payload>s"
41
48
  end
42
49
  end
@@ -75,8 +75,8 @@ module DebugLogging
75
75
  :instance_variable_get,
76
76
  DebugLogging::Configuration.config_pointer(
77
77
  proxy_ref,
78
- method_name,
79
- ),
78
+ method_name
79
+ )
80
80
  )
81
81
  # short circuit on subsequent calls is required
82
82
  # so we only register notifications once
@@ -92,7 +92,7 @@ module DebugLogging
92
92
  scope.send(
93
93
  :instance_variable_set,
94
94
  DebugLogging::Configuration.config_pointer(proxy_ref, method_name),
95
- proxy,
95
+ proxy
96
96
  )
97
97
  yield proxy if block
98
98
  proxy
@@ -1,5 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module DebugLogging
2
4
  module Version
3
- VERSION = "4.0.2"
5
+ VERSION = "4.0.4"
4
6
  end
7
+ VERSION = Version::VERSION # Traditional Constant Location
5
8
  end
data/lib/debug_logging.rb CHANGED
@@ -1,10 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Std Lib
2
4
  require "logger"
3
5
  require "digest"
4
6
 
5
7
  # External gems
6
8
  require "version_gem"
7
- require "colorized_string"
9
+ require_relative "debug_logging/version"
10
+
11
+ require "debug_logging/colorized_string"
8
12
 
9
13
  # This gem
10
14
  require "debug_logging/constants"
@@ -116,7 +120,13 @@ module DebugLogging
116
120
 
117
121
  #### CONFIG ####
118
122
  class << self
119
- attr_accessor :debug_logging_configuration
123
+ def debug_logging_configuration
124
+ @@debug_logging_configuration
125
+ end
126
+
127
+ def debug_logging_configuration=(config)
128
+ @@debug_logging_configuration = config
129
+ end
120
130
  end
121
131
 
122
132
  module ConfigClassMethods
@@ -0,0 +1,6 @@
1
+ module DebugLogging
2
+ module Version
3
+ VERSION: String
4
+ end
5
+ VERSION: String
6
+ end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,59 +1,44 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: debug_logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
8
8
  - John Gillson
9
9
  - guckin
10
- autorequire:
11
10
  bindir: exe
12
11
  cert_chain:
13
12
  - |
14
13
  -----BEGIN CERTIFICATE-----
15
14
  MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
16
15
  ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
17
- A2NvbTAeFw0yMzA5MjAxNzMwMjhaFw0yNDA5MTkxNzMwMjhaMEMxFTATBgNVBAMM
16
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
18
17
  DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
19
- LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEA+a9UvHo3
20
- 84k96WgU5Kk5HB+cLZs/modjorsTfqY67MJF5nNvAoqcKTUBW4uG+Zpfnm3jaDO5
21
- GxhJEIZWfndYzycHT2KMVQ1uTP82ba8ZaKrPlPIafkbui3mdds47qsmqHiblKERg
22
- U532lkwfqHDlJwE7OBZQ59EwWWLynlT/yAUHpOBbqIuHKUxdpmBI+sIjrZcD1e05
23
- WmjkO6fwIdC5oM757aoPxIgXD587VOViH11Vkm2doskj4T8yONtwVHlcrrhJ9Bzd
24
- /zdp6vEn7GZQrABvpOlqwWxQ72ZnFhJe/RJZf6CXOPOh69Ai0QKYl2a1sYuCJKS3
25
- nsBnxXJINEEznjR7rZjNUmYD+CZqfjzgPqedRxTlASe7iA4w7xZOqMDzcuhNwcUQ
26
- tMEH6BTktxKP3jXZPXRfHCf6s+HRVb6vezAonTBVyydf5Xp5VwWkd6cwm+2BzHl5
27
- 7kc/3lLxKMcsyEUprAsk8LdHohwZdC267l+RS++AP6Cz6x+nB3oGob19AgMBAAGj
28
- fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQCSSas60GqqMjt
29
- xR7LoY1gucEvtzAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
18
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
19
+ uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
20
+ LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
21
+ mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
22
+ coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
23
+ FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
24
+ yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
25
+ to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
26
+ qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
27
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
28
+ HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
30
29
  A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
31
- ggGBAMl9ifcw5p+PdvB7dCPoNKoVdp/2LbC9ztETHuYL2gUMJB6UoS3o9c/piSuR
32
- V3ZMQaijmNu6ms1bWAtJ66LjmYrVflJtf9yp31Kierr9LpisMSUx2qbMOHGa8d2Z
33
- vCUWPF8E9Cg0mP3GAyZ6qql8jDh/anUKeksPXqJvNxNPDu2DVYsa/IWdl96whzS4
34
- Bl7SwB1E7agps40UcshCSKaVDOU0M+XN6SrnJMElnBic+KSAkBkVFbzS0BE4ODZM
35
- BgE6nYzQ05qhuvbE+oGdACTlemNtDDWCh0uw+7x0q2PocGIDU5zsPn/WNTkCXPmB
36
- CHGvqDNWq4M7ncTKAaS2XExgyb7uPdq9fKiOW8nmH+zCiGzJXzBWwZlKf7L4Ht9E
37
- a3f0e5C+zvee9Z5Ng9ciyfav9/fcXgYt5MjoBv27THr5XfBhgOCIHSYW2tqJmWKi
38
- KuxrfYrN+9HvMdm+nZ6TypmKftHY3Gj+/uu+g8Icm/zrvTWAEE0mcJOkfrIoNPJb
39
- pF8dMA==
30
+ ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
31
+ wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
32
+ L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
33
+ GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
34
+ kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
35
+ QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
36
+ 0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
37
+ DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
38
+ L9nRqA==
40
39
  -----END CERTIFICATE-----
41
- date: 2024-05-12 00:00:00.000000000 Z
40
+ date: 1980-01-02 00:00:00.000000000 Z
42
41
  dependencies:
43
- - !ruby/object:Gem::Dependency
44
- name: colorize
45
- requirement: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: '0'
50
- type: :runtime
51
- prerelease: false
52
- version_requirements: !ruby/object:Gem::Requirement
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: '0'
57
42
  - !ruby/object:Gem::Dependency
58
43
  name: version_gem
59
44
  requirement: !ruby/object:Gem::Requirement
@@ -63,7 +48,7 @@ dependencies:
63
48
  version: '1.1'
64
49
  - - ">="
65
50
  - !ruby/object:Gem::Version
66
- version: 1.1.4
51
+ version: 1.1.11
67
52
  type: :runtime
68
53
  prerelease: false
69
54
  version_requirements: !ruby/object:Gem::Requirement
@@ -73,193 +58,151 @@ dependencies:
73
58
  version: '1.1'
74
59
  - - ">="
75
60
  - !ruby/object:Gem::Version
76
- version: 1.1.4
61
+ version: 1.1.11
77
62
  - !ruby/object:Gem::Dependency
78
- name: rake
63
+ name: kettle-dev
79
64
  requirement: !ruby/object:Gem::Requirement
80
65
  requirements:
81
- - - ">="
66
+ - - "~>"
82
67
  - !ruby/object:Gem::Version
83
- version: 13.2.1
84
- type: :development
85
- prerelease: false
86
- version_requirements: !ruby/object:Gem::Requirement
87
- requirements:
68
+ version: '2.2'
88
69
  - - ">="
89
70
  - !ruby/object:Gem::Version
90
- version: 13.2.1
91
- - !ruby/object:Gem::Dependency
92
- name: activesupport
93
- requirement: !ruby/object:Gem::Requirement
94
- requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- version: 5.2.4.4
71
+ version: 2.2.9
98
72
  type: :development
99
73
  prerelease: false
100
74
  version_requirements: !ruby/object:Gem::Requirement
101
75
  requirements:
76
+ - - "~>"
77
+ - !ruby/object:Gem::Version
78
+ version: '2.2'
102
79
  - - ">="
103
80
  - !ruby/object:Gem::Version
104
- version: 5.2.4.4
81
+ version: 2.2.9
105
82
  - !ruby/object:Gem::Dependency
106
- name: kettle-soup-cover
83
+ name: bundler-audit
107
84
  requirement: !ruby/object:Gem::Requirement
108
85
  requirements:
109
86
  - - "~>"
110
87
  - !ruby/object:Gem::Version
111
- version: '1.0'
112
- - - ">="
113
- - !ruby/object:Gem::Version
114
- version: 1.0.2
88
+ version: 0.9.3
115
89
  type: :development
116
90
  prerelease: false
117
91
  version_requirements: !ruby/object:Gem::Requirement
118
92
  requirements:
119
93
  - - "~>"
120
94
  - !ruby/object:Gem::Version
121
- version: '1.0'
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: 1.0.2
95
+ version: 0.9.3
125
96
  - !ruby/object:Gem::Dependency
126
- name: kramdown
97
+ name: rake
127
98
  requirement: !ruby/object:Gem::Requirement
128
99
  requirements:
129
100
  - - "~>"
130
101
  - !ruby/object:Gem::Version
131
- version: '2.4'
102
+ version: '13.0'
132
103
  type: :development
133
104
  prerelease: false
134
105
  version_requirements: !ruby/object:Gem::Requirement
135
106
  requirements:
136
107
  - - "~>"
137
108
  - !ruby/object:Gem::Version
138
- version: '2.4'
109
+ version: '13.0'
139
110
  - !ruby/object:Gem::Dependency
140
- name: yard
111
+ name: require_bench
141
112
  requirement: !ruby/object:Gem::Requirement
142
113
  requirements:
143
114
  - - "~>"
144
115
  - !ruby/object:Gem::Version
145
- version: '0.9'
116
+ version: '1.0'
146
117
  - - ">="
147
118
  - !ruby/object:Gem::Version
148
- version: 0.9.34
119
+ version: 1.0.4
149
120
  type: :development
150
121
  prerelease: false
151
122
  version_requirements: !ruby/object:Gem::Requirement
152
123
  requirements:
153
124
  - - "~>"
154
125
  - !ruby/object:Gem::Version
155
- version: '0.9'
126
+ version: '1.0'
156
127
  - - ">="
157
128
  - !ruby/object:Gem::Version
158
- version: 0.9.34
129
+ version: 1.0.4
159
130
  - !ruby/object:Gem::Dependency
160
- name: yard-junk
131
+ name: appraisal2
161
132
  requirement: !ruby/object:Gem::Requirement
162
133
  requirements:
163
134
  - - "~>"
164
135
  - !ruby/object:Gem::Version
165
- version: '0.0'
166
- type: :development
167
- prerelease: false
168
- version_requirements: !ruby/object:Gem::Requirement
169
- requirements:
170
- - - "~>"
171
- - !ruby/object:Gem::Version
172
- version: '0.0'
173
- - !ruby/object:Gem::Dependency
174
- name: rubocop-lts
175
- requirement: !ruby/object:Gem::Requirement
176
- requirements:
177
- - - "~>"
178
- - !ruby/object:Gem::Version
179
- version: '22.1'
136
+ version: '3.1'
180
137
  - - ">="
181
138
  - !ruby/object:Gem::Version
182
- version: 22.1.3
139
+ version: 3.1.2
183
140
  type: :development
184
141
  prerelease: false
185
142
  version_requirements: !ruby/object:Gem::Requirement
186
143
  requirements:
187
144
  - - "~>"
188
145
  - !ruby/object:Gem::Version
189
- version: '22.1'
146
+ version: '3.1'
190
147
  - - ">="
191
148
  - !ruby/object:Gem::Version
192
- version: 22.1.3
149
+ version: 3.1.2
193
150
  - !ruby/object:Gem::Dependency
194
- name: rubocop-packaging
151
+ name: kettle-test
195
152
  requirement: !ruby/object:Gem::Requirement
196
153
  requirements:
197
154
  - - "~>"
198
155
  - !ruby/object:Gem::Version
199
- version: '0.5'
156
+ version: '2.0'
200
157
  - - ">="
201
158
  - !ruby/object:Gem::Version
202
- version: 0.5.2
159
+ version: 2.0.5
203
160
  type: :development
204
161
  prerelease: false
205
162
  version_requirements: !ruby/object:Gem::Requirement
206
163
  requirements:
207
164
  - - "~>"
208
165
  - !ruby/object:Gem::Version
209
- version: '0.5'
166
+ version: '2.0'
210
167
  - - ">="
211
168
  - !ruby/object:Gem::Version
212
- version: 0.5.2
169
+ version: 2.0.5
213
170
  - !ruby/object:Gem::Dependency
214
- name: rubocop-rspec
171
+ name: turbo_tests2
215
172
  requirement: !ruby/object:Gem::Requirement
216
173
  requirements:
217
174
  - - "~>"
218
175
  - !ruby/object:Gem::Version
219
- version: '2.25'
220
- type: :development
221
- prerelease: false
222
- version_requirements: !ruby/object:Gem::Requirement
223
- requirements:
224
- - - "~>"
225
- - !ruby/object:Gem::Version
226
- version: '2.25'
227
- - !ruby/object:Gem::Dependency
228
- name: standard-rubocop-lts
229
- requirement: !ruby/object:Gem::Requirement
230
- requirements:
231
- - - "~>"
232
- - !ruby/object:Gem::Version
233
- version: '1.0'
176
+ version: '3.1'
234
177
  - - ">="
235
178
  - !ruby/object:Gem::Version
236
- version: 1.0.10
179
+ version: 3.1.3
237
180
  type: :development
238
181
  prerelease: false
239
182
  version_requirements: !ruby/object:Gem::Requirement
240
183
  requirements:
241
184
  - - "~>"
242
185
  - !ruby/object:Gem::Version
243
- version: '1.0'
186
+ version: '3.1'
244
187
  - - ">="
245
188
  - !ruby/object:Gem::Version
246
- version: 1.0.10
189
+ version: 3.1.3
247
190
  - !ruby/object:Gem::Dependency
248
- name: rspec
191
+ name: ruby-progressbar
249
192
  requirement: !ruby/object:Gem::Requirement
250
193
  requirements:
251
- - - ">="
194
+ - - "~>"
252
195
  - !ruby/object:Gem::Version
253
- version: '3'
196
+ version: '1.13'
254
197
  type: :development
255
198
  prerelease: false
256
199
  version_requirements: !ruby/object:Gem::Requirement
257
200
  requirements:
258
- - - ">="
201
+ - - "~>"
259
202
  - !ruby/object:Gem::Version
260
- version: '3'
203
+ version: '1.13'
261
204
  - !ruby/object:Gem::Dependency
262
- name: rspec-block_is_expected
205
+ name: stone_checksums
263
206
  requirement: !ruby/object:Gem::Requirement
264
207
  requirements:
265
208
  - - "~>"
@@ -267,7 +210,7 @@ dependencies:
267
210
  version: '1.0'
268
211
  - - ">="
269
212
  - !ruby/object:Gem::Version
270
- version: 1.0.5
213
+ version: 1.0.3
271
214
  type: :development
272
215
  prerelease: false
273
216
  version_requirements: !ruby/object:Gem::Requirement
@@ -277,70 +220,74 @@ dependencies:
277
220
  version: '1.0'
278
221
  - - ">="
279
222
  - !ruby/object:Gem::Version
280
- version: 1.0.5
223
+ version: 1.0.3
281
224
  - !ruby/object:Gem::Dependency
282
- name: rspec_junit_formatter
225
+ name: gitmoji-regex
283
226
  requirement: !ruby/object:Gem::Requirement
284
227
  requirements:
285
228
  - - "~>"
286
229
  - !ruby/object:Gem::Version
287
- version: '0.6'
288
- type: :development
289
- prerelease: false
290
- version_requirements: !ruby/object:Gem::Requirement
291
- requirements:
292
- - - "~>"
293
- - !ruby/object:Gem::Version
294
- version: '0.6'
295
- - !ruby/object:Gem::Dependency
296
- name: rspec-pending_for
297
- requirement: !ruby/object:Gem::Requirement
298
- requirements:
230
+ version: '2.0'
299
231
  - - ">="
300
232
  - !ruby/object:Gem::Version
301
- version: '0'
233
+ version: 2.0.2
302
234
  type: :development
303
235
  prerelease: false
304
236
  version_requirements: !ruby/object:Gem::Requirement
305
237
  requirements:
238
+ - - "~>"
239
+ - !ruby/object:Gem::Version
240
+ version: '2.0'
306
241
  - - ">="
307
242
  - !ruby/object:Gem::Version
308
- version: '0'
243
+ version: 2.0.2
309
244
  - !ruby/object:Gem::Dependency
310
- name: silent_stream
245
+ name: activesupport
311
246
  requirement: !ruby/object:Gem::Requirement
312
247
  requirements:
313
248
  - - ">="
314
249
  - !ruby/object:Gem::Version
315
- version: '1'
250
+ version: 5.2.4.4
316
251
  type: :development
317
252
  prerelease: false
318
253
  version_requirements: !ruby/object:Gem::Requirement
319
254
  requirements:
320
255
  - - ">="
321
256
  - !ruby/object:Gem::Version
322
- version: '1'
323
- description: |2
324
-
325
- Unobtrusive debug logging for Ruby. NO LITTERING.
326
- Automatically log selected methods and their arguments as they are called at runtime!
257
+ version: 5.2.4.4
258
+ description: "\U0001FAB2 Unobtrusive debug logging for Ruby. NO LITTERING.\nAutomatically
259
+ log selected methods and their arguments as they are called at runtime!\n"
327
260
  email:
328
- - peter.boling@gmail.com
261
+ - floss@galtzo.com
329
262
  executables: []
330
263
  extensions: []
331
- extra_rdoc_files: []
264
+ extra_rdoc_files:
265
+ - CHANGELOG.md
266
+ - CITATION.cff
267
+ - CODE_OF_CONDUCT.md
268
+ - CONTRIBUTING.md
269
+ - FUNDING.md
270
+ - LICENSE.md
271
+ - README.md
272
+ - RUBOCOP.md
273
+ - SECURITY.md
332
274
  files:
333
275
  - CHANGELOG.md
276
+ - CITATION.cff
334
277
  - CODE_OF_CONDUCT.md
335
278
  - CONTRIBUTING.md
336
- - LICENSE.txt
279
+ - FUNDING.md
280
+ - LICENSE.md
337
281
  - README.md
282
+ - RUBOCOP.md
338
283
  - SECURITY.md
284
+ - certs/pboling.pem
339
285
  - lib/debug_logging.rb
340
286
  - lib/debug_logging/active_support_notifications.rb
341
287
  - lib/debug_logging/argument_printer.rb
342
288
  - lib/debug_logging/class_logger.rb
343
289
  - lib/debug_logging/class_notifier.rb
290
+ - lib/debug_logging/colorized_string.rb
344
291
  - lib/debug_logging/configuration.rb
345
292
  - lib/debug_logging/constants.rb
346
293
  - lib/debug_logging/errors.rb
@@ -364,20 +311,32 @@ files:
364
311
  - lib/debug_logging/util.rb
365
312
  - lib/debug_logging/version.rb
366
313
  - lib/simple_debug_logging.rb
367
- homepage: https://github.com/pboling/debug_logging
314
+ - sig/debug_logging/version.rbs
315
+ homepage: https://github.com/galtzo-floss/debug_logging
368
316
  licenses:
369
317
  - MIT
370
318
  metadata:
371
- homepage_uri: https://github.com/pboling/debug_logging
372
- source_code_uri: https://github.com/pboling/debug_logging/tree/v4.0.2
373
- changelog_uri: https://github.com/pboling/debug_logging/blob/v4.0.2/CHANGELOG.md
374
- bug_tracker_uri: https://github.com/pboling/debug_logging/issues
375
- documentation_uri: https://www.rubydoc.info/gems/debug_logging/4.0.2
376
- wiki_uri: https://github.com/pboling/debug_logging/wiki
377
- funding_uri: https://liberapay.com/pboling
319
+ homepage_uri: https://debug-logging.galtzo.com/
320
+ source_code_uri: https://github.com/galtzo-floss/debug_logging/tree/v4.0.4
321
+ changelog_uri: https://github.com/galtzo-floss/debug_logging/blob/v4.0.4/CHANGELOG.md
322
+ bug_tracker_uri: https://github.com/galtzo-floss/debug_logging/issues
323
+ documentation_uri: https://www.rubydoc.info/gems/debug_logging/4.0.4
324
+ funding_uri: https://github.com/sponsors/pboling
325
+ wiki_uri: https://github.com/galtzo-floss/debug_logging/wiki
326
+ news_uri: https://www.railsbling.com/tags/debug_logging
327
+ discord_uri: https://discord.gg/3qme4XHNKN
378
328
  rubygems_mfa_required: 'true'
379
- post_install_message:
380
- rdoc_options: []
329
+ rdoc_options:
330
+ - "--title"
331
+ - "debug_logging - \U0001FAB2 Drop-in debug logging useful when a call stack gets
332
+ unruly"
333
+ - "--main"
334
+ - README.md
335
+ - "--exclude"
336
+ - "^sig/"
337
+ - "--line-numbers"
338
+ - "--inline-source"
339
+ - "--quiet"
381
340
  require_paths:
382
341
  - lib
383
342
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -391,8 +350,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
391
350
  - !ruby/object:Gem::Version
392
351
  version: '0'
393
352
  requirements: []
394
- rubygems_version: 3.5.9
395
- signing_key:
353
+ rubygems_version: 4.0.10
396
354
  specification_version: 4
397
- summary: Drop-in debug logging useful when a call stack gets unruly
355
+ summary: "\U0001FAB2 Drop-in debug logging useful when a call stack gets unruly"
398
356
  test_files: []
metadata.gz.sig CHANGED
Binary file