gelf_redux 4.0.1 → 4.2.0
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 +4 -4
- data/README.md +7 -10
- data/lib/gelf/logger.rb +2 -0
- 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: 34fdff35e2f2d6ca2f6a5058207daee386bd22cca506216cad1f1fb7180e1d7a
|
4
|
+
data.tar.gz: d5779e92ca36a31ef0cb87f4a1745433fe062d0839d21be82c74866c2617ce0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e3e2acb03645deb166d0850ba9f0e21e453a830cb30378a3153ec1ec00ed33ea257fd965a85bf7069838953281c4b89b9c937a6bde749e1b248b0e3a9ccf9eb
|
7
|
+
data.tar.gz: 7f576a99b7f4f410d0dba14b8329eb7ca29703a8ee25e349ecbb0614e8d044333d3597799261c25d0ba6100ed57c8e5492ade2f7e3de870fc03ec049ba4e2911
|
data/README.md
CHANGED
@@ -59,11 +59,7 @@ Since it's compatible with the Logger interface, you can also use it in your Rai
|
|
59
59
|
|
60
60
|
* Fork the project.
|
61
61
|
* Make your feature addition or bug fix.
|
62
|
-
* Add tests for it. This is important so
|
63
|
-
* Run the tests with `bundle exec rake`
|
64
|
-
* Commit, do not mess with rakefile, version, or history.
|
65
|
-
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
66
|
-
* Send me a pull request. Bonus points for topic branches.
|
62
|
+
* Add tests for it. This is important so nothing breaks in a future version unintentionally.
|
67
63
|
|
68
64
|
## Contributions
|
69
65
|
* Feel free to open up pull request
|
@@ -71,10 +67,11 @@ Since it's compatible with the Logger interface, you can also use it in your Rai
|
|
71
67
|
### Running the tests
|
72
68
|
* install docker with compose
|
73
69
|
|
70
|
+
You can either run tests against the ruby versions defined in docker-compose.yml:
|
74
71
|
```bash
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
docker
|
72
|
+
docker compose up
|
73
|
+
```
|
74
|
+
Or you can run a specific test:
|
75
|
+
```bash
|
76
|
+
docker compose up ruby26
|
80
77
|
```
|
data/lib/gelf/logger.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gelf_redux
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0
|
4
|
+
version: 4.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexey Palazhchenko
|
@@ -11,10 +11,10 @@ authors:
|
|
11
11
|
- Christian Rolle
|
12
12
|
- Sebastian Seidel
|
13
13
|
- Ronald Sacher
|
14
|
-
autorequire:
|
14
|
+
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
17
|
+
date: 2025-09-05 00:00:00.000000000 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: shoulda
|
@@ -151,7 +151,7 @@ homepage: https://github.com/manet-marketing/gelf_redux
|
|
151
151
|
licenses:
|
152
152
|
- MIT
|
153
153
|
metadata: {}
|
154
|
-
post_install_message:
|
154
|
+
post_install_message:
|
155
155
|
rdoc_options: []
|
156
156
|
require_paths:
|
157
157
|
- lib
|
@@ -166,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '0'
|
168
168
|
requirements: []
|
169
|
-
rubygems_version: 3.
|
170
|
-
signing_key:
|
169
|
+
rubygems_version: 3.4.19
|
170
|
+
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: Library to send GELF messages to Graylog logging server.
|
173
173
|
test_files: []
|