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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 733ca69d3bc7cdaf272ef56fc2912612b248e148d7afdabc7c340352d12663b9
4
- data.tar.gz: 236d211e689474d5f8f530ff266235af1db971b22bdc8dbec84b70471d95fd58
3
+ metadata.gz: 845e6b1592c87806e413ec85f25f0d142b4007bae5bf2df4e7b5658c9c312e56
4
+ data.tar.gz: 73a0e4b5f4c408e5315ed6d09dd4c070959b5f1a4920c17e51ac46766a801bed
5
5
  SHA512:
6
- metadata.gz: b4bc257c9218766dc2ab36baa8e48296388b27ebfd953b9822d599907f11110c50ead6db467fad5f4e6f7a01e2ee6234a6f50023117a725016ba03ccf33f3f42
7
- data.tar.gz: eaa0aeaf5ae135cb32862fdcae05e7be483cb15fcaf0736ed3ff19ca972a9b277e5b4fc593625189dc344d6d4d6f65b18956ed763644809b8f33f5c81941b064
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.0] - 2024-10-10
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
 
@@ -6,7 +6,7 @@
6
6
  module Activesupport
7
7
  module Logger
8
8
  module Version
9
- VERSION = "1.0.0"
9
+ VERSION = "1.0.1"
10
10
  end
11
11
  end
12
12
  end
@@ -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/alt_logegr_silence_part2"
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.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.0
278
- changelog_uri: https://github.com/pboling/activesupport-logger/blob/v1.0.0/CHANGELOG.md
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.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