lite_logger 0.1.4 → 0.1.5

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
  SHA256:
3
- metadata.gz: d2f3c627b39839930ebd45fd9f908cbbd8a3d0392af6f22318ec23e4efee5ec8
4
- data.tar.gz: 13c2b2f29b407d833149fa753ade41b6c9992140f3a374b004394338866fc87b
3
+ metadata.gz: 1444c01d8b611aae058133582a232840dc14712a898eca0fdc5695f21e6025bf
4
+ data.tar.gz: 8af0639ebfabc5bfbbca2da242a126509d81fefacd72adc9f4161ac56d1531f9
5
5
  SHA512:
6
- metadata.gz: ddd4cc3ca1f15c8db1166351fc97fcfc10ce4cdfbca4ca1fdc97ae85153a3f1d584e23757970fd12e9e628438be97ad878933ebfcdf1df6d73d734660f543c4b
7
- data.tar.gz: 54a14d4c2f72b12f50c3bfcbe9f403aaecc0026ad7c70d8273f1bbfcdd35da2a37beca4fb648ff27d76aaf8c6c1af21611e1ccbfcbf963cd073d0b45cd79136c
6
+ metadata.gz: 60b622783d0ac193c3c09587dd91c1a5358d95f1f3ed568722c9d3e1a41025bc80c623c001d5c2ef633f212d35fe5dee4b8bbd3f200b90d1c791d405a82625d5
7
+ data.tar.gz: 2c38a22345a42046c969d17834c4c7e4bbdbd85b84a9fe3bf5d1e3e3718279bd3cc087eb4bfe52a8415c09965717a6017ede54ba408eba234426a009480f55c3
data/CHANGELOG.md CHANGED
@@ -26,3 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
26
26
  ## [0.1.4] - 2024-07-09
27
27
 
28
28
  - Remove duplicated call to `Time.now`
29
+
30
+ ## [0.1.5] - 2024-07-10
31
+
32
+ - Bug fix: Remove uninitialized constant LiteLogger::Logger::StringIO
33
+ - Readme updated with example on how to log to a file.
data/README.md CHANGED
@@ -30,7 +30,7 @@ gem install lite_logger
30
30
 
31
31
  ### Example
32
32
 
33
- In a Ruby class:
33
+ #### In a Ruby class:
34
34
 
35
35
  ```ruby
36
36
  # Require the gem
@@ -54,6 +54,22 @@ class MyClass
54
54
  end
55
55
  ```
56
56
 
57
+ #### Logging to a file
58
+
59
+ ```ruby
60
+ require 'lite_logger'
61
+
62
+ @logger = LiteLogger::Logger.new
63
+ @logger.destination = './application.log'
64
+ @logger.info('Application started!')
65
+ ```
66
+
67
+ Output:
68
+
69
+ ```
70
+ 2024-07-10 18:58:07 -0300 [INFO] Application started!
71
+ ```
72
+
57
73
  ## Contributing
58
74
 
59
75
  Bug reports and pull requests are welcome: <https://github.com/dmferrari/lite_logger/pulls>.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LiteLogger
4
- VERSION = '0.1.4'
4
+ VERSION = '0.1.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite_logger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Ferrari