debug_logging 4.0.2 → 4.0.3
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +224 -71
- data/CITATION.cff +20 -0
- data/CODE_OF_CONDUCT.md +79 -29
- data/CONTRIBUTING.md +242 -33
- data/FUNDING.md +74 -0
- data/LICENSE.md +12 -0
- data/README.md +486 -197
- data/RUBOCOP.md +71 -0
- data/SECURITY.md +15 -10
- data/certs/pboling.pem +27 -0
- data/lib/debug_logging/argument_printer.rb +28 -7
- data/lib/debug_logging/colorized_string.rb +130 -0
- data/lib/debug_logging/configuration.rb +1 -0
- data/lib/debug_logging/finalize.rb +10 -8
- data/lib/debug_logging/log_subscriber.rb +33 -26
- data/lib/debug_logging/version.rb +4 -1
- data/lib/debug_logging.rb +12 -2
- data/sig/debug_logging/version.rbs +6 -0
- data.tar.gz.sig +0 -0
- metadata +110 -172
- metadata.gz.sig +0 -0
- data/LICENSE.txt +0 -21
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b78facefbf394d104b39fed00f6ae90e0a73fea0f8c2a8fd39dc3aa38aa6212c
|
|
4
|
+
data.tar.gz: 288d90f6e15cc46f1e300d33b0e01a78b1c5a47d1de95b43b626af8270c4948e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e8c650376057d4451143591b600feffbcd413e5fad1c70c3e101f2c645cdc951c80fa8f03d60439eca3e5ccd5388ec59756ac7de018e3756783abf882eed6b8
|
|
7
|
+
data.tar.gz: 6cf9ef7235ceb0b04d359cb8f307097eb0a3ca4d1e5f532751af7664ea4db854e024654a11a7670d88b7d4192c68bc83fe89c6deab6120e984f297291c6fdb7a
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -1,189 +1,342 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
[![SemVer 2.0.0][📌semver-img]][📌semver] [![Keep-A-Changelog 1.0.0][📗keep-changelog-img]][📗keep-changelog]
|
|
4
|
+
|
|
3
5
|
All notable changes to this project will be documented in this file.
|
|
4
6
|
|
|
5
|
-
The format is based on [Keep a Changelog]
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
7
|
+
The format is based on [Keep a Changelog][📗keep-changelog],
|
|
8
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|
9
|
+
and [yes][📌major-versions-not-sacred], platform and engine support are part of the [public API][📌semver-breaking].
|
|
10
|
+
Please file a bug if you notice a violation of semantic versioning.
|
|
11
|
+
|
|
12
|
+
[📌semver]: https://semver.org/spec/v2.0.0.html
|
|
13
|
+
[📌semver-img]: https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat
|
|
14
|
+
[📌semver-breaking]: https://github.com/semver/semver/issues/716#issuecomment-869336139
|
|
15
|
+
[📌major-versions-not-sacred]: https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html
|
|
16
|
+
[📗keep-changelog]: https://keepachangelog.com/en/1.0.0/
|
|
17
|
+
[📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
|
|
7
18
|
|
|
8
19
|
## [Unreleased]
|
|
20
|
+
|
|
9
21
|
### Added
|
|
22
|
+
|
|
10
23
|
### Changed
|
|
24
|
+
|
|
25
|
+
### Deprecated
|
|
26
|
+
|
|
27
|
+
### Removed
|
|
28
|
+
|
|
11
29
|
### Fixed
|
|
30
|
+
|
|
31
|
+
- Fixed the TruffleRuby 23.1 CI setup bundle by applying the same JSON
|
|
32
|
+
constraint before Appraisal runs.
|
|
33
|
+
|
|
34
|
+
### Security
|
|
35
|
+
|
|
36
|
+
## [4.0.3] - 2026-05-28
|
|
37
|
+
|
|
38
|
+
- TAG: [v4.0.3][4.0.3t]
|
|
39
|
+
- COVERAGE: 97.41% -- 716/735 lines in 28 files
|
|
40
|
+
- BRANCH COVERAGE: 87.83% -- 166/189 branches in 28 files
|
|
41
|
+
- 20.94% documented
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- `DebugLogging::VERSION` as the traditional top-level version constant, in
|
|
46
|
+
addition to `DebugLogging::Version::VERSION`.
|
|
47
|
+
- Ruby 4 compatibility coverage for log output that includes Ruby's updated
|
|
48
|
+
symbol-key `Hash#inspect` formatting.
|
|
49
|
+
- RBS signature coverage for the version constants.
|
|
50
|
+
|
|
51
|
+
### Changed
|
|
52
|
+
|
|
53
|
+
- Refreshed published README, project metadata, funding links, support links,
|
|
54
|
+
and documentation links.
|
|
55
|
+
- Updated repository links for the move to `galtzo-floss/debug_logging`.
|
|
56
|
+
- Updated gem packaging metadata so generated docs, signatures, certificates,
|
|
57
|
+
and executable support files are consistently included where applicable.
|
|
58
|
+
- Gem signing now skips cleanly when `SKIP_GEM_SIGNING` is set or no matching
|
|
59
|
+
local certificate is present, improving builds for downstream packagers.
|
|
60
|
+
|
|
61
|
+
### Fixed
|
|
62
|
+
|
|
63
|
+
- Restored the `colorize` runtime dependency so fresh installs include the
|
|
64
|
+
colorization support used by debug logging output.
|
|
65
|
+
|
|
66
|
+
- Stabilized logged hash argument and payload rendering across supported Ruby
|
|
67
|
+
versions.
|
|
68
|
+
|
|
12
69
|
### Removed
|
|
13
70
|
|
|
71
|
+
- Removed the GPL-licensed `colorize` runtime dependency while preserving the
|
|
72
|
+
existing colorization callback behavior.
|
|
73
|
+
|
|
14
74
|
## [4.0.2] ([tag][4.0.2t]) - 2024-05-12
|
|
75
|
+
|
|
76
|
+
- TAG: [v4.0.2][4.0.2t]
|
|
77
|
+
|
|
15
78
|
### Added
|
|
79
|
+
|
|
16
80
|
- More documentation
|
|
81
|
+
|
|
17
82
|
### Changed
|
|
83
|
+
|
|
18
84
|
- DRY logic for `DebugLogging::ClassLogger` & `DebugLogging::InstanceLogger` via `LambDart`
|
|
19
85
|
- Refactored test suite; increased test coverage to 97%
|
|
20
86
|
- Refactored ActiveSupport::Notification integration (DRY)
|
|
87
|
+
|
|
21
88
|
### Fixed
|
|
89
|
+
|
|
22
90
|
- Add undeclared runtime dependency `version_gem`
|
|
23
91
|
- `DebugLogging::Hooks` integration via `extend`
|
|
24
92
|
- `DebugLogging::ClassNotifier` support for method signatures with kwargs
|
|
25
93
|
- `error_handler_proc` support for method signatures with kwargs
|
|
26
94
|
|
|
27
95
|
## [4.0.1] ([tag][4.0.1t]) - 2024-03-01
|
|
96
|
+
|
|
97
|
+
- TAG: [v4.0.1][4.0.1t]
|
|
98
|
+
|
|
28
99
|
### Added
|
|
100
|
+
|
|
29
101
|
- Support for all Numeric types to be used as monotonic timestamps for ActiveSupport::Notifications
|
|
30
102
|
- `time_formatter_proc` - used to format timestamp added to beginning of log lines
|
|
31
103
|
- `add_timestamp` - Add timestamp to front of each log line
|
|
104
|
+
|
|
32
105
|
### Changed
|
|
106
|
+
|
|
33
107
|
- `DebugLogging::ArgumentPrinter.debug_time_to_s` => `DebugLogging::ArgumentPrinter.debug_event_time_to_s`
|
|
108
|
+
|
|
34
109
|
### Fixed
|
|
110
|
+
|
|
35
111
|
### Removed
|
|
36
112
|
|
|
37
113
|
## [4.0.0] ([tag][4.0.0t]) - 2024-02-28
|
|
114
|
+
|
|
115
|
+
- TAG: [v4.0.0][4.0.0t]
|
|
116
|
+
|
|
38
117
|
### Added
|
|
118
|
+
|
|
39
119
|
- Class method DSL:
|
|
40
120
|
- `logged`
|
|
41
121
|
- Instance method DSL:
|
|
42
122
|
- `i_logged`
|
|
123
|
+
|
|
43
124
|
### Changed
|
|
125
|
+
|
|
44
126
|
- Class method DSL renamed:
|
|
45
127
|
- `notifies` => `notified`
|
|
46
128
|
- Instance method DSL renamed:
|
|
47
129
|
- `i_notifies` => `i_notified`
|
|
48
130
|
- Disambiguated class method log output send message separator:
|
|
49
131
|
- `.` => `::`, because `.` is ambiguous; same call syntax used for instance method calls
|
|
132
|
+
|
|
50
133
|
### Fixed
|
|
134
|
+
|
|
51
135
|
- Per method config for every decorated method
|
|
136
|
+
|
|
52
137
|
### Removed
|
|
138
|
+
|
|
53
139
|
- Support for `include DebugLogging::InstanceLogger.new(...)`
|
|
54
140
|
- Support for `include DebugLogging::InstanceNotifier.new(...)`
|
|
55
141
|
|
|
56
142
|
## [3.1.9] ([tag][3.1.9t]) - 2023-10-31
|
|
143
|
+
|
|
144
|
+
- TAG: [v3.1.9][3.1.9t]
|
|
145
|
+
|
|
57
146
|
### Fixed
|
|
147
|
+
|
|
58
148
|
- Maximum Ruby version is 2.7. Versions 3.x are not compatible with Ruby >= 3
|
|
59
149
|
|
|
60
150
|
## [3.1.8] ([tag][3.1.8t]) - 2020-12-19
|
|
61
151
|
|
|
152
|
+
- TAG: [v3.1.8][3.1.8t]
|
|
153
|
+
|
|
62
154
|
## [3.1.7] ([tag][3.1.7t]) - 2020-12-19
|
|
63
155
|
|
|
156
|
+
- TAG: [v3.1.7][3.1.7t]
|
|
157
|
+
|
|
64
158
|
## [3.1.6] ([tag][3.1.6t]) - tagged, but unreleased
|
|
65
159
|
|
|
160
|
+
- TAG: [v3.1.6][3.1.6t]
|
|
161
|
+
|
|
66
162
|
## [3.1.5] ([tag][3.1.5t]) - 2020-12-18
|
|
67
163
|
|
|
164
|
+
- TAG: [v3.1.5][3.1.5t]
|
|
165
|
+
|
|
68
166
|
## [3.1.4] ([tag][3.1.4t]) - 2020-12-18
|
|
69
167
|
|
|
168
|
+
- TAG: [v3.1.4][3.1.4t]
|
|
169
|
+
|
|
70
170
|
## [3.1.3] ([tag][3.1.3t]) - 2020-12-18
|
|
71
171
|
|
|
172
|
+
- TAG: [v3.1.3][3.1.3t]
|
|
173
|
+
|
|
72
174
|
## [3.1.2] ([tag][3.1.2t]) - 2020-12-10
|
|
73
175
|
|
|
176
|
+
- TAG: [v3.1.2][3.1.2t]
|
|
177
|
+
|
|
74
178
|
## [3.1.1] ([tag][3.1.1t]) - 2020-12-09
|
|
75
179
|
|
|
180
|
+
- TAG: [v3.1.1][3.1.1t]
|
|
181
|
+
|
|
76
182
|
## [3.1.0] ([tag][3.1.0t]) - 2020-10-24
|
|
77
183
|
|
|
184
|
+
- TAG: [v3.1.0][3.1.0t]
|
|
185
|
+
|
|
78
186
|
## [3.0.0] ([tag][3.0.0t]) - 2020-10-07
|
|
79
187
|
|
|
188
|
+
- TAG: [v3.0.0][3.0.0t]
|
|
189
|
+
|
|
80
190
|
## [2.0.0] ([tag][2.0.0t]) - 2020-10-06
|
|
81
191
|
|
|
192
|
+
- TAG: [v2.0.0][2.0.0t]
|
|
193
|
+
|
|
82
194
|
## [1.0.17] ([tag][1.0.17t]) - 2018-09-10
|
|
83
195
|
|
|
196
|
+
- TAG: [v1.0.17][1.0.17t]
|
|
197
|
+
|
|
84
198
|
## [1.0.16] ([tag][1.0.16t]) - 2018-01-16
|
|
85
199
|
|
|
200
|
+
- TAG: [v1.0.16][1.0.16t]
|
|
201
|
+
|
|
86
202
|
## [1.0.15] ([tag][1.0.15t]) - 2017-10-17
|
|
87
203
|
|
|
204
|
+
- TAG: [v1.0.15][1.0.15t]
|
|
205
|
+
|
|
88
206
|
## [1.0.14] ([tag][1.0.14t]) - 2017-10-09
|
|
89
207
|
|
|
208
|
+
- TAG: [v1.0.14][1.0.14t]
|
|
209
|
+
|
|
90
210
|
## [1.0.13] ([tag][1.0.13t]) - 2017-10-08
|
|
91
211
|
|
|
212
|
+
- TAG: [v1.0.13][1.0.13t]
|
|
213
|
+
|
|
92
214
|
## [1.0.12] ([tag][1.0.12t]) - 2017-10-08
|
|
93
215
|
|
|
216
|
+
- TAG: [v1.0.12][1.0.12t]
|
|
217
|
+
|
|
94
218
|
## [1.0.11] ([tag][1.0.11t]) - 2017-10-06
|
|
95
219
|
|
|
220
|
+
- TAG: [v1.0.11][1.0.11t]
|
|
221
|
+
|
|
96
222
|
## [1.0.10] ([tag][1.0.10t]) - 2017-09-26
|
|
97
223
|
|
|
224
|
+
- TAG: [v1.0.10][1.0.10t]
|
|
225
|
+
|
|
98
226
|
## [1.0.9] ([tag][1.0.9t]) - 2017-09-06
|
|
99
227
|
|
|
228
|
+
- TAG: [v1.0.9][1.0.9t]
|
|
229
|
+
|
|
100
230
|
## [1.0.8] ([tag][1.0.8t]) - 2017-09-06
|
|
101
231
|
|
|
232
|
+
- TAG: [v1.0.8][1.0.8t]
|
|
233
|
+
|
|
102
234
|
## [1.0.7] ([tag][1.0.7t]) - 2017-09-06
|
|
103
235
|
|
|
236
|
+
- TAG: [v1.0.7][1.0.7t]
|
|
237
|
+
|
|
104
238
|
## [1.0.6] ([tag][1.0.6t]) - 2017-09-05
|
|
105
239
|
|
|
240
|
+
- TAG: [v1.0.6][1.0.6t]
|
|
241
|
+
|
|
106
242
|
## [1.0.5] ([tag][1.0.5t]) - 2017-03-31
|
|
107
243
|
|
|
244
|
+
- TAG: [v1.0.5][1.0.5t]
|
|
245
|
+
|
|
108
246
|
## [1.0.4] ([tag][1.0.4t]) - 2017-03-31
|
|
109
247
|
|
|
248
|
+
- TAG: [v1.0.4][1.0.4t]
|
|
249
|
+
|
|
110
250
|
## [1.0.3] ([tag][1.0.3t]) - 2017-03-31
|
|
111
251
|
|
|
252
|
+
- TAG: [v1.0.3][1.0.3t]
|
|
253
|
+
|
|
112
254
|
## [1.0.2] ([tag][1.0.2t]) - 2017-03-30
|
|
113
255
|
|
|
256
|
+
- TAG: [v1.0.2][1.0.2t]
|
|
257
|
+
|
|
114
258
|
## [1.0.1] ([tag][1.0.1t]) - 2017-03-29
|
|
115
259
|
|
|
260
|
+
- TAG: [v1.0.1][1.0.1t]
|
|
261
|
+
|
|
116
262
|
## [1.0.0] ([tag][1.0.0t]) - 2017-03-26
|
|
117
263
|
|
|
264
|
+
- TAG: [v1.0.0][1.0.0t]
|
|
265
|
+
|
|
118
266
|
## [0.1.0] ([tag][0.1.0t]) - 2017-03-25
|
|
267
|
+
|
|
268
|
+
- TAG: [v0.1.0][0.1.0t]
|
|
269
|
+
|
|
119
270
|
- Initial release
|
|
120
271
|
|
|
121
|
-
[Unreleased]: https://
|
|
122
|
-
[4.0.
|
|
123
|
-
[4.0.
|
|
124
|
-
[4.0.
|
|
125
|
-
[4.0.
|
|
126
|
-
[4.0.
|
|
127
|
-
[4.0.
|
|
128
|
-
[
|
|
129
|
-
[
|
|
130
|
-
[3.1.
|
|
131
|
-
[3.1.
|
|
132
|
-
[3.1.
|
|
133
|
-
[3.1.
|
|
134
|
-
[3.1.
|
|
135
|
-
[3.1.
|
|
136
|
-
[3.1.
|
|
137
|
-
[3.1.
|
|
138
|
-
[3.1.
|
|
139
|
-
[3.1.
|
|
140
|
-
[3.1.
|
|
141
|
-
[3.1.
|
|
142
|
-
[3.1.
|
|
143
|
-
[3.1.
|
|
144
|
-
[3.1.
|
|
145
|
-
[3.1.
|
|
146
|
-
[3.1.
|
|
147
|
-
[3.1.
|
|
148
|
-
[3.0
|
|
149
|
-
[3.
|
|
150
|
-
[
|
|
151
|
-
[
|
|
152
|
-
[
|
|
153
|
-
[
|
|
154
|
-
[1.0.
|
|
155
|
-
[1.0.
|
|
156
|
-
[1.0.
|
|
157
|
-
[1.0.
|
|
158
|
-
[1.0.
|
|
159
|
-
[1.0.
|
|
160
|
-
[1.0.
|
|
161
|
-
[1.0.
|
|
162
|
-
[1.0.
|
|
163
|
-
[1.0.
|
|
164
|
-
[1.0.
|
|
165
|
-
[1.0.
|
|
166
|
-
[1.0.
|
|
167
|
-
[1.0.
|
|
168
|
-
[1.0.
|
|
169
|
-
[1.0.
|
|
170
|
-
[1.0.
|
|
171
|
-
[1.0.
|
|
172
|
-
[1.0.
|
|
173
|
-
[1.0.
|
|
174
|
-
[1.0.
|
|
175
|
-
[1.0.
|
|
176
|
-
[1.0.
|
|
177
|
-
[1.0.
|
|
178
|
-
[1.0.
|
|
179
|
-
[1.0.
|
|
180
|
-
[1.0.
|
|
181
|
-
[1.0.
|
|
182
|
-
[1.0.
|
|
183
|
-
[1.0.
|
|
184
|
-
[1.0.
|
|
185
|
-
[1.0.
|
|
186
|
-
[1.0.
|
|
187
|
-
[1.0.
|
|
188
|
-
[0.
|
|
189
|
-
[
|
|
272
|
+
[Unreleased]: https://github.com/galtzo-floss/debug_logging/compare/v4.0.3...HEAD
|
|
273
|
+
[4.0.3]: https://github.com/galtzo-floss/debug_logging/compare/v4.0.2...v4.0.3
|
|
274
|
+
[4.0.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.3
|
|
275
|
+
[4.0.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v4.0.1...v4.0.2
|
|
276
|
+
[4.0.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.2
|
|
277
|
+
[4.0.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v4.0.0...v4.0.1
|
|
278
|
+
[4.0.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.1
|
|
279
|
+
[4.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.9...v4.0.0
|
|
280
|
+
[4.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v4.0.0
|
|
281
|
+
[3.1.9]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.8...v3.1.9
|
|
282
|
+
[3.1.9t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.9
|
|
283
|
+
[3.1.8]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.7...v3.1.8
|
|
284
|
+
[3.1.8t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.8
|
|
285
|
+
[3.1.7]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.6...v3.1.7
|
|
286
|
+
[3.1.7t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.7
|
|
287
|
+
[3.1.6]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.5...v3.1.6
|
|
288
|
+
[3.1.6t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.6
|
|
289
|
+
[3.1.5]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.4...v3.1.5
|
|
290
|
+
[3.1.5t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.5
|
|
291
|
+
[3.1.4]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.3...v3.1.4
|
|
292
|
+
[3.1.4t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.4
|
|
293
|
+
[3.1.3]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.2...v3.1.3
|
|
294
|
+
[3.1.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.3
|
|
295
|
+
[3.1.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.1...v3.1.2
|
|
296
|
+
[3.1.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.2
|
|
297
|
+
[3.1.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.1.0...v3.1.1
|
|
298
|
+
[3.1.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.1
|
|
299
|
+
[3.1.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v3.0.0...v3.1.0
|
|
300
|
+
[3.1.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.1.0
|
|
301
|
+
[3.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v2.0.0...v3.0.0
|
|
302
|
+
[3.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v3.0.0
|
|
303
|
+
[2.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.17...v2.0.0
|
|
304
|
+
[2.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v2.0.0
|
|
305
|
+
[1.0.17]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.16...v1.0.17
|
|
306
|
+
[1.0.17t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.17
|
|
307
|
+
[1.0.16]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.15...v1.0.16
|
|
308
|
+
[1.0.16t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.16
|
|
309
|
+
[1.0.15]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.14...v1.0.15
|
|
310
|
+
[1.0.15t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.15
|
|
311
|
+
[1.0.14]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.13...v1.0.14
|
|
312
|
+
[1.0.14t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.14
|
|
313
|
+
[1.0.13]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.12...v1.0.13
|
|
314
|
+
[1.0.13t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.13
|
|
315
|
+
[1.0.12]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.11...v1.0.12
|
|
316
|
+
[1.0.12t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.12
|
|
317
|
+
[1.0.11]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.10...v1.0.11
|
|
318
|
+
[1.0.11t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.11
|
|
319
|
+
[1.0.10]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.9...v1.0.10
|
|
320
|
+
[1.0.10t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.10
|
|
321
|
+
[1.0.9]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.8...v1.0.9
|
|
322
|
+
[1.0.9t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.9
|
|
323
|
+
[1.0.8]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.7...v1.0.8
|
|
324
|
+
[1.0.8t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.8
|
|
325
|
+
[1.0.7]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.6...v1.0.7
|
|
326
|
+
[1.0.7t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.7
|
|
327
|
+
[1.0.6]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.5...v1.0.6
|
|
328
|
+
[1.0.6t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.6
|
|
329
|
+
[1.0.5]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.4...v1.0.5
|
|
330
|
+
[1.0.5t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.5
|
|
331
|
+
[1.0.4]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.3...v1.0.4
|
|
332
|
+
[1.0.4t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.4
|
|
333
|
+
[1.0.3]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.2...v1.0.3
|
|
334
|
+
[1.0.3t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.3
|
|
335
|
+
[1.0.2]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.1...v1.0.2
|
|
336
|
+
[1.0.2t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.2
|
|
337
|
+
[1.0.1]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v1.0.0...v1.0.1
|
|
338
|
+
[1.0.1t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.1
|
|
339
|
+
[1.0.0]: https://gitlab.com/galtzo-floss/debug_logging/-/compare/v0.1.0...v1.0.0
|
|
340
|
+
[1.0.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v1.0.0
|
|
341
|
+
[0.1.0]: https://github.com/galtzo-floss/debug_logging/compare/f648ea6832aa85232d320b4c4acc4a84e44a83d3...v0.1.0
|
|
342
|
+
[0.1.0t]: https://github.com/galtzo-floss/debug_logging/releases/tag/v0.1.0
|
data/CITATION.cff
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
title: "debug_logging"
|
|
3
|
+
message: >-
|
|
4
|
+
If you use this work and you want to cite it,
|
|
5
|
+
then you can use the metadata from this file.
|
|
6
|
+
type: software
|
|
7
|
+
authors:
|
|
8
|
+
- given-names: "Peter H."
|
|
9
|
+
family-names: "Boling"
|
|
10
|
+
email: "floss@galtzo.com"
|
|
11
|
+
affiliation: "galtzo.com"
|
|
12
|
+
orcid: 'https://orcid.org/0009-0008-8519-441X'
|
|
13
|
+
identifiers:
|
|
14
|
+
- type: url
|
|
15
|
+
value: 'https://github.com/galtzo-floss/debug_logging'
|
|
16
|
+
description: "debug_logging"
|
|
17
|
+
repository-code: 'https://github.com/galtzo-floss/debug_logging'
|
|
18
|
+
abstract: >-
|
|
19
|
+
debug_logging
|
|
20
|
+
license: See license file
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -2,83 +2,133 @@
|
|
|
2
2
|
|
|
3
3
|
## Our Pledge
|
|
4
4
|
|
|
5
|
-
We as members, contributors, and leaders pledge to make participation in our
|
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
|
10
|
+
identity and orientation.
|
|
6
11
|
|
|
7
|
-
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
|
13
|
+
diverse, inclusive, and healthy community.
|
|
8
14
|
|
|
9
15
|
## Our Standards
|
|
10
16
|
|
|
11
|
-
Examples of behavior that contributes to a positive environment for our
|
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
|
18
|
+
community include:
|
|
12
19
|
|
|
13
20
|
* Demonstrating empathy and kindness toward other people
|
|
14
21
|
* Being respectful of differing opinions, viewpoints, and experiences
|
|
15
22
|
* Giving and gracefully accepting constructive feedback
|
|
16
|
-
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
17
|
-
|
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
|
24
|
+
and learning from the experience
|
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
|
26
|
+
community
|
|
18
27
|
|
|
19
28
|
Examples of unacceptable behavior include:
|
|
20
29
|
|
|
21
|
-
* The use of sexualized language or imagery, and sexual attention or
|
|
22
|
-
|
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
|
31
|
+
any kind
|
|
23
32
|
* Trolling, insulting or derogatory comments, and personal or political attacks
|
|
24
33
|
* Public or private harassment
|
|
25
|
-
* Publishing others' private information, such as a physical or email
|
|
26
|
-
|
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
|
35
|
+
without their explicit permission
|
|
27
36
|
* Other conduct which could reasonably be considered inappropriate in a
|
|
28
37
|
professional setting
|
|
29
38
|
|
|
30
39
|
## Enforcement Responsibilities
|
|
31
40
|
|
|
32
|
-
Community leaders are responsible for clarifying and enforcing our standards of
|
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
|
44
|
+
or harmful.
|
|
33
45
|
|
|
34
|
-
Community leaders have the right and responsibility to remove, edit, or reject
|
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
|
49
|
+
decisions when appropriate.
|
|
35
50
|
|
|
36
51
|
## Scope
|
|
37
52
|
|
|
38
|
-
This Code of Conduct applies within all community spaces, and also applies when
|
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
|
54
|
+
an individual is officially representing the community in public spaces.
|
|
55
|
+
Examples of representing our community include using an official email address,
|
|
56
|
+
posting via an official social media account, or acting as an appointed
|
|
57
|
+
representative at an online or offline event.
|
|
39
58
|
|
|
40
59
|
## Enforcement
|
|
41
60
|
|
|
42
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
62
|
+
reported to the community leaders responsible for enforcement at
|
|
63
|
+
[![Contact Maintainer][🚂maint-contact-img]][🚂maint-contact].
|
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
|
43
65
|
|
|
44
|
-
All community leaders are obligated to respect the privacy and security of the
|
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
|
67
|
+
reporter of any incident.
|
|
45
68
|
|
|
46
69
|
## Enforcement Guidelines
|
|
47
70
|
|
|
48
|
-
Community leaders will follow these Community Impact Guidelines in determining
|
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
|
49
73
|
|
|
50
74
|
### 1. Correction
|
|
51
75
|
|
|
52
|
-
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
|
77
|
+
unprofessional or unwelcome in the community.
|
|
53
78
|
|
|
54
|
-
**Consequence**: A private, written warning from community leaders, providing
|
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
|
55
82
|
|
|
56
83
|
### 2. Warning
|
|
57
84
|
|
|
58
|
-
**Community Impact**: A violation through a single incident or series of
|
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
|
86
|
+
actions.
|
|
59
87
|
|
|
60
|
-
**Consequence**: A warning with consequences for continued behavior. No
|
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
|
93
|
+
ban.
|
|
61
94
|
|
|
62
95
|
### 3. Temporary Ban
|
|
63
96
|
|
|
64
|
-
**Community Impact**: A serious violation of community standards, including
|
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
|
98
|
+
sustained inappropriate behavior.
|
|
65
99
|
|
|
66
|
-
**Consequence**: A temporary ban from any sort of interaction or public
|
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
|
101
|
+
communication with the community for a specified period of time. No public or
|
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
|
104
|
+
Violating these terms may lead to a permanent ban.
|
|
67
105
|
|
|
68
106
|
### 4. Permanent Ban
|
|
69
107
|
|
|
70
|
-
**Community Impact**: Demonstrating a pattern of violation of community
|
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
|
71
111
|
|
|
72
|
-
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
|
113
|
+
community.
|
|
73
114
|
|
|
74
115
|
## Attribution
|
|
75
116
|
|
|
76
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
77
|
-
available at
|
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
118
|
+
version 2.1, available at
|
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
|
78
120
|
|
|
79
|
-
Community Impact Guidelines were inspired by
|
|
80
|
-
|
|
81
|
-
[homepage]: https://www.contributor-covenant.org
|
|
121
|
+
Community Impact Guidelines were inspired by
|
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
|
82
123
|
|
|
83
124
|
For answers to common questions about this code of conduct, see the FAQ at
|
|
84
|
-
https://www.contributor-covenant.org/faq. Translations are available at
|
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
|
127
|
+
|
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
|
133
|
+
[🚂maint-contact]: http://www.railsbling.com/contact
|
|
134
|
+
[🚂maint-contact-img]: https://img.shields.io/badge/Contact-Maintainer-0093D0.svg?style=flat&logo=rubyonrails&logoColor=red
|