logger2r 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7cba69c25fb58148f99e2b7dd789e7c190a3b508
4
- data.tar.gz: c11741e36be489f2dc7a1ae3417c24a029bdc100
3
+ metadata.gz: 0e23bf63feac9ede6de69a2d486b049e52b235af
4
+ data.tar.gz: 6d5d98b9f8b5bec70dd0072ca0c0d968467fd030
5
5
  SHA512:
6
- metadata.gz: 462adb4ceb323f178de007f2a143d07e1dd7746f25e1a0cdab31273183dc117ccd1aa19753b968096f8bb3e7ba82a7ed9bd28e57dfc2fba6073452e6c600ccb0
7
- data.tar.gz: e846cba8816adfd9d24c58ffecbcf8bf67ba454e332940fd0939a6cf189634d5d1d11666935874cca728b4cfb310d5918c983cbbcbd90b4a9714a8f86b96eb7f
6
+ metadata.gz: 4e9a6413ab17f9e9bee0a9c1f906ecf1a66c71cdb0fbcdf03eb7384ff6282e673974a379b937f72526acff941c364ee9d0784560520b8fef00bd38e10a4d2f0e
7
+ data.tar.gz: 97c9896cda3467823c424dd5fb197614701a19be0d76391b3813f6582a4c22070ac3fb30e43305d18917ed62bd4e2582683f725c396e8f1de2b0f650c80ef40b
@@ -1,23 +1,28 @@
1
- === 1.0.5 (2017.01.06)
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
- === 1.0.4 (2017.01.04)
10
+ ### 1.0.4 (2017.01.04)
6
11
 
7
12
  * update readme
8
13
 
9
- === 1.0.3 (2017.01.04)
14
+ ### 1.0.3 (2017.01.04)
10
15
 
11
16
  * fix travis config
12
17
 
13
- === 1.0.2 (2017.01.04)
18
+ ### 1.0.2 (2017.01.04)
14
19
 
15
20
  * update tests
16
21
 
17
- === 1.0.1 (2017.01.04)
22
+ ### 1.0.1 (2017.01.04)
18
23
 
19
24
  * fix travis config
20
25
 
21
- === 1.0.0 (2017.01.04)
26
+ ### 1.0.0 (2017.01.04)
22
27
 
23
28
  * publication of the code
data/Gemfile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  source "https://rubygems.org"
2
3
 
3
4
  # Specify your gem's dependencies in logger4r.gemspec
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 contain:
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`
@@ -1,4 +1,5 @@
1
1
  # encoding: utf-8
2
+ # frozen_string_literal: true
2
3
 
3
4
  # Copyright (C) 2017 Szymon Kopciewski
4
5
  #
@@ -1,4 +1,4 @@
1
- # encoding: utf-8
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.5".freeze
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.5
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-01-06 00:00:00.000000000 Z
11
+ date: 2017-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake