activesupport-logger 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +11 -1
- data/README.md +1 -1
- data/lib/activesupport/logger/version.rb +1 -1
- data/lib/activesupport-logger.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +5 -5
- metadata.gz.sig +0 -0
- /data/lib/activesupport/{alt_logegr_silence_part2.rb → alt_logger_silence_part2.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 845e6b1592c87806e413ec85f25f0d142b4007bae5bf2df4e7b5658c9c312e56
|
4
|
+
data.tar.gz: 73a0e4b5f4c408e5315ed6d09dd4c070959b5f1a4920c17e51ac46766a801bed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 066d927c52214a9cb30579b8d66783d6388100bcf518a52dd0187892e3968906803f338ada3551df78c0c9871f19db0cb252154deaad7966785efcddaf86b179
|
7
|
+
data.tar.gz: d1da13b1931817e7ad9f03e1154e9712f239b34dcd3c2cdec7351c657c4d762fd6c59dbec5d895a14399f724f12cbda6b85d558b6ac794cf0498c59911ba2f11
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
10
10
|
### Fixed
|
11
11
|
### Removed
|
12
12
|
|
13
|
-
## [1.0.
|
13
|
+
## [1.0.1] - 2024-10-10
|
14
|
+
- COVERAGE: 51.32% -- 39/76 lines in 6 files
|
15
|
+
- BRANCH COVERAGE: 5.56% -- 1/18 branches in 6 files
|
16
|
+
- 55.56% documented
|
17
|
+
### Fixed
|
18
|
+
- Typo in internal file name (non-breaking, just annoying/confusing)
|
14
19
|
|
20
|
+
## [1.0.0] - 2024-10-10
|
21
|
+
- COVERAGE: 51.32% -- 39/76 lines in 6 files
|
22
|
+
- BRANCH COVERAGE: 5.56% -- 1/18 branches in 6 files
|
23
|
+
- 55.56% documented
|
24
|
+
### Added
|
15
25
|
- Initial release
|
data/README.md
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
[🖇patreon-img]: https://img.shields.io/badge/patreon-donate-yellow.svg
|
43
43
|
[🖇patreon]: https://patreon.com/galtzo
|
44
44
|
|
45
|
-
This is an extraction of Rails' v8 `ActiveSupport::Logger` backported to work with Rails v5.2+ and Ruby 2.7+.
|
45
|
+
This is an **unofficial** extraction of Rails' v8 `ActiveSupport::Logger` backported to work with Rails v5.2+ and Ruby 2.7+.
|
46
46
|
|
47
47
|
If this gem is loaded by Rails v8+, it does nothing at all. NOOP.
|
48
48
|
|
data/lib/activesupport-logger.rb
CHANGED
@@ -33,7 +33,7 @@ if ActiveSupport.version < "8"
|
|
33
33
|
# https://github.com/rails/rails/blob/main/activesupport/lib/active_support/logger_thread_safe_level.rb
|
34
34
|
# This is a straightforward monkey patch. We can't use part 1,
|
35
35
|
# because it has the `included' block, which can't be monkey patched at all.
|
36
|
-
require_relative "activesupport/
|
36
|
+
require_relative "activesupport/alt_logger_silence_part2"
|
37
37
|
|
38
38
|
# Extracted from:
|
39
39
|
# https://github.com/rails/rails/blob/fc62f03ae30fbb9108b004daa9bfedef0401003f/activesupport/lib/active_support/logger.rb
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activesupport-logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -264,8 +264,8 @@ files:
|
|
264
264
|
- README.md
|
265
265
|
- SECURITY.md
|
266
266
|
- lib/activesupport-logger.rb
|
267
|
-
- lib/activesupport/alt_logegr_silence_part2.rb
|
268
267
|
- lib/activesupport/alt_logger_silence_part1.rb
|
268
|
+
- lib/activesupport/alt_logger_silence_part2.rb
|
269
269
|
- lib/activesupport/logger.rb
|
270
270
|
- lib/activesupport/logger/version.rb
|
271
271
|
- lib/activesupport/logger_thread_safe_level.rb
|
@@ -274,10 +274,10 @@ licenses:
|
|
274
274
|
- MIT
|
275
275
|
metadata:
|
276
276
|
homepage_uri: https://github.com/pboling/activesupport-logger
|
277
|
-
source_code_uri: https://github.com/pboling/activesupport-logger/tree/v1.0.
|
278
|
-
changelog_uri: https://github.com/pboling/activesupport-logger/blob/v1.0.
|
277
|
+
source_code_uri: https://github.com/pboling/activesupport-logger/tree/v1.0.1
|
278
|
+
changelog_uri: https://github.com/pboling/activesupport-logger/blob/v1.0.1/CHANGELOG.md
|
279
279
|
bug_tracker_uri: https://github.com/pboling/activesupport-logger/issues
|
280
|
-
documentation_uri: https://www.rubydoc.info/gems/activesupport-logger/1.0.
|
280
|
+
documentation_uri: https://www.rubydoc.info/gems/activesupport-logger/1.0.1
|
281
281
|
wiki_uri: https://github.com/pboling/activesupport-logger/wiki
|
282
282
|
funding_uri: https://liberapay.com/pboling
|
283
283
|
rubygems_mfa_required: 'true'
|
metadata.gz.sig
CHANGED
Binary file
|
File without changes
|