lite_logger 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b55ef416174c0443b3dd30380a3a1fdb3a86e4d7ffa9cbbbb200fdf797c6f656
4
- data.tar.gz: bf7689f1a987a4a07257c81e36cb6454a9704071c896ce589369561514a3295a
3
+ metadata.gz: 75c87088afa4a74f19ebcb90dbfe6ec02a273fb466d310d21a74e77673f7149c
4
+ data.tar.gz: 8dc505c8018f1c4084e69452bb971b840ed469d1e686dd0f1f9ba5c170e79d65
5
5
  SHA512:
6
- metadata.gz: b9afabd589d1495a3fd93be582115893646d9de11738f3503dc0ff146738c3990cf9ad7f97342ba801351ee591f258d012e63069373f05594d2469b30d27d281
7
- data.tar.gz: ebfb91572d6c4ef8973100ec3256f6c680e5f96ef63af0abfb7a15f6aff46837e37f5fda2c3cb624f13e65abb20ccf85f17136335248b25fa5e4666de2dc64f2
6
+ metadata.gz: d7455f7b14090e98b29e9ac5839ad013410e2449c2b53d8183595802b165163ab2550e607dd9ccf5d784eae1b8e19a84278fe96614e4bdf550011a423ab95b89
7
+ data.tar.gz: 5c7fe74a521089402e6b7241589283e78a74b1205fa03a953185b2da39a088e2eb09f10e5e36c6af5d3d2061d99a95638da8c31e2abf744c06ee0eeb43870e84
data/CHANGELOG.md CHANGED
@@ -8,3 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
  ## [0.1.0] - 2024-05-24
9
9
 
10
10
  - Initial release
11
+
12
+ ## [0.1.1] - 2024-05-24
13
+
14
+ - Added Version Badge to README.md
15
+ - Updated .gitignore file to avoid pushing .gem files
data/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  LiteLogger is a lightweight logging solution for Ruby on Rails applications. It provides customizable log levels, formats, and destinations.
4
4
 
5
+ ## Status
6
+
7
+ [![Gem Version](https://badge.fury.io/rb/lite_logger.svg)](https://badge.fury.io/rb/lite_logger)
8
+
5
9
  ## Installation
6
10
 
7
11
  Add this line to your application's Gemfile:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LiteLogger
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martin Ferrari
@@ -95,7 +95,7 @@ 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.9
98
+ rubygems_version: 3.5.10
99
99
  signing_key:
100
100
  specification_version: 4
101
101
  summary: A lightweight logging solution for Ruby on Rails applications.