lorekeeper 1.4.0 → 1.4.1

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
  SHA1:
3
- metadata.gz: c55a51890aeb4e37eb76876116cf15a7f69ae6ce
4
- data.tar.gz: e63c63f99a922787949efa1af265ea6f2aa449e2
3
+ metadata.gz: 5ab9c1f15bd2dfc3d1baa1f5fb6412269919eea3
4
+ data.tar.gz: d1abb98418e1d00648728c1132a9e01dcbed9985
5
5
  SHA512:
6
- metadata.gz: 481fba6b44301e346c448782014106deb3cdb18a1e524b304a59de2d30f4311c263273d778e959f80efced2f0b7b467ac0336cf6cb872540ab8dbbc5a0dfb24b
7
- data.tar.gz: 886c2d166a4b0126406de44fdbe1083a69f93195a8e2ac86caa275a266dae36b5de07f984a7435765ae76880308ec78a5c57e94a3828854736a370efd0b64928
6
+ metadata.gz: 9f48dcf695400873308dfc8b6afc1afff51e5115c990a5f7ea9787ec26f0be30cb17e0c91a006488fdf208aafe18f44ac11b24a75ce79b099729b978b4b1965e
7
+ data.tar.gz: 482c9ad1f3e44ed2172224b7079fe7f525ade1dbf0ed539be6e75c0a3ba7ad0c4a9671dad3bcf71ff904321a3accf7a98864e82ac91b9987acc1edbac35c4990
@@ -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
- terminal
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
- activerecord-session and maybe other gems.
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 = %i(debug info warn error fatal)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  # The comment above will make all strings in a current file frozen
3
3
  module Lorekeeper
4
- VERSION = '1.4.0'.freeze
4
+ VERSION = '1.4.1'.freeze
5
5
  end
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.0
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-05-06 00:00:00.000000000 Z
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: