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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +17 -1
- data/lib/lite_logger/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1444c01d8b611aae058133582a232840dc14712a898eca0fdc5695f21e6025bf
|
4
|
+
data.tar.gz: 8af0639ebfabc5bfbbca2da242a126509d81fefacd72adc9f4161ac56d1531f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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>.
|
data/lib/lite_logger/version.rb
CHANGED