logger2r 1.0.5 → 1.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -6
- data/Gemfile +1 -0
- data/README.md +2 -1
- data/lib/logger2r.rb +1 -0
- data/lib/logger2r/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e23bf63feac9ede6de69a2d486b049e52b235af
|
4
|
+
data.tar.gz: 6d5d98b9f8b5bec70dd0072ca0c0d968467fd030
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e9a6413ab17f9e9bee0a9c1f906ecf1a66c71cdb0fbcdf03eb7384ff6282e673974a379b937f72526acff941c364ee9d0784560520b8fef00bd38e10a4d2f0e
|
7
|
+
data.tar.gz: 97c9896cda3467823c424dd5fb197614701a19be0d76391b3813f6582a4c22070ac3fb30e43305d18917ed62bd4e2582683f725c396e8f1de2b0f650c80ef40b
|
data/CHANGELOG.md
CHANGED
@@ -1,23 +1,28 @@
|
|
1
|
-
|
1
|
+
### 1.0.6 (2017.04.06)
|
2
|
+
|
3
|
+
* travis integration
|
4
|
+
* cleanup
|
5
|
+
|
6
|
+
### 1.0.5 (2017.01.06)
|
2
7
|
|
3
8
|
* improve tests
|
4
9
|
|
5
|
-
|
10
|
+
### 1.0.4 (2017.01.04)
|
6
11
|
|
7
12
|
* update readme
|
8
13
|
|
9
|
-
|
14
|
+
### 1.0.3 (2017.01.04)
|
10
15
|
|
11
16
|
* fix travis config
|
12
17
|
|
13
|
-
|
18
|
+
### 1.0.2 (2017.01.04)
|
14
19
|
|
15
20
|
* update tests
|
16
21
|
|
17
|
-
|
22
|
+
### 1.0.1 (2017.01.04)
|
18
23
|
|
19
24
|
* fix travis config
|
20
25
|
|
21
|
-
|
26
|
+
### 1.0.0 (2017.01.04)
|
22
27
|
|
23
28
|
* publication of the code
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/logger2r.svg)](http://badge.fury.io/rb/logger2r)
|
4
4
|
[![Code Climate](https://codeclimate.com/github/skopciewski/logger2r/badges/gpa.svg)](https://codeclimate.com/github/skopciewski/logger2r)
|
5
|
+
[![Dependency Status](https://gemnasium.com/badges/github.com/skopciewski/logger2r.svg)](https://gemnasium.com/github.com/skopciewski/logger2r)
|
5
6
|
|
6
7
|
Wrapper class for rubby Logger. Allow to initialize the Logger class for specific progname, and configure it based on yaml config. Inspired by Log4r's yamlconfigurator.
|
7
8
|
|
@@ -51,7 +52,7 @@ end
|
|
51
52
|
|
52
53
|
## Configuration
|
53
54
|
|
54
|
-
Each configuration block for specific class may
|
55
|
+
Each configuration block for specific class may contains
|
55
56
|
|
56
57
|
`severity_level` - symbol, :debug < :info < :warn < :error < :fatal < :unknown
|
57
58
|
`device` - string, `stdout`, `stderr`, `ClassName` or `file path`
|
data/lib/logger2r.rb
CHANGED
data/lib/logger2r/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# Copyright (C) 2017 Szymon Kopciewski
|
4
4
|
#
|
@@ -18,5 +18,5 @@
|
|
18
18
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
19
|
|
20
20
|
module Logger2r
|
21
|
-
VERSION = "1.0.
|
21
|
+
VERSION = "1.0.6"
|
22
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logger2r
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Szymon Kopciewski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|