gapic-generator 0.3.1 → 0.3.3
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 +8 -0
- data/lib/gapic/formatting_utils.rb +3 -1
- data/lib/gapic/generator/version.rb +1 -1
- data/lib/gapic/presenters/method_presenter.rb +3 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 141fbba25c93dca9ccac5c4a380f7a0f8c1c1643ef2e9517fbb158ba92db822c
|
|
4
|
+
data.tar.gz: c61466f199a4d34b6c1fefea9aa8773abc7d9514dfb232385a1e6806e49140f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cefa5cb936a4d9f211c0af9f03a9bcbd4ba76f35417cc3a1723164c949dc93b0f9f8be3602ac882d19c2a1109eed7b47150f4be4587ab5d5a368d7942df14f5
|
|
7
|
+
data.tar.gz: eab763dd18a81db68af29cc55e54b69f7f8fe504bca56aa93925a66e0c8f548335a4700c0cb89cb13aef65f5de7d640dc8dc0a704190e6a06f7ecdaeb294b065
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release History for gapic-generator
|
|
2
2
|
|
|
3
|
+
### 0.3.3 / 2020-04-13
|
|
4
|
+
|
|
5
|
+
* Fix cross-reference links to multi-word enum values.
|
|
6
|
+
|
|
7
|
+
### 0.3.2 / 2020-04-12
|
|
8
|
+
|
|
9
|
+
* Fix the talent.v4beta1 hack.
|
|
10
|
+
|
|
3
11
|
### 0.3.1 / 2020-04-11
|
|
4
12
|
|
|
5
13
|
* Disable ModuleLength metric for generated code.
|
|
@@ -140,8 +140,10 @@ module Gapic
|
|
|
140
140
|
"{#{convert_address_to_ruby entity}::Client #{text}}"
|
|
141
141
|
when Gapic::Schema::Method
|
|
142
142
|
"{#{convert_address_to_ruby entity.parent}::Client##{entity.name.underscore} #{text}}"
|
|
143
|
-
when Gapic::Schema::Message, Gapic::Schema::Enum
|
|
143
|
+
when Gapic::Schema::Message, Gapic::Schema::Enum
|
|
144
144
|
"{#{convert_address_to_ruby entity} #{text}}"
|
|
145
|
+
when Gapic::Schema::EnumValue
|
|
146
|
+
"{#{convert_address_to_ruby entity.parent}::#{entity.name} #{text}}"
|
|
145
147
|
when Gapic::Schema::Field
|
|
146
148
|
"{#{convert_address_to_ruby entity.parent}##{entity.name} #{text}}"
|
|
147
149
|
end
|
|
@@ -166,8 +166,9 @@ module Gapic
|
|
|
166
166
|
# to be removed when these methods no longer conform to AIP-4233.) For
|
|
167
167
|
# detailed information, see internal link go/actools-talent-pagination.
|
|
168
168
|
address = @method.address.join "."
|
|
169
|
-
return false if address == "google.cloud.talent.v4beta1.SearchProfiles"
|
|
170
|
-
return false if address == "google.cloud.talent.v4beta1.SearchJobs"
|
|
169
|
+
return false if address == "google.cloud.talent.v4beta1.ProfileService.SearchProfiles"
|
|
170
|
+
return false if address == "google.cloud.talent.v4beta1.JobService.SearchJobs"
|
|
171
|
+
return false if address == "google.cloud.talent.v4beta1.JobService.SearchJobsForAlert"
|
|
171
172
|
|
|
172
173
|
paged_request?(@method.input) && paged_response?(@method.output)
|
|
173
174
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gapic-generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
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-04-
|
|
13
|
+
date: 2020-04-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: actionpack
|