logstash-core-queue-jruby 5.1.1.1-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 +7 -0
- data/gemspec_jars.rb +4 -0
- data/lib/logstash-core-queue-jruby/logstash-core-queue-jruby.jar +0 -0
- data/lib/logstash-core-queue-jruby/logstash-core-queue-jruby.rb +24 -0
- data/lib/logstash-core-queue-jruby/version.rb +3 -0
- data/logstash-core-queue-jruby.gemspec +23 -0
- metadata +49 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a84f9e2593cf8dadbd935a7cac6131271f2c3d54
|
4
|
+
data.tar.gz: a4860c9d9db3fbebe5aadf17c5869c8a05c2839e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 847a3150f3efd1d6f5d517f76ff8eb9dc1c9c7ac8da65641a59d40f6e2be4a7bacd68be48eaa4310790bd544228d4fd2a320eb191944bbb70b5736040f8ee0f3
|
7
|
+
data.tar.gz: 4ddb4d83a3edab02db0bc9bc95f96f2fb6ff5429726df562dc7dc2b606975ee238648d874d7ca8c45fbf215d72464e1264189357f433d2c91ba0f0ac9d101fa1
|
data/gemspec_jars.rb
ADDED
Binary file
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require "java"
|
4
|
+
|
5
|
+
module LogStash
|
6
|
+
end
|
7
|
+
|
8
|
+
# local dev setup
|
9
|
+
classes_dir = File.expand_path("../../../build/classes/main", __FILE__)
|
10
|
+
|
11
|
+
if File.directory?(classes_dir)
|
12
|
+
# if in local dev setup, add target to classpath
|
13
|
+
$CLASSPATH << classes_dir unless $CLASSPATH.include?(classes_dir)
|
14
|
+
else
|
15
|
+
# otherwise use included jar
|
16
|
+
begin
|
17
|
+
require "logstash-core-queue-jruby/logstash-core-queue-jruby.jar"
|
18
|
+
rescue Exception => e
|
19
|
+
raise("Error loading logstash-core-queue-jruby/logstash-core-queue-jruby.jar file, cause: #{e.message}")
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
require "jruby_acked_queue_ext"
|
24
|
+
require "jruby_acked_batch_ext"
|
@@ -0,0 +1,23 @@
|
|
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-queue-jruby/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.authors = ["Elastic"]
|
8
|
+
gem.email = ["info@elastic.co"]
|
9
|
+
gem.description = %q{The core event component of logstash, the scalable log and event management tool}
|
10
|
+
gem.summary = %q{logstash-core-event-java - The core event component of logstash}
|
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-queue-jruby.gemspec", "gemspec_jars.rb", "lib/**/*.jar", "lib/**/*.rb", "spec/**/*.rb"])
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
gem.name = "logstash-core-queue-jruby"
|
17
|
+
gem.require_paths = ["lib"]
|
18
|
+
gem.version = LOGSTASH_CORE_QUEUE_JRUBY_VERSION
|
19
|
+
|
20
|
+
gem.platform = "java"
|
21
|
+
|
22
|
+
eval(File.read(File.expand_path("../gemspec_jars.rb", __FILE__)))
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: logstash-core-queue-jruby
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 5.1.1.1
|
5
|
+
platform: java
|
6
|
+
authors:
|
7
|
+
- Elastic
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-01-03 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: The core event component of logstash, the scalable log and event management tool
|
14
|
+
email:
|
15
|
+
- info@elastic.co
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- gemspec_jars.rb
|
21
|
+
- lib/logstash-core-queue-jruby/logstash-core-queue-jruby.jar
|
22
|
+
- lib/logstash-core-queue-jruby/logstash-core-queue-jruby.rb
|
23
|
+
- lib/logstash-core-queue-jruby/version.rb
|
24
|
+
- logstash-core-queue-jruby.gemspec
|
25
|
+
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
26
|
+
licenses:
|
27
|
+
- Apache License (2.0)
|
28
|
+
metadata: {}
|
29
|
+
post_install_message:
|
30
|
+
rdoc_options: []
|
31
|
+
require_paths:
|
32
|
+
- lib
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - ">="
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: '0'
|
43
|
+
requirements: []
|
44
|
+
rubyforge_project:
|
45
|
+
rubygems_version: 2.4.8
|
46
|
+
signing_key:
|
47
|
+
specification_version: 4
|
48
|
+
summary: logstash-core-event-java - The core event component of logstash
|
49
|
+
test_files: []
|