eventhub-components 0.2.0 → 0.2.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 +3 -0
- data/README.md +4 -8
- data/lib/eventhub/components/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3d73b01006f315b18a1bee94f0d82b27674452f
|
|
4
|
+
data.tar.gz: f0c8c09fc1dadb0c00c72b33e0728a7dd812b42d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 25a561cf2fe19ea70aced08675ec0e90faa36b6ec10d3340d52b7996dba8374a7ab2c09f5e34546fac7b49a13fea7c4f06b11562d0aa77850860b667457235a2
|
|
7
|
+
data.tar.gz: 83b398010c6b5a9ae2e1eda4e8bd922f391cea5fc910696e8e86d86e4fc78fdec192033563414f1b07f08c2e43869684fb03c1d6b5c360a8a9e0e51e67c297bc
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
|
@@ -24,11 +24,7 @@ Or install it yourself as:
|
|
|
24
24
|
|
|
25
25
|
require 'eventhub/components'
|
|
26
26
|
|
|
27
|
-
##
|
|
28
|
-
|
|
29
|
-
This Gem provides shared code for processors and the console app.
|
|
30
|
-
|
|
31
|
-
### Pid Files
|
|
27
|
+
## Pid Files
|
|
32
28
|
|
|
33
29
|
Takes care of writing, reading and deleting a PID file
|
|
34
30
|
|
|
@@ -42,7 +38,7 @@ Takes care of writing, reading and deleting a PID file
|
|
|
42
38
|
pid_file.delete
|
|
43
39
|
|
|
44
40
|
|
|
45
|
-
|
|
41
|
+
## Logging
|
|
46
42
|
|
|
47
43
|
#### StructuredDataLogger
|
|
48
44
|
|
|
@@ -52,7 +48,7 @@ Provides a second argument (a hash) to the log methods (debug, info, ...)
|
|
|
52
48
|
logger.info("my message", :foo => 1, :bar => 2)
|
|
53
49
|
|
|
54
50
|
|
|
55
|
-
|
|
51
|
+
## MultiLogger
|
|
56
52
|
|
|
57
53
|
Forwards calls to all devices that have been added to the multilogger.
|
|
58
54
|
|
|
@@ -61,7 +57,7 @@ Forwards calls to all devices that have been added to the multilogger.
|
|
|
61
57
|
logger.add_device(some_other_logger_2)
|
|
62
58
|
logger.info("Hans")
|
|
63
59
|
|
|
64
|
-
|
|
60
|
+
## ExceptionWriter
|
|
65
61
|
|
|
66
62
|
Helps writing exceptions and log messages to files. It creates
|
|
67
63
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eventhub-components
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steiner, Thomas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -75,6 +75,7 @@ extra_rdoc_files: []
|
|
|
75
75
|
files:
|
|
76
76
|
- ".gitignore"
|
|
77
77
|
- ".travis.yml"
|
|
78
|
+
- CHANGELOG.md
|
|
78
79
|
- Gemfile
|
|
79
80
|
- LICENSE.txt
|
|
80
81
|
- README.md
|
|
@@ -113,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
113
114
|
version: '0'
|
|
114
115
|
requirements: []
|
|
115
116
|
rubyforge_project:
|
|
116
|
-
rubygems_version: 2.6.
|
|
117
|
+
rubygems_version: 2.6.14
|
|
117
118
|
signing_key:
|
|
118
119
|
specification_version: 4
|
|
119
120
|
summary: Additional eventhub components
|