logstash-codec-thrift 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5296aade4ca3e73022f68e2dec20878b0f98c0ba
4
- data.tar.gz: e0ee87e0bee2d7c14383c4a1513e092feb7bcf4b
3
+ metadata.gz: c43dddf0786e355d5c23774f7341d800e5f97862
4
+ data.tar.gz: af97e2c3d936544fe5fdb30fd7e01abeb2b5fd84
5
5
  SHA512:
6
- metadata.gz: 026069b655a339cd6eb1bff80dcfaa34360032a15000d29a1d41bd62d8e0465a2f61f450518c84839d20e2e1248de54eb7cf8ec8291346f4db052edb62f73839
7
- data.tar.gz: b090666f086672e7a8b1e01288604650ff5901bbc52b22255940d682e53648efda41fe2472be3136483a1c3993d77fcf9ed6afb430076be16296e9bc4152a104
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.1.1'
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 = `git ls-files`.split($\)
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', '>= 1.4.0', '< 2.0.0'
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.1.1
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: 2015-08-24 00:00:00.000000000 Z
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: 2.0.0
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: 2.0.0
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
data/Rakefile DELETED
@@ -1,7 +0,0 @@
1
- @files=[]
2
-
3
- task :default do
4
- system("rake -T")
5
- end
6
-
7
- require "logstash/devutils/rake"