loggregator_emitter 0.0.16 → 1.0.0
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.
- data/README.md +4 -0
- data/lib/loggregator_messages/log_message.pb.rb +1 -0
- data/lib/loggregator_messages/log_message.proto +1 -0
- data/loggregator_emitter.gemspec +1 -1
- metadata +2 -3
- data/Gemfile.lock +0 -29
data/README.md
CHANGED
|
@@ -15,6 +15,7 @@ Call emit() or emit_error() on this emitter with the application GUID and the me
|
|
|
15
15
|
LogMessage::SourceType::UAA
|
|
16
16
|
LogMessage::SourceType::DEA
|
|
17
17
|
LogMessage::SourceType::WARDEN_CONTAINER
|
|
18
|
+
LogMessage::SourceType::LOGGREGATOR
|
|
18
19
|
|
|
19
20
|
### Setup
|
|
20
21
|
|
|
@@ -34,3 +35,6 @@ Call emit() or emit_error() on this emitter with the application GUID and the me
|
|
|
34
35
|
|
|
35
36
|
emitter.emit_error(app_guid,error_message) # Emits messages with a message type of ERR
|
|
36
37
|
|
|
38
|
+
### Versioning
|
|
39
|
+
|
|
40
|
+
This gem is versioned using [semantic versioning](http://semver.org/).
|
data/loggregator_emitter.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: loggregator_emitter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -85,7 +85,6 @@ files:
|
|
|
85
85
|
- .gitignore
|
|
86
86
|
- .travis.yml
|
|
87
87
|
- Gemfile
|
|
88
|
-
- Gemfile.lock
|
|
89
88
|
- LICENSE
|
|
90
89
|
- README.md
|
|
91
90
|
- Rakefile
|
|
@@ -119,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
119
118
|
version: '0'
|
|
120
119
|
segments:
|
|
121
120
|
- 0
|
|
122
|
-
hash:
|
|
121
|
+
hash: 2332041355352225628
|
|
123
122
|
requirements: []
|
|
124
123
|
rubyforge_project:
|
|
125
124
|
rubygems_version: 1.8.25
|
data/Gemfile.lock
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
loggregator_emitter (0.0.16)
|
|
5
|
-
beefcake (~> 0.3.7)
|
|
6
|
-
|
|
7
|
-
GEM
|
|
8
|
-
remote: https://rubygems.org/
|
|
9
|
-
specs:
|
|
10
|
-
beefcake (0.3.7)
|
|
11
|
-
diff-lcs (1.2.4)
|
|
12
|
-
rake (10.1.0)
|
|
13
|
-
rspec (2.14.1)
|
|
14
|
-
rspec-core (~> 2.14.0)
|
|
15
|
-
rspec-expectations (~> 2.14.0)
|
|
16
|
-
rspec-mocks (~> 2.14.0)
|
|
17
|
-
rspec-core (2.14.5)
|
|
18
|
-
rspec-expectations (2.14.3)
|
|
19
|
-
diff-lcs (>= 1.1.3, < 2.0)
|
|
20
|
-
rspec-mocks (2.14.3)
|
|
21
|
-
|
|
22
|
-
PLATFORMS
|
|
23
|
-
ruby
|
|
24
|
-
|
|
25
|
-
DEPENDENCIES
|
|
26
|
-
bundler (~> 1.3)
|
|
27
|
-
loggregator_emitter!
|
|
28
|
-
rake (~> 10.1.0)
|
|
29
|
-
rspec (~> 2.14.1)
|