logstash-output-hedera 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c081ef3473f6f4ea63300ac67681ae443b26bdfc79ab635364055b42cee09d2
4
- data.tar.gz: 4ac1cf8d5f6bc9ef942d7aeaedcdc0e2b859a5b1ad9d6fe3ec5f3e15cf979e6b
3
+ metadata.gz: 308298c6bbd8b3cf0f30f0533cff22da6cd4b84be3ff8cc1a85e7b81f6731c29
4
+ data.tar.gz: e51b4c64f4417c8b902019b459739ff27afdab94d58746d1ef522e869bc41137
5
5
  SHA512:
6
- metadata.gz: 7cfd02ea1ba8c8fa1797c34f01a22caf66ae62b857a8f42b85ce5cd934434dc6fbac0efabe816a9a928e0606c0d06bbd2bf765adeecc075339c1a95cd51d236c
7
- data.tar.gz: f03e97584ea1ae1ca392d2cbc8aa64cc8dc510d1dd9ef8904e4a98b833af7371d6e472147b9e8c9e52d5878e625c8eb6917ad9bd052f9a8d15ad629e08151b61
6
+ metadata.gz: 7430b2c43001c80c0d7db1e319f1b1ec884eddc6eb166d46d9874aab120eb2a7409bcb9dbcc57fc41ea8b7073e45ba568ee73d0769f14993c4a61119a0f1baba
7
+ data.tar.gz: 2075f9b6bd2eafd1d1163570542437bde7477fd900cb23f0ce2b225d84912f447cfc8e3676edef54fdccfad90ed860a376ed4d01741ce7e4e6a4bf3add22f755
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ### Logstash Java Output Plugin for HCS (Hedera Consensus Service)
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/logstash-output-hedera.svg)](https://badge.fury.io/rb/logstash-output-hedera)
6
+ ![](https://ruby-gem-downloads-badge.herokuapp.com/logstash-output-hedera/0.0.1)
5
7
  ___
6
8
  ## ⚠️ Disclaimer
7
9
 
@@ -36,7 +38,7 @@ cd ..
36
38
 
37
39
  // And you can use it locally
38
40
  ./gradlew gem
39
- logstash-plugin install --no-verify --local logstash-output-logstash_output_hedera-0.0.1.gem
41
+ logstash-plugin install --no-verify --local logstash-output-hedera-0.0.1.gem
40
42
 
41
43
  // Configure and run the plugin
42
44
  // A sample configuration is available in hedera.conf.sample
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -2,4 +2,4 @@
2
2
  # encoding: utf-8
3
3
 
4
4
  require 'jar_dependencies'
5
- require_jar('com.hedera.hashgraph.logstash', 'logstash-output-hedera', '0.0.1')
5
+ require_jar('com.hedera.hashgraph.logstash', 'logstash-output-hedera', '0.0.2')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-hedera
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hedera
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-01 00:00:00.000000000 Z
11
+ date: 2020-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -74,11 +74,9 @@ files:
74
74
  - VERSION
75
75
  - docs/index.asciidoc
76
76
  - lib/logstash-output-hedera_jars.rb
77
- - lib/logstash-output-logstash_output_hedera_jars.rb
78
77
  - lib/logstash/outputs/hedera.rb
79
- - lib/logstash/outputs/logstash_output_hedera.rb
80
78
  - logstash-output-hedera.gemspec
81
- - vendor/jar-dependencies/com/hedera/hashgraph/logstash/logstash-output-hedera/0.0.1/logstash-output-hedera-0.0.1.jar
79
+ - vendor/jar-dependencies/com/hedera/hashgraph/logstash/logstash-output-hedera/0.0.2/logstash-output-hedera-0.0.2.jar
82
80
  homepage: https://github.com/hashgraph/logstash-output-hedera
83
81
  licenses:
84
82
  - Apache-2.0
@@ -1,5 +0,0 @@
1
- # AUTOGENERATED BY THE GRADLE SCRIPT. EDITS WILL BE OVERWRITTEN.
2
- # encoding: utf-8
3
-
4
- require 'jar_dependencies'
5
- require_jar('com.hedera', 'logstash-output-logstash_output_hedera', '1.0.0')
@@ -1,12 +0,0 @@
1
- # AUTOGENERATED BY THE GRADLE SCRIPT. EDITS WILL BE OVERWRITTEN.
2
- # encoding: utf-8
3
- require "logstash/outputs/base"
4
- require "logstash/namespace"
5
- require "logstash-output-logstash_output_hedera_jars"
6
- require "java"
7
-
8
- class LogStash::Outputs::LogstashOutputHedera < LogStash::Outputs::Base
9
- config_name "logstash_output_hedera"
10
-
11
- def self.javaClass() Java::com.hedera.LogstashOutputHedera.java_class; end
12
- end