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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75c87088afa4a74f19ebcb90dbfe6ec02a273fb466d310d21a74e77673f7149c
4
- data.tar.gz: 8dc505c8018f1c4084e69452bb971b840ed469d1e686dd0f1f9ba5c170e79d65
3
+ metadata.gz: ece63af71c4a5c828a54550a22474e0306c7072abadde05b9e1eab86202ee4f7
4
+ data.tar.gz: 3cddc3249be5cd6aff1d2451b2466d9adb29f8ed80693e9fc3334ae1eefc824c
5
5
  SHA512:
6
- metadata.gz: d7455f7b14090e98b29e9ac5839ad013410e2449c2b53d8183595802b165163ab2550e607dd9ccf5d784eae1b8e19a84278fe96614e4bdf550011a423ab95b89
7
- data.tar.gz: 5c7fe74a521089402e6b7241589283e78a74b1205fa03a953185b2da39a088e2eb09f10e5e36c6af5d3d2061d99a95638da8c31e2abf744c06ee0eeb43870e84
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 on Rails applications. It provides customizable log levels, formats, and destinations.
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 execute:
17
+ And then run:
18
18
 
19
19
  ```bash
20
20
  bundle install
21
21
  ```
22
22
 
23
- Or install it yourself as:
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
- ### Configuration
31
+ ### Example
32
32
 
33
- You can configure LiteLogger in an initializer file. For example, create a file named `config/initializers/lite_logger.rb` with the following content:
33
+ In a Ruby class:
34
34
 
35
35
  ```ruby
36
- # config/initializers/lite_logger.rb
37
- LiteLogger.configure do |config|
38
- config.level = :debug
39
- config.format = :json
40
- config.destination = Rails.root.join('log', 'lite_logger.log')
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 on GitHub at <https://github.com/dmferrari/lite_logger>.
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).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LiteLogger
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
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.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-24 00:00:00.000000000 Z
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.10
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: []