gapic-generator-ads 0.6.2 → 0.6.7
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 +24 -0
- data/bin/protoc-gen-bazel_ruby_ads +36 -0
- data/bin/protoc-gen-ruby_ads +2 -1
- data/lib/gapic/generator/ads/version.rb +1 -1
- metadata +7 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 135746879b7b566c345126d18830e016a83adce8eb7df7c0e5551df2709dfb5c
|
4
|
+
data.tar.gz: 31d2f3b750b5bd387b340e79d7d63ca8d181a2a0449f24142e69c77cde1c5093
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71e306b9b5da6fbfe563b547a369204bedbdb900330de79583d54015586325f7366c774fc2f565de11dc527586dfd36aece3fa4c4ba672e2a2f629cb8cbc3ca8
|
7
|
+
data.tar.gz: ec3de91369f0b155c76e9315b4715bc8c8d1f07ba5b51d92ad0fb526e702b5e7b5a47868efc08132aa2f843ff8667a5274dae58feb54181fa8038395977c6bc7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# Release History for gapic-generator-ads
|
2
2
|
|
3
|
+
### 0.6.7 / 2020-08-07
|
4
|
+
|
5
|
+
* Includes changes from gapic-generator 0.6.7.
|
6
|
+
|
7
|
+
### 0.6.6 / 2020-08-05
|
8
|
+
|
9
|
+
* Includes changes from gapic-generator 0.6.6.
|
10
|
+
|
11
|
+
### 0.6.5 / 2020-07-16
|
12
|
+
|
13
|
+
* Includes changes from gapic-generator 0.6.5.
|
14
|
+
|
15
|
+
### 0.6.4 / 2020-07-13
|
16
|
+
|
17
|
+
* Includes changes from gapic-generator 0.6.4.
|
18
|
+
|
19
|
+
### 0.6.3 / 2020-06-27
|
20
|
+
|
21
|
+
* Includes changes from gapic-generator 0.6.3.
|
22
|
+
* Ensure docker builds always use the latest base images, dependencies, and common protos.
|
23
|
+
* Provide a config.yml for ads generation.
|
24
|
+
* Fix permissions for generated ads files.
|
25
|
+
* Adjust stack sizes for ads generator.
|
26
|
+
|
3
27
|
### 0.6.2 / 2020-06-18
|
4
28
|
|
5
29
|
* Includes changes from gapic-generator 0.6.2.
|
@@ -0,0 +1,36 @@
|
|
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
|
+
# http://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/generator/version"
|
22
|
+
require "gapic/runner"
|
23
|
+
require "google/protobuf/compiler/plugin.pb"
|
24
|
+
|
25
|
+
# Ensure that no encoding conversions are done on STDIN and STDOUT
|
26
|
+
# since we are passing binary data back and forth. Otherwise these
|
27
|
+
# streams will be mangled on Windows.
|
28
|
+
STDIN.binmode
|
29
|
+
STDOUT.binmode
|
30
|
+
|
31
|
+
request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode STDIN.read
|
32
|
+
|
33
|
+
# Run the request, specifying the ads generator
|
34
|
+
response = Gapic::Runner.run request, generator: :ads
|
35
|
+
|
36
|
+
STDOUT.print response.serialize
|
data/bin/protoc-gen-ruby_ads
CHANGED
@@ -15,8 +15,9 @@
|
|
15
15
|
# See the License for the specific language governing permissions and
|
16
16
|
# limitations under the License.
|
17
17
|
|
18
|
-
|
18
|
+
$LOAD_PATH.unshift ::File.expand_path("../lib", __dir__)
|
19
19
|
gem "gapic-generator"
|
20
|
+
require "gapic/generator/version"
|
20
21
|
require "gapic/runner"
|
21
22
|
require "google/protobuf/compiler/plugin.pb"
|
22
23
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gapic-generator-ads
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.7
|
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-
|
13
|
+
date: 2020-08-07 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.
|
35
|
+
version: 0.6.7
|
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.
|
42
|
+
version: 0.6.7
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: protobuf
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
@@ -54,20 +54,6 @@ dependencies:
|
|
54
54
|
- - "~>"
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: '3.8'
|
57
|
-
- !ruby/object:Gem::Dependency
|
58
|
-
name: bundler
|
59
|
-
requirement: !ruby/object:Gem::Requirement
|
60
|
-
requirements:
|
61
|
-
- - "~>"
|
62
|
-
- !ruby/object:Gem::Version
|
63
|
-
version: '2.1'
|
64
|
-
type: :development
|
65
|
-
prerelease: false
|
66
|
-
version_requirements: !ruby/object:Gem::Requirement
|
67
|
-
requirements:
|
68
|
-
- - "~>"
|
69
|
-
- !ruby/object:Gem::Version
|
70
|
-
version: '2.1'
|
71
57
|
- !ruby/object:Gem::Dependency
|
72
58
|
name: google-style
|
73
59
|
requirement: !ruby/object:Gem::Requirement
|
@@ -88,14 +74,14 @@ dependencies:
|
|
88
74
|
requirements:
|
89
75
|
- - "~>"
|
90
76
|
- !ruby/object:Gem::Version
|
91
|
-
version: 1.30.
|
77
|
+
version: 1.30.1
|
92
78
|
type: :development
|
93
79
|
prerelease: false
|
94
80
|
version_requirements: !ruby/object:Gem::Requirement
|
95
81
|
requirements:
|
96
82
|
- - "~>"
|
97
83
|
- !ruby/object:Gem::Version
|
98
|
-
version: 1.30.
|
84
|
+
version: 1.30.1
|
99
85
|
- !ruby/object:Gem::Dependency
|
100
86
|
name: minitest
|
101
87
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,6 +137,7 @@ files:
|
|
151
137
|
- CHANGELOG.md
|
152
138
|
- LICENSE
|
153
139
|
- README.md
|
140
|
+
- bin/protoc-gen-bazel_ruby_ads
|
154
141
|
- bin/protoc-gen-ruby_ads
|
155
142
|
- lib/gapic/generator/ads/version.rb
|
156
143
|
- lib/gapic/generators/ads_generator.rb
|