gapic-generator-cloud 0.6.5 → 0.6.6

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
  SHA256:
3
- metadata.gz: d9702682ae24bee4bef6ed80a4390004d36cda7556128c721425379ea57e4f02
4
- data.tar.gz: d32cd24f704afed2e17cdc12378b9dc08089378872d59359da297e8c6301fb07
3
+ metadata.gz: 2e359e61601902da9832af1c7ad6189098a9758d2030cbc000fedd1314022167
4
+ data.tar.gz: 2af72feba6c809ebf3ac4d6603a5e2443ab304747596373a2680b63d99718da4
5
5
  SHA512:
6
- metadata.gz: 0c130a15311ab2e14bc92817819c2fb3b594cac52d0dcd5cda241558675f15558d501d66ad4ab541c7dbd16835cb5aa73b4d02d8ab8e4522318698118f8a2a1a
7
- data.tar.gz: f5343224c9a8bac01b2266d2a6a150140a02eaed1eea5e32d4958ad6829ca2ce8325d1e9b81fc271614554d34f5d2ecd25b3bceb87dbf031b33ea905edda47a5
6
+ metadata.gz: 7a3550151980f55d5a31e17e67226e8e0767af2ae0c993f8225056bfb96b94979966c207be0977b9e97e1289bdfb5db8ed9c525e214d762a96bc17fec19f1ea9
7
+ data.tar.gz: f3914d12bf66c93bfdec7ebccb13fd55f1d366b76c7053bc3cb87bbb347964d60b9b1142c53dffd80706cc6664eb9859913a5daafbf0aca491d136e9c4f94301
@@ -1,5 +1,9 @@
1
1
  # Release History for gapic-generator-cloud
2
2
 
3
+ ### 0.6.6 / 2020-08-05
4
+
5
+ * Includes changes from gapic-generator 0.6.6.
6
+
3
7
  ### 0.6.5 / 2020-07-16
4
8
 
5
9
  * Includes changes from gapic-generator 0.6.5.
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ # Copyright 2020 Google LLC
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # https://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+
18
+ $LOAD_PATH.unshift ::File.expand_path("../lib", __dir__)
19
+ $LOAD_PATH.unshift ::File.expand_path("../../gapic-generator/lib", __dir__)
20
+
21
+ require "gapic/runner"
22
+ require "google/protobuf/compiler/plugin.pb"
23
+
24
+ # Ensure that no encoding conversions are done on STDIN and STDOUT
25
+ # since we are passing binary data back and forth. Otherwise these
26
+ # streams will be mangled on Windows.
27
+ STDIN.binmode
28
+ STDOUT.binmode
29
+
30
+ request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode STDIN.read
31
+
32
+ # Run the request, specifying the cloud generator
33
+ response = Gapic::Runner.run request, generator: :cloud
34
+
35
+ STDOUT.print response.serialize
@@ -18,7 +18,7 @@
18
18
  module Gapic
19
19
  module Generator
20
20
  module Cloud
21
- VERSION = "0.6.5"
21
+ VERSION = "0.6.6"
22
22
  end
23
23
  end
24
24
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gapic-generator-cloud
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.5
4
+ version: 0.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ernest Landrito
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-07-20 00:00:00.000000000 Z
13
+ date: 2020-08-05 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: actionpack
@@ -32,14 +32,14 @@ dependencies:
32
32
  requirements:
33
33
  - - '='
34
34
  - !ruby/object:Gem::Version
35
- version: 0.6.5
35
+ version: 0.6.6
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - '='
41
41
  - !ruby/object:Gem::Version
42
- version: 0.6.5
42
+ version: 0.6.6
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: google-style
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -153,6 +153,7 @@ files:
153
153
  - CONTRIBUTING.md
154
154
  - LICENSE
155
155
  - README.md
156
+ - bin/protoc-gen-bazel_ruby_cloud
156
157
  - bin/protoc-gen-ruby_cloud
157
158
  - bin/ruby-cloud-docker-entrypoint
158
159
  - cloud-rubocop.yml