logstash-core-plugin-api 2.1.9-java → 2.1.10-java

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: ac09dcb82505b9345d13165a849261581042a4a7
4
- data.tar.gz: b58196a4e7961eb08ece010b45f5a93e70835d20
3
+ metadata.gz: 89a81432ea0f5e5d162da3c94db6408377a68bdd
4
+ data.tar.gz: f9c19aa827dc46bb7f3f889abc7d5fa983059d90
5
5
  SHA512:
6
- metadata.gz: 3a6e5ecc61d91dcd54e4202807b76912c755c0da5b74327d2c504f2a5caa889abd4c66431c5a93f421d4de195107a2373b324bd610b747d31adb5d8d45fcdc36
7
- data.tar.gz: 486c7af0972bd9da3943a5ea9d3ad4c545492c38a7b1e0f7f873a831cba60a9a4ee47a144991f2da65e92ff4b315726c2e5c701e7c7b68924dc598611d7edcab
6
+ metadata.gz: fa013d86a48f2a000b42ca01109d189538fa3f78ec935360394bd87caccf7b38357435084fb6124a2716df83c46d0dffc5d48344ed7180f466940a995dc2cebf
7
+ data.tar.gz: 838f9d8a35600d554a1ef0a00ef72868cc8f30556a45ffa77be8673be826fc4db24b741de943ee30173d157dd26b7c91ce29995d617e98621ad34f7e099bae2f
@@ -1,3 +1,2 @@
1
1
  # encoding: utf-8
2
- # 2.1.9 tracks 5.0.0-alpha4.snapshot3
3
- LOGSTASH_CORE_PLUGIN_API = "2.1.9"
2
+ LOGSTASH_CORE_PLUGIN_API = "2.1.10"
@@ -0,0 +1,29 @@
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 = ["Elastic"]
8
+ gem.email = ["info@elastic.co"]
9
+ gem.description = %q{Logstash plugin API}
10
+ gem.summary = %q{Define the plugin API 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-plugin-api.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", "5.0.0-alpha5"
21
+
22
+ # Make sure we dont build this gem from a non jruby
23
+ # environment.
24
+ if RUBY_PLATFORM == "java"
25
+ gem.platform = "java"
26
+ else
27
+ raise "The logstash-core-api need to be build on jruby"
28
+ end
29
+ end
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-core-plugin-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.9
4
+ version: 2.1.10
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-17 00:00:00.000000000 Z
11
+ date: 2016-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 5.0.0.alpha4.snapshot3
18
+ version: 5.0.0.pre.alpha5
19
19
  name: logstash-core
20
20
  prerelease: false
21
21
  type: :runtime
@@ -23,7 +23,7 @@ dependencies:
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 5.0.0.alpha4.snapshot3
26
+ version: 5.0.0.pre.alpha5
27
27
  description: Logstash plugin API
28
28
  email:
29
29
  - info@elastic.co
@@ -32,6 +32,7 @@ extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
34
  - lib/logstash-core-plugin-api/version.rb
35
+ - logstash-core-plugin-api.gemspec
35
36
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
36
37
  licenses:
37
38
  - Apache License (2.0)