tiny_log 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/tiny_log.rb +9 -1
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9e5e2cc1eee03fc86a34571b2fb6e55a080162bb3ac6b9598bbb34f0ef491afb
4
- data.tar.gz: b68b82266ca779f4b83e700ca1e13314255a5ad481951b37d54a406c1aa715ba
3
+ metadata.gz: 29bbda4af6bbfaa0b413cecb8f148633de78393f69168d4a287517573dbd3ee6
4
+ data.tar.gz: d4d85673432ea22a5f2a248c4d75497eafae8acd28a3068d294dbe69c1abeef9
5
5
  SHA512:
6
- metadata.gz: d110256b17ab42ebf1d4acde5dd10c981ad7889245dd37ae0e38e4b890e5a46a3224459e87491aac210ea7de88ff0979e4f14c21bc18e74db1659afe33febf82
7
- data.tar.gz: 00c580ecfdecb2a8882264ed92b8d4f1cc80631fa9e0a3648eedd6bae9581257d0148110f116c757c50857dfe3249dfd10472c64d312e6b55606065527a7cb3f
6
+ metadata.gz: 81697f49eea9ed19a2ad733253e08c193cde95605ddaaab2c2e7e3c27fd83838f2dd7720a47d23e47ac3be9830da1730033d1c54f29041a12479b94171c70e5e
7
+ data.tar.gz: 3501862caab10809686c86c1be81ee9f55305852b74a699709275daa60071c118c4506446e863caac8438762f3fb3b100c17782176c45d3eb8c5679fe6a65b4f
data/lib/tiny_log.rb CHANGED
@@ -7,7 +7,7 @@ require 'time'
7
7
  # - the log message
8
8
  #
9
9
  # Ex:
10
- # l = Log.new
10
+ # l = TinyLog.new
11
11
  # l.erro('hi there')
12
12
  # l.erro('hi there')
13
13
  # 2022-11-18T01:26:37.086295Z 92967 ERRO hi there
@@ -40,6 +40,14 @@ class TinyLog
40
40
  end
41
41
  end
42
42
 
43
+ # flushes the underlying IO object; especially useful when buffering is
44
+ # enabled, or when you're exiting the application.
45
+ def flush
46
+ @io.flush
47
+
48
+ nil
49
+ end
50
+
43
51
  # the clever bit that annotates the log message with a log level and UTC
44
52
  # timestamp
45
53
  def method_missing(prefix, *msgs)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tiny_log
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Lunt
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-21 00:00:00.000000000 Z
11
+ date: 2023-07-03 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: a tiny logger with almost no features
14
14
  email: jefflunt@gmail.com