lex-microsoft_teams 0.6.19 → 0.6.20
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: beeb83d06cdfce621a29d635ac797893d31d9d8403c88a488ee076b278d4a87c
|
|
4
|
+
data.tar.gz: 759f1937d7693a07e1ad6fa5172583f9d13c58eadce7c12aac3eb42cfb0c75c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da442c0b860020406dd65a43b5e6ef9928b0f45e7123709fc2340e81b7288a0a8b94a7e6bb7781bde4c64bc8e071dfcc96b2e24a9b60a0974dc540e3454fd41c
|
|
7
|
+
data.tar.gz: dcf5a9cf6e7d8a9171131833588b9a41fa5a7a864dc26681b9eee0b31cd6da0e841456d84aefa153dfac51bf16f07350cad3eeed04702f4d85a1376ac062da54
|
|
@@ -106,6 +106,14 @@ module Legion
|
|
|
106
106
|
|
|
107
107
|
private
|
|
108
108
|
|
|
109
|
+
def log
|
|
110
|
+
return Legion::Logging if defined?(Legion::Logging)
|
|
111
|
+
|
|
112
|
+
@log ||= Object.new.tap do |nl|
|
|
113
|
+
%i[debug info warn error fatal].each { |m| nl.define_singleton_method(m) { |*| nil } }
|
|
114
|
+
end
|
|
115
|
+
end
|
|
116
|
+
|
|
109
117
|
def host_os
|
|
110
118
|
RbConfig::CONFIG['host_os']
|
|
111
119
|
end
|