logstash-output-googlecloudstorage 0.3.0-java → 1.0.0-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 +4 -4
- data/logstash-output-googlecloudstorage.gemspec +2 -2
- metadata +1 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 85e30e439518e2803070e2fa1a64e8f22d4e432eca0872d3ca8264f7081621fb
|
|
4
|
+
data.tar.gz: d6cb4c1ac41710f9e39944f694da2d8e2e6c4d3b9e6cc9ff04d1e8127bdbef96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a055aba42ac8ab3f99b1c2754f6ab0e49d427bfcf67f7bfac485811c62e21c4ff7d74e58118ec4ee8b7c93ed0cab048bdfdba69902a90c43da7de9e48a43fb6d
|
|
7
|
+
data.tar.gz: 2b08dd8a771066cad111a170f97bd90602b8ad0da1f08a956207c7ccfbd2cc24fe28f32ccec90ee2f02b9d0da6f802738190588e4096e80f1928f09ac3413c65
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-googlecloudstorage'
|
|
3
|
-
s.version = '0.
|
|
3
|
+
s.version = '1.0.0'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "plugin to upload log events to Google Cloud Storage (GCS)"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
|
@@ -27,6 +27,6 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.add_runtime_dependency 'google-api-client', '~> 0.8.7' # version 0.9.x works only with ruby 2.x
|
|
28
28
|
s.add_runtime_dependency 'logstash-codec-plain'
|
|
29
29
|
s.add_runtime_dependency 'mime-types', '~> 2' # last version compatible with ruby 2.x
|
|
30
|
-
s.add_runtime_dependency 'concurrent-ruby', '1.0.5'
|
|
30
|
+
# s.add_runtime_dependency 'concurrent-ruby', '1.0.5'
|
|
31
31
|
end
|
|
32
32
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-googlecloudstorage
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Shailesh
|
|
@@ -100,20 +100,6 @@ dependencies:
|
|
|
100
100
|
- - "~>"
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: '2'
|
|
103
|
-
- !ruby/object:Gem::Dependency
|
|
104
|
-
requirement: !ruby/object:Gem::Requirement
|
|
105
|
-
requirements:
|
|
106
|
-
- - '='
|
|
107
|
-
- !ruby/object:Gem::Version
|
|
108
|
-
version: 1.0.5
|
|
109
|
-
name: concurrent-ruby
|
|
110
|
-
prerelease: false
|
|
111
|
-
type: :runtime
|
|
112
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
113
|
-
requirements:
|
|
114
|
-
- - '='
|
|
115
|
-
- !ruby/object:Gem::Version
|
|
116
|
-
version: 1.0.5
|
|
117
103
|
description: This gem is a Logstash plugin required to be installed on top of the
|
|
118
104
|
Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
|
|
119
105
|
gem is not a stand-alone program
|