console 1.29.2 → 1.29.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/console/interface.rb +1 -1
- data/lib/console/output/failure.rb +1 -1
- data/lib/console/output/serialized.rb +2 -2
- data/lib/console/version.rb +1 -1
- data/license.md +1 -1
- data/readme.md +12 -0
- data/releases.md +12 -0
- data.tar.gz.sig +0 -0
- metadata +3 -8
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbf78f2f64af897759c501aafc1635862b9078ae7771cadb9cddff3ecd541d52
|
4
|
+
data.tar.gz: e0d24380b970833df8ff9fbafb020a1b6497c1af48cd7c9d74f7f01192579914
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc149294554146885788dff25cbf102b94e1907af62fad7f99c41c82602b46f2eba71a1aa1aa580e377c8615427c602931ce831c1fe2f9118670316d8b685213
|
7
|
+
data.tar.gz: 4ab2099a4714c5a9bcd3f6713d6974f7208c1712b81d406f2be5ee1fc1677f383d9453dc9c74005e5761ae0100bdf99bfd629168fbb0041ebd496d5dc634d47f
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/lib/console/interface.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# Released under the MIT License.
|
4
|
-
# Copyright, 2019-
|
4
|
+
# Copyright, 2019-2025, by Samuel Williams.
|
5
5
|
|
6
6
|
require_relative "../format"
|
7
7
|
require "time"
|
@@ -68,7 +68,7 @@ module Console
|
|
68
68
|
|
69
69
|
record.update(options)
|
70
70
|
|
71
|
-
@io.
|
71
|
+
@io.write(self.dump(record) << "\n")
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
data/lib/console/version.rb
CHANGED
data/license.md
CHANGED
data/readme.md
CHANGED
@@ -32,6 +32,18 @@ Please see the [project documentation](https://socketry.github.io/console/) for
|
|
32
32
|
|
33
33
|
Please see the [project releases](https://socketry.github.io/console/releases/index) for all releases.
|
34
34
|
|
35
|
+
### v1.29.3
|
36
|
+
|
37
|
+
- Serialized output now uses `IO#write` with a single string to reduce the chance of interleaved output.
|
38
|
+
|
39
|
+
### v1.29.2
|
40
|
+
|
41
|
+
- Always return `nil` from `Console::Filter` logging methods.
|
42
|
+
|
43
|
+
### v1.29.1
|
44
|
+
|
45
|
+
- Fix logging `exception:` keyword argument when the value was not an exception.
|
46
|
+
|
35
47
|
### v1.29.0
|
36
48
|
|
37
49
|
- Don't make `Kernel#warn` redirection to `Console.warn` the default behavior, you must `require 'console/warn'` to enable it.
|
data/releases.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Releases
|
2
2
|
|
3
|
+
## v1.29.3
|
4
|
+
|
5
|
+
- Serialized output now uses `IO#write` with a single string to reduce the chance of interleaved output.
|
6
|
+
|
7
|
+
## v1.29.2
|
8
|
+
|
9
|
+
- Always return `nil` from `Console::Filter` logging methods.
|
10
|
+
|
11
|
+
## v1.29.1
|
12
|
+
|
13
|
+
- Fix logging `exception:` keyword argument when the value was not an exception.
|
14
|
+
|
3
15
|
## v1.29.0
|
4
16
|
|
5
17
|
- Don't make `Kernel#warn` redirection to `Console.warn` the default behavior, you must `require 'console/warn'` to enable it.
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.29.
|
4
|
+
version: 1.29.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -15,7 +15,6 @@ authors:
|
|
15
15
|
- Olle Jonsson
|
16
16
|
- Patrik Wenger
|
17
17
|
- William T. Nelson
|
18
|
-
autorequire:
|
19
18
|
bindir: bin
|
20
19
|
cert_chain:
|
21
20
|
- |
|
@@ -47,7 +46,7 @@ cert_chain:
|
|
47
46
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
48
47
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
49
48
|
-----END CERTIFICATE-----
|
50
|
-
date:
|
49
|
+
date: 2025-02-19 00:00:00.000000000 Z
|
51
50
|
dependencies:
|
52
51
|
- !ruby/object:Gem::Dependency
|
53
52
|
name: fiber-annotation
|
@@ -91,8 +90,6 @@ dependencies:
|
|
91
90
|
- - ">="
|
92
91
|
- !ruby/object:Gem::Version
|
93
92
|
version: '0'
|
94
|
-
description:
|
95
|
-
email:
|
96
93
|
executables: []
|
97
94
|
extensions: []
|
98
95
|
extra_rdoc_files: []
|
@@ -139,7 +136,6 @@ licenses:
|
|
139
136
|
- MIT
|
140
137
|
metadata:
|
141
138
|
documentation_uri: https://socketry.github.io/console/
|
142
|
-
post_install_message:
|
143
139
|
rdoc_options: []
|
144
140
|
require_paths:
|
145
141
|
- lib
|
@@ -154,8 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
150
|
- !ruby/object:Gem::Version
|
155
151
|
version: '0'
|
156
152
|
requirements: []
|
157
|
-
rubygems_version: 3.
|
158
|
-
signing_key:
|
153
|
+
rubygems_version: 3.6.2
|
159
154
|
specification_version: 4
|
160
155
|
summary: Beautiful logging for Ruby.
|
161
156
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|