gapic-generator-ads 0.6.11 → 0.7.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0d0a24fe6109b0de7d1ba4aa533279a690972fedefee218e288018dc989a0fb0
4
- data.tar.gz: 396b10fa657ef91c7a01f1b038c62e940ab58b4ce31a975cc735ff8eb4f11a4e
3
+ metadata.gz: 14bee934ff45112673e63f58738cf340850dd4057588cd17c6dcf67ab8ce58e5
4
+ data.tar.gz: 1dc1f97e629a7063b58eb3d385104a8c89a99ea47887cbab9b77c167f0b0d6e0
5
5
  SHA512:
6
- metadata.gz: 26c86277cec9623d81e7020f410a0fc41a48dcef00b9c31dbd90f774ab8f4fbf364b908eb73829b634a173656e2c0a41c99a6e9fc666efefe12c80ae7535348c
7
- data.tar.gz: '0833b560a4d5fd3ed0ea508a82a67889468acababe2149c343c477567e32332f26920b294e6c7503b58831c90c789234f5cc97934bb2ea54daf3ef6ac4e04a56'
6
+ metadata.gz: 92b747e6ef267ea47aed852d852463a975206b5fe1c45caa891fcb0a6ae90879668c60e64e4f4049afa3b029035dc9ab7da8c27ea701141715d778aef4787b38
7
+ data.tar.gz: 287c9491d3e295ae7c4b758fb27a9cacbc59560bba4db1ed02853946b2127df84eb10d42bfaf5099bd165be99b88ac0488a77bc6ada5a32e7362f4a310b9643e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release History for gapic-generator-ads
2
2
 
3
+ ### 0.7.0 / 2021-02-27
4
+
5
+ * Includes changes from gapic-generator 0.7.0, notably dropping Ruby 2.4 support.
6
+
7
+ ### 0.6.15 / 2021-02-22
8
+
9
+ * Really fixed encoding arguments in executable entrypoints
10
+
11
+ ### 0.6.14 / 2021-02-22
12
+
13
+ * Fixed encoding arguments in executable entrypoints
14
+
15
+ ### 0.6.13 / 2021-02-22
16
+
17
+ * Includes changes from gapic-generator 0.6.13.
18
+ * Executable entrypoints set the default external locale to utf-8.
19
+
20
+ ### 0.6.12 / 2021-02-01
21
+
22
+ * No changes.
23
+
3
24
  ### 0.6.11 / 2021-02-01
4
25
 
5
26
  * Includes changes from gapic-generator 0.6.11.
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby
1
+ #!/usr/bin/env -S ruby -EUTF-8
2
2
  # frozen_string_literal: true
3
3
 
4
4
  # Copyright 2020 Google LLC
@@ -25,12 +25,12 @@ require "google/protobuf/compiler/plugin.pb"
25
25
  # Ensure that no encoding conversions are done on STDIN and STDOUT
26
26
  # since we are passing binary data back and forth. Otherwise these
27
27
  # streams will be mangled on Windows.
28
- STDIN.binmode
29
- STDOUT.binmode
28
+ $stdin.binmode
29
+ $stdout.binmode
30
30
 
31
- request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode STDIN.read
31
+ request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode $stdin.read
32
32
 
33
33
  # Run the request, specifying the ads generator
34
34
  response = Gapic::Runner.run request, generator: :ads
35
35
 
36
- STDOUT.print response.serialize
36
+ $stdout.print response.serialize
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env ruby
1
+ #!/usr/bin/env -S ruby -EUTF-8
2
2
  # frozen_string_literal: true
3
3
 
4
4
  # Copyright 2019 Google LLC
@@ -24,12 +24,12 @@ require "google/protobuf/compiler/plugin.pb"
24
24
  # Ensure that no encoding conversions are done on STDIN and STDOUT
25
25
  # since we are passing binary data back and forth. Otherwise these
26
26
  # streams will be mangled on Windows.
27
- STDIN.binmode
28
- STDOUT.binmode
27
+ $stdin.binmode
28
+ $stdout.binmode
29
29
 
30
- request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode STDIN.read
30
+ request = Google::Protobuf::Compiler::CodeGeneratorRequest.decode $stdin.read
31
31
 
32
32
  # Run the request, specifying the ads generator
33
33
  response = Gapic::Runner.run request, generator: :ads
34
34
 
35
- STDOUT.print response.serialize
35
+ $stdout.print response.serialize
@@ -18,7 +18,7 @@
18
18
  module Gapic
19
19
  module Generator
20
20
  module Ads
21
- VERSION = "0.6.11"
21
+ VERSION = "0.7.0"
22
22
  end
23
23
  end
24
24
  end
@@ -86,13 +86,6 @@ module Gapic
86
86
  def self.parameter_schema
87
87
  DefaultGeneratorParameters.default_schema
88
88
  end
89
-
90
- private
91
-
92
- # Hook to override the default formatter
93
- def format_files files
94
- super
95
- end
96
89
  end
97
90
  end
98
91
  end
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.11
4
+ version: 0.7.0
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: 2021-02-01 00:00:00.000000000 Z
13
+ date: 2021-02-27 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.11
35
+ version: 0.7.0
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.11
42
+ version: 0.7.0
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: protobuf
45
45
  requirement: !ruby/object:Gem::Requirement
@@ -60,28 +60,28 @@ dependencies:
60
60
  requirements:
61
61
  - - "~>"
62
62
  - !ruby/object:Gem::Version
63
- version: 1.24.0
63
+ version: 1.25.1
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - "~>"
69
69
  - !ruby/object:Gem::Version
70
- version: 1.24.0
70
+ version: 1.25.1
71
71
  - !ruby/object:Gem::Dependency
72
72
  name: grpc-tools
73
73
  requirement: !ruby/object:Gem::Requirement
74
74
  requirements:
75
75
  - - "~>"
76
76
  - !ruby/object:Gem::Version
77
- version: 1.30.1
77
+ version: 1.36.0
78
78
  type: :development
79
79
  prerelease: false
80
80
  version_requirements: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - "~>"
83
83
  - !ruby/object:Gem::Version
84
- version: 1.30.1
84
+ version: 1.36.0
85
85
  - !ruby/object:Gem::Dependency
86
86
  name: minitest
87
87
  requirement: !ruby/object:Gem::Requirement
@@ -157,14 +157,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
157
157
  requirements:
158
158
  - - ">="
159
159
  - !ruby/object:Gem::Version
160
- version: '0'
160
+ version: '2.5'
161
161
  required_rubygems_version: !ruby/object:Gem::Requirement
162
162
  requirements:
163
163
  - - ">="
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  requirements: []
167
- rubygems_version: 3.1.4
167
+ rubygems_version: 3.2.11
168
168
  signing_key:
169
169
  specification_version: 4
170
170
  summary: An API Client Generator for Ruby in Ruby!