libis-tools 0.9.24 → 0.9.25

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
  SHA1:
3
- metadata.gz: 472d651eedc43e5a8997ede9bb94f4c4f3d09777
4
- data.tar.gz: 0a1296a2c6d98632a296af09ac45324c00183d53
3
+ metadata.gz: f083609ed0179998247ee56ec2432182fb1bbd32
4
+ data.tar.gz: 8418e85cae3c4dfb7d6dc7f8c178da71bed58d2e
5
5
  SHA512:
6
- metadata.gz: a5c09efe0236c2847ce65ac3dba3d1eb45902356c0ebfbae37539b253d22e399e6f6782f46f36ae8a51ea6225be49ab2d16af674006b8232017172fd2485ae56
7
- data.tar.gz: 14ad32e1a7c28fe004554958090e4802f59db5bb0ff7870147a81f228683701fa6216d5e30ac6598a6dd46a4620edef186846fa9270e71b3e2e3672d7b80410e
6
+ metadata.gz: 84f969688fad37af3321f1b9631af1ad0b4deacac4cce100a9eee783775e55aaeec5c3175bd9b38b007f9f998ffb75039ecec08d4c73739db12b5164cc309cc8
7
+ data.tar.gz: 4e0109dca780dce283e969c3b749932fe218a6d790db1108ca1d976768a67206a920278cc01cc1a42bf5858179fa6ead7048b4e3e27bd7b8b490e41ccffe57c2
@@ -67,7 +67,7 @@ module Libis
67
67
  # @param [Array] args optional extra arguments.
68
68
  # @!method(debug(msg, *args))
69
69
  def debug(msg, *args)
70
- message :DEBUG, msg, *args
70
+ self.message :DEBUG, msg, *args
71
71
  end
72
72
 
73
73
  # Send an info message to the logger.
@@ -76,7 +76,7 @@ module Libis
76
76
  # @param (see #debug)
77
77
  # @!method(info(msg, *args))
78
78
  def info(msg, *args)
79
- message :INFO, msg, *args
79
+ self.message :INFO, msg, *args
80
80
  end
81
81
 
82
82
  # Send a warning message to the logger.
@@ -85,7 +85,7 @@ module Libis
85
85
  # @param (see #debug)
86
86
  # @!method(warn(msg, *args))
87
87
  def warn(msg, *args)
88
- message :WARN, msg, *args
88
+ self.message :WARN, msg, *args
89
89
  end
90
90
 
91
91
  # Send an error message to the logger.
@@ -94,7 +94,7 @@ module Libis
94
94
  # @param (see #debug)
95
95
  # @!method(error(msg, *args))
96
96
  def error(msg, *args)
97
- message :ERROR, msg, *args
97
+ self.message :ERROR, msg, *args
98
98
  end
99
99
 
100
100
  # Send a fatal message to the logger.
@@ -103,7 +103,7 @@ module Libis
103
103
  # @param (see #debug)
104
104
  # @!method(fatal(msg, *args))
105
105
  def fatal(msg, *args)
106
- message :FATAL, msg, *args
106
+ self.message :FATAL, msg, *args
107
107
  end
108
108
 
109
109
  # The method that performs the code logging action.
@@ -1,5 +1,5 @@
1
1
  module Libis
2
2
  module Tools
3
- VERSION = '0.9.24'
3
+ VERSION = '0.9.25'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libis-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.24
4
+ version: 0.9.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kris Dekeyser