ph-core-plugin-api 1.0.2-java

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 99981ae06744d1c39951bbf6f04d78e15b7f256e
4
+ data.tar.gz: 59cbe89f57fca1906bc709b5cc2a81f891a0c0e4
5
+ SHA512:
6
+ metadata.gz: 3cafe7ae0670cb020a1047fdffeb80af9e9e139baa059fbb0b3f77af419050fa2d83dce7e9fe7534e1294b3f11c5228f78660c9bd2fb76096f9119d00aca7268
7
+ data.tar.gz: 8dc316907946d0b259d9a45e900320fe3a74e749faf12bf0fe7c0470308a341e6376f60ffee6b5644c6bdac7b2af719bd0e7c287bc36838cdb7502c34793fa23
@@ -0,0 +1,2 @@
1
+ # encoding: utf-8
2
+ LOGSTASH_CORE_PLUGIN_API = "1.0.0"
@@ -0,0 +1,24 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'logstash-core-plugin-api/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.authors = ["Elasticsearch"]
8
+ gem.email = ["info@elasticsearch.com"]
9
+ gem.description = %q{Logstash plugin api contract}
10
+ gem.summary = %q{Define the plugin contract that the plugin need to follow.}
11
+ gem.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
12
+ gem.license = "Apache License (2.0)"
13
+
14
+ gem.files = Dir.glob(["logstash-core-event.gemspec", "lib/**/*.rb", "spec/**/*.rb"])
15
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
+ gem.name = "logstash-core-plugin-api"
17
+ gem.require_paths = ["lib"]
18
+ gem.version = LOGSTASH_CORE_PLUGIN_API
19
+
20
+ gem.add_runtime_dependency "logstash-core", ">= 2.0.0", "< 6.0.0"
21
+ if RUBY_PLATFORM == 'java'
22
+ gem.platform = RUBY_PLATFORM
23
+ end
24
+ end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ph-core-plugin-api
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
+ platform: java
6
+ authors:
7
+ - Elasticsearch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 2.0.0
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: 2.999.0
22
+ name: logstash-core
23
+ prerelease: false
24
+ type: :runtime
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 2.0.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 2.999.0
33
+ description: Logstash plugin api contract
34
+ email:
35
+ - info@elasticsearch.com
36
+ executables: []
37
+ extensions: []
38
+ extra_rdoc_files: []
39
+ files:
40
+ - lib/logstash-core-plugin-api/version.rb
41
+ - logstash-core-plugin-api.gemspec
42
+ homepage: http://www.elastic.co/guide/en/logstash/current/index.html
43
+ licenses:
44
+ - Apache License (2.0)
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.4.8
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Define the plugin contract that the plugin need to follow.
66
+ test_files: []