logstash-codec-thrift 0.1.1 → 0.2.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.
- checksums.yaml +4 -4
- data/LICENSE.md +13 -0
- data/logstash-codec-thrift.gemspec +3 -4
- metadata +11 -18
- data/.gitignore +0 -1
- data/Rakefile +0 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c43dddf0786e355d5c23774f7341d800e5f97862
|
|
4
|
+
data.tar.gz: af97e2c3d936544fe5fdb30fd7e01abeb2b5fd84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a0598bf54259849f61494964e826cb098a97731df1c866f886877fb2f1abbf7eb46a492164ebbba339119b75f24fa541685d4256f22fd04365a4db4fe0533c3
|
|
7
|
+
data.tar.gz: 406793b94ee99a397074671fbb578206a7a59809f030f8a26edb8fbd6947648483f0a720f20e64c893c066958d0cdfdfb1608645ee71140bd348d2337fdc7f5d
|
data/LICENSE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2016 Active Agent AG
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-codec-thrift'
|
|
4
|
-
s.version = '0.
|
|
4
|
+
s.version = '0.2.0'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "This example input streams a string at a definable interval."
|
|
7
7
|
s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.require_paths = ["lib"]
|
|
12
12
|
|
|
13
13
|
# Files
|
|
14
|
-
s.files =
|
|
14
|
+
s.files = Dir['lib/**/*','*.gemspec','*.md','Gemfile']
|
|
15
15
|
|
|
16
16
|
# Tests
|
|
17
17
|
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
@@ -20,10 +20,9 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "codec" }
|
|
21
21
|
|
|
22
22
|
# Gem dependencies
|
|
23
|
-
s.add_runtime_dependency 'logstash-core', '
|
|
23
|
+
s.add_runtime_dependency 'logstash-core-plugin-api', '~> 1.0'
|
|
24
24
|
s.add_runtime_dependency 'thrift'
|
|
25
25
|
|
|
26
26
|
s.add_development_dependency 'logstash-devutils', '>= 0.0.15'
|
|
27
27
|
|
|
28
|
-
|
|
29
28
|
end
|
metadata
CHANGED
|
@@ -1,35 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-codec-thrift
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Active Agent AG
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: logstash-core
|
|
14
|
+
name: logstash-core-plugin-api
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- -
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.4.0
|
|
20
|
-
- - <
|
|
17
|
+
- - ~>
|
|
21
18
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
19
|
+
version: '1.0'
|
|
23
20
|
type: :runtime
|
|
24
21
|
prerelease: false
|
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
23
|
requirements:
|
|
27
|
-
- -
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: 1.4.0
|
|
30
|
-
- - <
|
|
24
|
+
- - ~>
|
|
31
25
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
26
|
+
version: '1.0'
|
|
33
27
|
- !ruby/object:Gem::Dependency
|
|
34
28
|
name: thrift
|
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,14 +60,13 @@ executables: []
|
|
|
66
60
|
extensions: []
|
|
67
61
|
extra_rdoc_files: []
|
|
68
62
|
files:
|
|
69
|
-
- .gitignore
|
|
70
|
-
- Gemfile
|
|
71
|
-
- README.md
|
|
72
|
-
- Rakefile
|
|
73
63
|
- lib/logstash/codecs/thrift-event.rb
|
|
74
64
|
- lib/logstash/codecs/thrift.rb
|
|
75
65
|
- lib/thrift/event.thrift
|
|
76
66
|
- logstash-codec-thrift.gemspec
|
|
67
|
+
- LICENSE.md
|
|
68
|
+
- README.md
|
|
69
|
+
- Gemfile
|
|
77
70
|
homepage: http://active-agent.com
|
|
78
71
|
licenses:
|
|
79
72
|
- Apache License (2.0)
|
|
@@ -96,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
96
89
|
version: '0'
|
|
97
90
|
requirements: []
|
|
98
91
|
rubyforge_project:
|
|
99
|
-
rubygems_version: 2.0.14
|
|
92
|
+
rubygems_version: 2.0.14.1
|
|
100
93
|
signing_key:
|
|
101
94
|
specification_version: 4
|
|
102
95
|
summary: This example input streams a string at a definable interval.
|
data/.gitignore
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Gemfile.lock
|