lite_logger 0.1.1 → 0.1.2
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 +25 -24
- data/lib/lite_logger/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ece63af71c4a5c828a54550a22474e0306c7072abadde05b9e1eab86202ee4f7
|
4
|
+
data.tar.gz: 3cddc3249be5cd6aff1d2451b2466d9adb29f8ed80693e9fc3334ae1eefc824c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25e87beb53112c98c5186f3365b1909d46e3b1b43f0ff7bb887b8c3b52ba19fe63bb4935412cb1e4c11d5716f45fe40c57314cf63a8a10e60eae88c2a2e76050
|
7
|
+
data.tar.gz: bd16d94aa16225859cb211819c1ee0c45f5632e741b904e10c3fde111261dc2bb8a0505b03f2e17dc1e43863d57e8a3227caefde821ff49e18c4756fd683e99a
|
data/CHANGELOG.md
CHANGED
@@ -13,3 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
13
13
|
|
14
14
|
- Added Version Badge to README.md
|
15
15
|
- Updated .gitignore file to avoid pushing .gem files
|
16
|
+
|
17
|
+
## [0.1.2] - 2024-05-29
|
18
|
+
|
19
|
+
- Updated README.md with installation instructions and usage example.
|
20
|
+
- Updated .gitignore file to avoid pushing development support files.
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# LiteLogger
|
2
2
|
|
3
|
-
LiteLogger is a lightweight logging solution for Ruby
|
3
|
+
LiteLogger is a lightweight logging solution for Ruby applications, providing customizable log levels, formats, and destinations.
|
4
4
|
|
5
5
|
## Status
|
6
6
|
|
@@ -14,13 +14,13 @@ Add this line to your application's Gemfile:
|
|
14
14
|
gem 'lite_logger'
|
15
15
|
```
|
16
16
|
|
17
|
-
And then
|
17
|
+
And then run:
|
18
18
|
|
19
19
|
```bash
|
20
20
|
bundle install
|
21
21
|
```
|
22
22
|
|
23
|
-
Or install it
|
23
|
+
Or install it manually with:
|
24
24
|
|
25
25
|
```bash
|
26
26
|
gem install lite_logger
|
@@ -28,36 +28,37 @@ gem install lite_logger
|
|
28
28
|
|
29
29
|
## Usage
|
30
30
|
|
31
|
-
###
|
31
|
+
### Example
|
32
32
|
|
33
|
-
|
33
|
+
In a Ruby class:
|
34
34
|
|
35
35
|
```ruby
|
36
|
-
#
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
36
|
+
# Require the gem
|
37
|
+
require 'lite_logger'
|
38
|
+
|
39
|
+
class MyClass
|
40
|
+
def initialize
|
41
|
+
# Initialize the logger
|
42
|
+
@logger = LiteLogger.new
|
43
|
+
end
|
44
|
+
|
45
|
+
def run
|
46
|
+
@logger.debug('This is a debug message')
|
47
|
+
@logger.info('This is an info message')
|
48
|
+
@logger.warn('This is a warning message')
|
49
|
+
@logger.error('This is an error message')
|
50
|
+
@logger.fatal('This is a fatal message')
|
51
|
+
|
52
|
+
# Method logic here
|
53
|
+
end
|
41
54
|
end
|
42
55
|
```
|
43
56
|
|
44
|
-
### Logging
|
45
|
-
|
46
|
-
Use the `LiteLogger` module to log messages in your application:
|
47
|
-
|
48
|
-
```ruby
|
49
|
-
LiteLogger.debug('This is a debug message')
|
50
|
-
LiteLogger.info('This is an info message')
|
51
|
-
LiteLogger.warn('This is a warning message')
|
52
|
-
LiteLogger.error('This is an error message')
|
53
|
-
LiteLogger.fatal('This is a fatal message')
|
54
|
-
```
|
55
|
-
|
56
57
|
## Contributing
|
57
58
|
|
58
|
-
Bug reports and pull requests are welcome
|
59
|
+
Bug reports and pull requests are welcome: <https://github.com/dmferrari/lite_logger/pulls>.
|
59
60
|
|
60
61
|
## License
|
61
62
|
|
62
63
|
License
|
63
|
-
This gem is available as open-source under the terms of the MIT License (see the LICENSE file in the project root for details).
|
64
|
+
This little gem is available as open-source under the terms of the MIT License (see the LICENSE file in the project root for details).
|
data/lib/lite_logger/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lite_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Ferrari
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -80,7 +80,7 @@ metadata:
|
|
80
80
|
source_code_uri: https://github.com/dmferrari/lite_logger
|
81
81
|
changelog_uri: https://github.com/dmferrari/lite_logger/blob/main/CHANGELOG.md
|
82
82
|
rubygems_mfa_required: 'true'
|
83
|
-
post_install_message:
|
83
|
+
post_install_message:
|
84
84
|
rdoc_options: []
|
85
85
|
require_paths:
|
86
86
|
- lib
|
@@ -95,8 +95,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
requirements: []
|
98
|
-
rubygems_version: 3.5.
|
99
|
-
signing_key:
|
98
|
+
rubygems_version: 3.5.9
|
99
|
+
signing_key:
|
100
100
|
specification_version: 4
|
101
101
|
summary: A lightweight logging solution for Ruby on Rails applications.
|
102
102
|
test_files: []
|