debug_logging 3.1.3 → 3.1.4

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: e6eee794d14ae44299b2737ff61beab4165c434132262861104d60b4da781445
4
- data.tar.gz: c9fdb194a05fa751879a60bb73bd4eb3fe4507b0680b1ee437f5d88fa65b3fa0
3
+ metadata.gz: c3b22568d767ce27e04784bc0c5884d256dac350db70c0a55e4c3d0111b00e4b
4
+ data.tar.gz: a3d0a5b1fa588b2b9c7596ce52e3e46b04724a460cf825c1393c0bd358117fc2
5
5
  SHA512:
6
- metadata.gz: 8eeb20c2a01e99b3069f8b592f54271497a6835402e76d73edba964645c2b6600e83e3d497b7eddf5720087b89421e61caa7e5224124f5205fdde6f0b82d5426
7
- data.tar.gz: fce74d216e19def9b2e8b208036138732fc82add3e889fdd3a09199dab285354c5863b1a11b12feb451faa9e39294507ec704e40031568272ac03a6c1be13077
6
+ metadata.gz: bd581ea6179d7cc21fa501f0ab7870a2e9d25a664ae544999aa0f703fc351955b7fb5a6c1eacafb3946dd6dde7e6c246a3bebac37af07572c21adc4d0a169e15
7
+ data.tar.gz: a6ae636072c6e60d19831b4ffa1012b4d7dfd1c67a7e78384f7ad6c004e57e729f83dcd24043938a0c03049722fe477bef7ed4ac9c7bce9c7e80ffc76b48e698
data/README.md CHANGED
@@ -37,11 +37,11 @@ Supports ActiveSupport::Notifications (thanks [@jgillson](https://github.com/jgi
37
37
  * *separate loggers, if needed*
38
38
  * *log method calls, also when exit scope*
39
39
  * *Prevents heavy computation of strings with `logger.debug { 'log me' }` block format, since v1.0.12*
40
- * *ActiveSupport::Notifications integration for instrumenting/logging events on class and instance methods, since v3.2*
41
- * *Optional instance, and class-instance, variable logging, since v3.2*
42
- * *ActiveRecord style callback-hooks (optional: `require 'debug_logging/hooks'` and `include DebugLogging::Hooks`), since v3.2*
43
- * *All configuration is inheritable to, and overridable by, child classes, since v3.2*
44
- * *[Class finalization hook](https://stackoverflow.com/a/34559282) (optional: `require 'debug_logging/finalize'` and `extend DebugLogging::Finalize`), since v3.2*
40
+ * *ActiveSupport::Notifications integration for instrumenting/logging events on class and instance methods, since v3.1.3*
41
+ * *Optional instance, and class-instance, variable logging, since v3.1.3*
42
+ * *ActiveRecord style callback-hooks (optional: `require 'debug_logging/hooks'` and `include DebugLogging::Hooks`), since v3.1.3*
43
+ * *All configuration is inheritable to, and overridable by, child classes, since v3.1.3*
44
+ * *[Class finalization hook](https://stackoverflow.com/a/34559282) (optional: `require 'debug_logging/finalize'` and `extend DebugLogging::Finalize`), since v3.1.3*
45
45
  * **so many free ponies** 🎠🐴🎠🐴🎠🐴
46
46
 
47
47
  ## Next Level Magic
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DebugLogging
4
- VERSION = '3.1.3'
4
+ VERSION = '3.1.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: debug_logging
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.3
4
+ version: 3.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling