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 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/).
@@ -15,6 +15,7 @@ class LogMessage
15
15
  UAA = 3
16
16
  DEA = 4
17
17
  WARDEN_CONTAINER = 5
18
+ LOGGREGATOR = 6
18
19
  end
19
20
 
20
21
  required :message, :bytes, 1
@@ -12,6 +12,7 @@ message LogMessage {
12
12
  UAA = 3;
13
13
  DEA = 4;
14
14
  WARDEN_CONTAINER = 5;
15
+ LOGGREGATOR = 6;
15
16
  }
16
17
 
17
18
  required bytes message = 1;
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = "loggregator_emitter"
5
- spec.version = '0.0.16'
5
+ spec.version = '1.0.0'
6
6
  spec.authors = ["Pivotal"]
7
7
  spec.email = ["cf-eng@pivotallabs.com"]
8
8
  spec.description = "Library to emit data to Loggregator"
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.16
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: -297387469996156866
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)