blabbermouth 0.1.3 → 0.1.4

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
  SHA1:
3
- metadata.gz: 7a49cd1a667c41b1a9c25a7c22fd77ef15a3cf04
4
- data.tar.gz: 88ed1816bfc0cace3976dab094368fcb10fa3406
3
+ metadata.gz: b12da746d093378456dc01f66de07750a3468221
4
+ data.tar.gz: 9717a0f5930704c6109ff117e284c01303c84aa2
5
5
  SHA512:
6
- metadata.gz: 1c52dd93433055c7ad4a29754f73df102c1aaeee1afcf26fdbee3e52d87c6ec01e315c646ea477ead638d4c1f7283715cf697d978868e8ec8432fcaad6e3e6bf
7
- data.tar.gz: 43f5b53d42531b6830bb0a0084235d4898e8dbaf2774f0d7b03427be9bc407d8353250e04a70212c0309915a7cf6d92d1cc541f83396cf3cd14b7008bec5e2db
6
+ metadata.gz: f05d137fceb22b9644ab265095418d333196207c8615b195906ae94840bfcb6cb7d7224125f99ffaf3b141dfa4e9c5c74a34a2f7d6eafc8663f445072b6ed048
7
+ data.tar.gz: c324fa50a33934b1aebb080bca8d5c766aa2a385557f13448bf7c0dc22539735623226467ca6703132dea8011a6c8696b1e703d48d439a7878e0618071fb1ab6
@@ -15,6 +15,21 @@ module Blabbermouth
15
15
  new(*bystanders).error(key, e, opts)
16
16
  end
17
17
 
18
+ def critical(key, e, *args)
19
+ bystanders, opts = parse_args(*args)
20
+ new(*bystanders).critical(key, e, opts)
21
+ end
22
+
23
+ def warning(key, e, *args)
24
+ bystanders, opts = parse_args(*args)
25
+ new(*bystanders).warning(key, e, opts)
26
+ end
27
+
28
+ def debug(key, e, *args)
29
+ bystanders, opts = parse_args(*args)
30
+ new(*bystanders).debug(key, e, opts)
31
+ end
32
+
18
33
  def info(key, msg=nil, *args)
19
34
  bystanders, opts = parse_args(*args)
20
35
  new(*bystanders).info(key, msg, opts)
@@ -1,3 +1,3 @@
1
1
  module Blabbermouth
2
- VERSION = '0.1.3'
2
+ VERSION = '0.1.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blabbermouth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Rebec