teLogger 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.release_history.yml +2 -0
- data/Gemfile.lock +1 -1
- data/lib/teLogger/version.rb +1 -1
- data/lib/teLogger.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c9393cf71439c158c10ec22a544e13d176e2aaa4f80d38d66dece29847d5ec02
|
4
|
+
data.tar.gz: 82b81e7be21b5e1e4f6dfabf993ddd065be1ace3523f36f13176391b2dfbfd60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e2da8f552f3b506a00cfab55099a1a616515f265aaf6b96c5a27b7114b986a6af547bf26ae86e5f7008611cebe6d476a3a3ca6c8e7569c6c71def3cbbaf2ff2
|
7
|
+
data.tar.gz: dc0df4a1a37ad627b1050cbfb7504c5e2e50913dc8c8988dfa6f3d943761f7f92e572210bde263e405c496f72cc49c8c8331b602ea34fb243d565f0bc00d0543
|
data/.release_history.yml
CHANGED
data/Gemfile.lock
CHANGED
data/lib/teLogger/version.rb
CHANGED
data/lib/teLogger.rb
CHANGED
@@ -41,6 +41,7 @@ module TeLogger
|
|
41
41
|
end # ClassMethods
|
42
42
|
|
43
43
|
def self.included(klass)
|
44
|
+
puts "TeLogHelper : #{klass}"
|
44
45
|
klass.extend(ClassMethods)
|
45
46
|
klass.extend(TeLogHelper)
|
46
47
|
end
|
@@ -67,7 +68,7 @@ module TeLogger
|
|
67
68
|
intLogger.debug "logOutput is #{logOutput}"
|
68
69
|
@teLogger = Tlogger.new(*logOutput)
|
69
70
|
else
|
70
|
-
intLogger.debug "logOutput is not available. Please note TeLogHelper mixin only works properly on directly included class/module. Fall back to console only"
|
71
|
+
intLogger.debug "logOutput is not available in #{self}. Please note TeLogHelper mixin only works properly on directly included class/module. Fall back to console only"
|
71
72
|
@teLogger = Tlogger.new
|
72
73
|
end
|
73
74
|
|
@@ -99,3 +100,6 @@ module TeLogger
|
|
99
100
|
|
100
101
|
|
101
102
|
end
|
103
|
+
|
104
|
+
TeLogger::Helper = TeLogger::TeLogHelper
|
105
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teLogger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: devops_assist
|