lorekeeper 1.4.0 → 1.4.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 +4 -4
- data/CHANGELOG.md +15 -15
- data/lib/lorekeeper/fast_logger.rb +1 -1
- data/lib/lorekeeper/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ab9c1f15bd2dfc3d1baa1f5fb6412269919eea3
|
4
|
+
data.tar.gz: d1abb98418e1d00648728c1132a9e01dcbed9985
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f48dcf695400873308dfc8b6afc1afff51e5115c990a5f7ea9787ec26f0be30cb17e0c91a006488fdf208aafe18f44ac11b24a75ce79b099729b978b4b1965e
|
7
|
+
data.tar.gz: 482c9ad1f3e44ed2172224b7079fe7f525ade1dbf0ed539be6e75c0a3ba7ad0c4a9671dad3bcf71ff904321a3accf7a98864e82ac91b9987acc1edbac35c4990
|
data/CHANGELOG.md
CHANGED
@@ -1,29 +1,29 @@
|
|
1
|
+
# 1.4.1
|
2
|
+
* Change array creation syntax to support Ruby 1.9
|
3
|
+
|
1
4
|
# 1.4.0
|
2
|
-
Adds '_with_data' to the simple logger so we can display data in the
|
3
|
-
|
4
|
-
Adds 'respond_to?' to the multilogger so users can check capabilities of
|
5
|
-
the loggers
|
5
|
+
* Adds '_with_data' to the simple logger so we can display data in the terminal
|
6
|
+
* Adds 'respond_to?' to the multilogger so users can check capabilities of the loggers
|
6
7
|
|
7
8
|
# 1.3.1
|
8
|
-
Loggers provide an inspect method to avoid being too noisy on outputs
|
9
|
+
* Loggers provide an inspect method to avoid being too noisy on outputs
|
9
10
|
|
10
11
|
# 1.3.0
|
11
|
-
Time in the JSON output specifies microseconds.
|
12
|
-
Using 'Z' to specify the UTC timezone instead of +0000 as per ISO 8601.
|
13
|
-
Debug and Info messages use the default foreground color of the terminal.
|
12
|
+
* Time in the JSON output specifies microseconds.
|
13
|
+
* Using 'Z' to specify the UTC timezone instead of +0000 as per ISO 8601.
|
14
|
+
* Debug and Info messages use the default foreground color of the terminal.
|
14
15
|
|
15
16
|
# 1.2.1
|
16
|
-
If a file does not exist, it will create it on behalf of the application
|
17
|
+
* If a file does not exist, it will create it on behalf of the application
|
17
18
|
|
18
19
|
# 1.2
|
19
|
-
Added a silence_logger method to the logger. For compatibility with
|
20
|
-
|
20
|
+
* Added a silence_logger method to the logger. For compatibility with activerecord-session and maybe other gems.
|
21
|
+
|
21
22
|
# 1.1.1
|
22
|
-
Avoid syntax errors in rubies < 2.3
|
23
|
+
* Avoid syntax errors in rubies < 2.3
|
23
24
|
|
24
25
|
# 1.1.0
|
25
|
-
Added an 'add' method to the logger so it is compatible with the Logger
|
26
|
-
provided by Ruby's standard library
|
26
|
+
* Added an 'add' method to the logger so it is compatible with the Logger provided by Ruby's standard library
|
27
27
|
|
28
28
|
# 1.0.0
|
29
|
-
Initial release
|
29
|
+
* Initial release
|
@@ -21,7 +21,7 @@ module Lorekeeper
|
|
21
21
|
@file = file # We only keep this so we can inspect where we are sending the logs
|
22
22
|
end
|
23
23
|
|
24
|
-
LOGGING_METHODS =
|
24
|
+
LOGGING_METHODS = [:debug, :info, :warn, :error, :fatal]
|
25
25
|
METHOD_SEVERITY_MAP = { debug: DEBUG, info: INFO, warn: WARN, error: ERROR, fatal: FATAL }
|
26
26
|
|
27
27
|
# We define the behaviour of all the usual logging methods
|
data/lib/lorekeeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lorekeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jordi Polo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oj
|
@@ -171,4 +171,3 @@ signing_key:
|
|
171
171
|
specification_version: 4
|
172
172
|
summary: Very fast JSON logger
|
173
173
|
test_files: []
|
174
|
-
has_rdoc:
|