logstash-input-google_pubsub 1.4.0 → 1.4.1
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/CHANGELOG.md +4 -0
- data/docs/index.asciidoc +2 -2
- data/lib/logstash-input-google_pubsub_jars.rb +38 -37
- data/logstash-input-google_pubsub.gemspec +0 -1
- data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar +0 -0
- data/vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar +0 -0
- data/vendor/jar-dependencies/io/grpc/grpc-api/1.75.0/grpc-api-1.75.0.jar +0 -0
- data/vendor/jar-dependencies/io/grpc/grpc-netty-shaded/{1.56.1/grpc-netty-shaded-1.56.1.jar → 1.75.0/grpc-netty-shaded-1.75.0.jar} +0 -0
- data/vendor/jar-dependencies/io/grpc/grpc-util/1.75.0/grpc-util-1.75.0.jar +0 -0
- data/vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar +0 -0
- data/vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.1/plugin-1.4.1.jar +0 -0
- metadata +15 -31
- data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.23.2/protobuf-java-3.23.2.jar +0 -0
- data/vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.23.2/protobuf-java-util-3.23.2.jar +0 -0
- data/vendor/jar-dependencies/io/grpc/grpc-api/1.56.1/grpc-api-1.56.1.jar +0 -0
- data/vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.23/animal-sniffer-annotations-1.23.jar +0 -0
- data/vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.0/plugin-1.4.0.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a3a35e5a5cdff1316afeb33ec758f75739b3c9f70a82b98ba6aa25231906850c
|
|
4
|
+
data.tar.gz: 4d7aebaa0c8dbd5535a6a75a4f7ddf3540bf126588c90ed8465b9fca0f18630a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09a9d6a29677789f8d80dea93e72159c7d23d5b4d5f7b728007dd6b01da9231f164c1edea7909fc0e842c1b86ca394994434c72c21814d35a31f5550fdd65266'
|
|
7
|
+
data.tar.gz: f4fcfa827820a110d9cbfca6ab5b79fbc16166eca9900d4bf0a42674b99ce8f7a35e20c680319cffd07bd7dc951e4d23de01cf982b4230f5a522f1f21e60fda6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 1.4.1
|
|
2
|
+
- Re-packaging the plugin [#72](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/72)
|
|
3
|
+
- Removed `jar-dependencies` dependency. [#70](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/70)
|
|
4
|
+
|
|
1
5
|
## 1.4.0
|
|
2
6
|
- Added optional field json_key_file_content to get Service Account JSON key as an String input. [#68](https://github.com/logstash-plugins/logstash-input-google_pubsub/pull/68)
|
|
3
7
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -78,8 +78,8 @@ plugin will return the raw text in as `raw_message` in the logstash `event`.
|
|
|
78
78
|
|
|
79
79
|
You have two options for authentication depending on where you run Logstash.
|
|
80
80
|
|
|
81
|
-
1. If you are running Logstash outside of Google Cloud Platform,
|
|
82
|
-
path to the JSON private key file in your config in `json_key_file` setting.
|
|
81
|
+
1. If you are running Logstash outside of Google Cloud Platform, you need to provide
|
|
82
|
+
the path to the JSON private key file in your config in `json_key_file` setting.
|
|
83
83
|
If you don't want to upload the file and use its content as a string, then add the content
|
|
84
84
|
of JSON private key in `json_key_file_content` setting. You must assign sufficient
|
|
85
85
|
roles to the Service Account to create a subscription and to pull messages
|
|
@@ -2,53 +2,54 @@
|
|
|
2
2
|
|
|
3
3
|
require 'jar_dependencies'
|
|
4
4
|
require_jar('com.google.cloud', 'google-cloud-pubsub', '1.124.1')
|
|
5
|
-
require_jar('com.google.
|
|
6
|
-
require_jar('com.google.
|
|
7
|
-
require_jar('
|
|
8
|
-
require_jar('
|
|
5
|
+
require_jar('com.google.protobuf', 'protobuf-java', '3.25.5')
|
|
6
|
+
require_jar('com.google.protobuf', 'protobuf-java-util', '3.25.5')
|
|
7
|
+
require_jar('io.grpc', 'grpc-netty-shaded', '1.75.0')
|
|
8
|
+
require_jar('io.grpc', 'grpc-util', '1.75.0')
|
|
9
|
+
require_jar('io.grpc', 'grpc-api', '1.75.0')
|
|
10
|
+
require_jar('io.grpc', 'grpc-context', '1.56.1')
|
|
11
|
+
require_jar('io.grpc', 'grpc-stub', '1.56.1')
|
|
12
|
+
require_jar('io.grpc', 'grpc-protobuf', '1.56.1')
|
|
13
|
+
require_jar('io.grpc', 'grpc-protobuf-lite', '1.56.1')
|
|
9
14
|
require_jar('com.google.api', 'api-common', '2.15.0')
|
|
10
|
-
require_jar('com.google.api', '
|
|
11
|
-
require_jar('com.google.api', 'gax-httpjson', '2.32.0')
|
|
12
|
-
require_jar('com.google.api', 'gax', '2.32.0')
|
|
13
|
-
require_jar('com.google.auth', 'google-auth-library-credentials', '1.19.0')
|
|
15
|
+
require_jar('com.google.api.grpc', 'proto-google-common-protos', '2.23.0')
|
|
14
16
|
require_jar('com.google.auth', 'google-auth-library-oauth2-http', '1.19.0')
|
|
15
|
-
require_jar('com.google.
|
|
16
|
-
require_jar('com.google.
|
|
17
|
-
require_jar('com.google.
|
|
18
|
-
require_jar('com.google.
|
|
19
|
-
require_jar('com.google.guava', 'failureaccess', '1.0.1')
|
|
17
|
+
require_jar('com.google.auth', 'google-auth-library-credentials', '1.19.0')
|
|
18
|
+
require_jar('com.google.http-client', 'google-http-client-gson', '1.43.3')
|
|
19
|
+
require_jar('com.google.api.grpc', 'proto-google-cloud-pubsub-v1', '1.106.1')
|
|
20
|
+
require_jar('com.google.api.grpc', 'proto-google-iam-v1', '1.18.0')
|
|
20
21
|
require_jar('com.google.guava', 'guava', '32.1.2-jre')
|
|
22
|
+
require_jar('com.google.guava', 'failureaccess', '1.0.1')
|
|
21
23
|
require_jar('com.google.guava', 'listenablefuture', '9999.0-empty-to-avoid-conflict-with-guava')
|
|
22
|
-
require_jar('
|
|
23
|
-
require_jar('com.google.http-client', 'google-http-client', '1.43.3')
|
|
24
|
+
require_jar('org.checkerframework', 'checker-qual', '3.33.0')
|
|
24
25
|
require_jar('com.google.j2objc', 'j2objc-annotations', '2.8')
|
|
25
|
-
require_jar('com.google.
|
|
26
|
-
require_jar('com.google.
|
|
27
|
-
require_jar('com.google.re2j', 're2j', '1.7')
|
|
28
|
-
require_jar('commons-codec', 'commons-codec', '1.15')
|
|
29
|
-
require_jar('commons-logging', 'commons-logging', '1.2')
|
|
26
|
+
require_jar('com.google.api', 'gax', '2.32.0')
|
|
27
|
+
require_jar('com.google.api', 'gax-grpc', '2.32.0')
|
|
30
28
|
require_jar('io.grpc', 'grpc-alts', '1.56.1')
|
|
31
|
-
require_jar('io.grpc', 'grpc-
|
|
29
|
+
require_jar('io.grpc', 'grpc-grpclb', '1.56.1')
|
|
30
|
+
require_jar('org.conscrypt', 'conscrypt-openjdk-uber', '2.5.2')
|
|
32
31
|
require_jar('io.grpc', 'grpc-auth', '1.56.1')
|
|
33
|
-
require_jar('io.grpc', 'grpc-context', '1.56.1')
|
|
34
|
-
require_jar('io.grpc', 'grpc-core', '1.56.1')
|
|
35
32
|
require_jar('io.grpc', 'grpc-googleapis', '1.56.1')
|
|
36
|
-
require_jar('io.grpc', 'grpc-grpclb', '1.56.1')
|
|
37
|
-
require_jar('io.grpc', 'grpc-netty-shaded', '1.56.1')
|
|
38
|
-
require_jar('io.grpc', 'grpc-protobuf-lite', '1.56.1')
|
|
39
|
-
require_jar('io.grpc', 'grpc-protobuf', '1.56.1')
|
|
40
|
-
require_jar('io.grpc', 'grpc-services', '1.56.1')
|
|
41
|
-
require_jar('io.grpc', 'grpc-stub', '1.56.1')
|
|
42
33
|
require_jar('io.grpc', 'grpc-xds', '1.56.1')
|
|
43
|
-
require_jar('io.opencensus', 'opencensus-api', '0.31.1')
|
|
44
|
-
require_jar('io.opencensus', 'opencensus-contrib-http-util', '0.31.1')
|
|
45
34
|
require_jar('io.opencensus', 'opencensus-proto', '0.2.0')
|
|
35
|
+
require_jar('io.grpc', 'grpc-services', '1.56.1')
|
|
36
|
+
require_jar('com.google.re2j', 're2j', '1.7')
|
|
37
|
+
require_jar('com.google.api', 'gax-httpjson', '2.32.0')
|
|
38
|
+
require_jar('com.google.code.gson', 'gson', '2.10.1')
|
|
39
|
+
require_jar('org.threeten', 'threetenbp', '1.6.8')
|
|
40
|
+
require_jar('com.google.code.findbugs', 'jsr305', '3.0.2')
|
|
41
|
+
require_jar('io.opencensus', 'opencensus-api', '0.31.1')
|
|
42
|
+
require_jar('io.grpc', 'grpc-core', '1.56.1')
|
|
43
|
+
require_jar('com.google.android', 'annotations', '4.1.1.4')
|
|
44
|
+
require_jar('org.codehaus.mojo', 'animal-sniffer-annotations', '1.24')
|
|
46
45
|
require_jar('io.perfmark', 'perfmark-api', '0.26.0')
|
|
47
|
-
require_jar('
|
|
46
|
+
require_jar('com.google.errorprone', 'error_prone_annotations', '2.18.0')
|
|
47
|
+
require_jar('com.google.auto.value', 'auto-value-annotations', '1.10.2')
|
|
48
|
+
require_jar('com.google.http-client', 'google-http-client', '1.43.3')
|
|
48
49
|
require_jar('org.apache.httpcomponents', 'httpclient', '4.5.14')
|
|
50
|
+
require_jar('commons-logging', 'commons-logging', '1.2')
|
|
51
|
+
require_jar('commons-codec', 'commons-codec', '1.15')
|
|
49
52
|
require_jar('org.apache.httpcomponents', 'httpcore', '4.4.16')
|
|
50
|
-
require_jar('
|
|
51
|
-
require_jar('
|
|
52
|
-
require_jar('org.
|
|
53
|
-
require_jar('org.threeten', 'threetenbp', '1.6.8')
|
|
54
|
-
require_jar('org.logstash.inputs', 'plugin', '1.4.0')
|
|
53
|
+
require_jar('io.opencensus', 'opencensus-contrib-http-util', '0.31.1')
|
|
54
|
+
require_jar('javax.annotation', 'javax.annotation-api', '1.3.2')
|
|
55
|
+
require_jar('org.logstash.inputs', 'plugin', '1.4.1')
|
|
@@ -31,5 +31,4 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.requirements << "jar 'com.google.api:api-common', '1.2.0'"
|
|
32
32
|
s.requirements << "jar 'com.google.auth:google-auth-library-oauth2-http', '0.9.0'"
|
|
33
33
|
s.add_development_dependency 'logstash-devutils'
|
|
34
|
-
s.add_development_dependency 'jar-dependencies', '~> 0.4'
|
|
35
34
|
end
|
data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-google_pubsub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Johnson
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2026-01-31 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: logstash-core
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
18
|
version: 8.2.0
|
|
19
|
-
name: logstash-core
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -25,6 +24,7 @@ dependencies:
|
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
25
|
version: 8.2.0
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: logstash-core-plugin-api
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - ">="
|
|
@@ -33,7 +33,6 @@ dependencies:
|
|
|
33
33
|
- - "<="
|
|
34
34
|
- !ruby/object:Gem::Version
|
|
35
35
|
version: '2.99'
|
|
36
|
-
name: logstash-core-plugin-api
|
|
37
36
|
type: :runtime
|
|
38
37
|
prerelease: false
|
|
39
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -45,12 +44,12 @@ dependencies:
|
|
|
45
44
|
- !ruby/object:Gem::Version
|
|
46
45
|
version: '2.99'
|
|
47
46
|
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: logstash-codec-plain
|
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
|
49
49
|
requirements:
|
|
50
50
|
- - ">="
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: '0'
|
|
53
|
-
name: logstash-codec-plain
|
|
54
53
|
type: :runtime
|
|
55
54
|
prerelease: false
|
|
56
55
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -59,12 +58,12 @@ dependencies:
|
|
|
59
58
|
- !ruby/object:Gem::Version
|
|
60
59
|
version: '0'
|
|
61
60
|
- !ruby/object:Gem::Dependency
|
|
61
|
+
name: stud
|
|
62
62
|
requirement: !ruby/object:Gem::Requirement
|
|
63
63
|
requirements:
|
|
64
64
|
- - ">="
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
66
|
version: 0.0.22
|
|
67
|
-
name: stud
|
|
68
67
|
type: :runtime
|
|
69
68
|
prerelease: false
|
|
70
69
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -73,12 +72,12 @@ dependencies:
|
|
|
73
72
|
- !ruby/object:Gem::Version
|
|
74
73
|
version: 0.0.22
|
|
75
74
|
- !ruby/object:Gem::Dependency
|
|
75
|
+
name: logstash-devutils
|
|
76
76
|
requirement: !ruby/object:Gem::Requirement
|
|
77
77
|
requirements:
|
|
78
78
|
- - ">="
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
80
|
version: '0'
|
|
81
|
-
name: logstash-devutils
|
|
82
81
|
type: :development
|
|
83
82
|
prerelease: false
|
|
84
83
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -86,20 +85,6 @@ dependencies:
|
|
|
86
85
|
- - ">="
|
|
87
86
|
- !ruby/object:Gem::Version
|
|
88
87
|
version: '0'
|
|
89
|
-
- !ruby/object:Gem::Dependency
|
|
90
|
-
requirement: !ruby/object:Gem::Requirement
|
|
91
|
-
requirements:
|
|
92
|
-
- - "~>"
|
|
93
|
-
- !ruby/object:Gem::Version
|
|
94
|
-
version: '0.4'
|
|
95
|
-
name: jar-dependencies
|
|
96
|
-
type: :development
|
|
97
|
-
prerelease: false
|
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
-
requirements:
|
|
100
|
-
- - "~>"
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: '0.4'
|
|
103
88
|
description: This gem is a Logstash input plugin required to be installed on top of
|
|
104
89
|
the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
|
|
105
90
|
gem is not a stand-alone program.
|
|
@@ -142,23 +127,24 @@ files:
|
|
|
142
127
|
- vendor/jar-dependencies/com/google/http-client/google-http-client-gson/1.43.3/google-http-client-gson-1.43.3.jar
|
|
143
128
|
- vendor/jar-dependencies/com/google/http-client/google-http-client/1.43.3/google-http-client-1.43.3.jar
|
|
144
129
|
- vendor/jar-dependencies/com/google/j2objc/j2objc-annotations/2.8/j2objc-annotations-2.8.jar
|
|
145
|
-
- vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.
|
|
146
|
-
- vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.
|
|
130
|
+
- vendor/jar-dependencies/com/google/protobuf/protobuf-java-util/3.25.5/protobuf-java-util-3.25.5.jar
|
|
131
|
+
- vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.25.5/protobuf-java-3.25.5.jar
|
|
147
132
|
- vendor/jar-dependencies/com/google/re2j/re2j/1.7/re2j-1.7.jar
|
|
148
133
|
- vendor/jar-dependencies/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
|
|
149
134
|
- vendor/jar-dependencies/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
|
|
150
135
|
- vendor/jar-dependencies/io/grpc/grpc-alts/1.56.1/grpc-alts-1.56.1.jar
|
|
151
|
-
- vendor/jar-dependencies/io/grpc/grpc-api/1.
|
|
136
|
+
- vendor/jar-dependencies/io/grpc/grpc-api/1.75.0/grpc-api-1.75.0.jar
|
|
152
137
|
- vendor/jar-dependencies/io/grpc/grpc-auth/1.56.1/grpc-auth-1.56.1.jar
|
|
153
138
|
- vendor/jar-dependencies/io/grpc/grpc-context/1.56.1/grpc-context-1.56.1.jar
|
|
154
139
|
- vendor/jar-dependencies/io/grpc/grpc-core/1.56.1/grpc-core-1.56.1.jar
|
|
155
140
|
- vendor/jar-dependencies/io/grpc/grpc-googleapis/1.56.1/grpc-googleapis-1.56.1.jar
|
|
156
141
|
- vendor/jar-dependencies/io/grpc/grpc-grpclb/1.56.1/grpc-grpclb-1.56.1.jar
|
|
157
|
-
- vendor/jar-dependencies/io/grpc/grpc-netty-shaded/1.
|
|
142
|
+
- vendor/jar-dependencies/io/grpc/grpc-netty-shaded/1.75.0/grpc-netty-shaded-1.75.0.jar
|
|
158
143
|
- vendor/jar-dependencies/io/grpc/grpc-protobuf-lite/1.56.1/grpc-protobuf-lite-1.56.1.jar
|
|
159
144
|
- vendor/jar-dependencies/io/grpc/grpc-protobuf/1.56.1/grpc-protobuf-1.56.1.jar
|
|
160
145
|
- vendor/jar-dependencies/io/grpc/grpc-services/1.56.1/grpc-services-1.56.1.jar
|
|
161
146
|
- vendor/jar-dependencies/io/grpc/grpc-stub/1.56.1/grpc-stub-1.56.1.jar
|
|
147
|
+
- vendor/jar-dependencies/io/grpc/grpc-util/1.75.0/grpc-util-1.75.0.jar
|
|
162
148
|
- vendor/jar-dependencies/io/grpc/grpc-xds/1.56.1/grpc-xds-1.56.1.jar
|
|
163
149
|
- vendor/jar-dependencies/io/opencensus/opencensus-api/0.31.1/opencensus-api-0.31.1.jar
|
|
164
150
|
- vendor/jar-dependencies/io/opencensus/opencensus-contrib-http-util/0.31.1/opencensus-contrib-http-util-0.31.1.jar
|
|
@@ -168,9 +154,9 @@ files:
|
|
|
168
154
|
- vendor/jar-dependencies/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
|
|
169
155
|
- vendor/jar-dependencies/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
|
|
170
156
|
- vendor/jar-dependencies/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
|
|
171
|
-
- vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.
|
|
157
|
+
- vendor/jar-dependencies/org/codehaus/mojo/animal-sniffer-annotations/1.24/animal-sniffer-annotations-1.24.jar
|
|
172
158
|
- vendor/jar-dependencies/org/conscrypt/conscrypt-openjdk-uber/2.5.2/conscrypt-openjdk-uber-2.5.2.jar
|
|
173
|
-
- vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.
|
|
159
|
+
- vendor/jar-dependencies/org/logstash/inputs/plugin/1.4.1/plugin-1.4.1.jar
|
|
174
160
|
- vendor/jar-dependencies/org/threeten/threetenbp/1.6.8/threetenbp-1.6.8.jar
|
|
175
161
|
homepage: https://cloud.google.com/pubsub/overview
|
|
176
162
|
licenses:
|
|
@@ -178,7 +164,6 @@ licenses:
|
|
|
178
164
|
metadata:
|
|
179
165
|
logstash_plugin: 'true'
|
|
180
166
|
logstash_group: input
|
|
181
|
-
post_install_message:
|
|
182
167
|
rdoc_options: []
|
|
183
168
|
require_paths:
|
|
184
169
|
- lib
|
|
@@ -200,8 +185,7 @@ requirements:
|
|
|
200
185
|
- jar 'com.google.guava:guava', '20.0'
|
|
201
186
|
- jar 'com.google.api:api-common', '1.2.0'
|
|
202
187
|
- jar 'com.google.auth:google-auth-library-oauth2-http', '0.9.0'
|
|
203
|
-
rubygems_version: 3.3
|
|
204
|
-
signing_key:
|
|
188
|
+
rubygems_version: 3.6.3
|
|
205
189
|
specification_version: 4
|
|
206
190
|
summary: Consume events from a Google Cloud PubSub service
|
|
207
191
|
test_files:
|
data/vendor/jar-dependencies/com/google/protobuf/protobuf-java/3.23.2/protobuf-java-3.23.2.jar
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|