googleapis-common-protos-types 1.0.4 → 1.2.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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +38 -2
  3. data/lib/google/api/annotations_pb.rb +2 -0
  4. data/lib/google/api/auth_pb.rb +39 -29
  5. data/lib/google/api/backend_pb.rb +24 -20
  6. data/lib/google/api/billing_pb.rb +10 -9
  7. data/lib/google/api/client_pb.rb +2 -0
  8. data/lib/google/api/config_change_pb.rb +20 -18
  9. data/lib/google/api/consumer_pb.rb +19 -17
  10. data/lib/google/api/context_pb.rb +13 -11
  11. data/lib/google/api/control_pb.rb +5 -3
  12. data/lib/google/api/distribution_pb.rb +45 -43
  13. data/lib/google/api/documentation_pb.rb +22 -19
  14. data/lib/google/api/endpoint_pb.rb +8 -8
  15. data/lib/google/api/error_reason_pb.rb +37 -0
  16. data/lib/google/api/field_behavior_pb.rb +12 -8
  17. data/lib/google/api/http_pb.rb +25 -23
  18. data/lib/google/api/httpbody_pb.rb +7 -5
  19. data/lib/google/api/label_pb.rb +13 -11
  20. data/lib/google/api/launch_stage_pb.rb +12 -8
  21. data/lib/google/api/log_pb.rb +8 -6
  22. data/lib/google/api/logging_pb.rb +11 -10
  23. data/lib/google/api/metric_pb.rb +43 -39
  24. data/lib/google/api/monitored_resource_pb.rb +21 -17
  25. data/lib/google/api/monitoring_pb.rb +11 -10
  26. data/lib/google/api/quota_pb.rb +24 -23
  27. data/lib/google/api/resource_pb.rb +27 -4
  28. data/lib/google/api/service_pb.rb +30 -30
  29. data/lib/google/api/source_info_pb.rb +5 -3
  30. data/lib/google/api/system_parameter_pb.rb +16 -14
  31. data/lib/google/api/usage_pb.rb +13 -12
  32. data/lib/google/api/visibility_pb.rb +23 -0
  33. data/lib/google/cloud/extended_operations_pb.rb +22 -0
  34. data/lib/google/logging/type/http_request_pb.rb +30 -18
  35. data/lib/google/logging/type/log_severity_pb.rb +23 -11
  36. data/lib/google/longrunning/operations_pb.rb +45 -42
  37. data/lib/google/rpc/code_pb.rb +21 -19
  38. data/lib/google/rpc/error_details_pb.rb +70 -62
  39. data/lib/google/rpc/status_pb.rb +7 -5
  40. data/lib/google/type/calendar_period_pb.rb +12 -10
  41. data/lib/google/type/color_pb.rb +8 -6
  42. data/lib/google/type/date_pb.rb +7 -5
  43. data/lib/google/type/datetime_pb.rb +34 -0
  44. data/lib/google/type/dayofweek_pb.rb +12 -10
  45. data/lib/google/type/decimal_pb.rb +18 -0
  46. data/lib/google/type/expr_pb.rb +8 -6
  47. data/lib/google/type/fraction_pb.rb +6 -4
  48. data/lib/google/type/interval_pb.rb +20 -0
  49. data/lib/google/type/latlng_pb.rb +6 -4
  50. data/lib/google/type/localized_text_pb.rb +19 -0
  51. data/lib/google/type/money_pb.rb +7 -5
  52. data/lib/google/type/month_pb.rb +30 -0
  53. data/lib/google/type/phone_number_pb.rb +27 -0
  54. data/lib/google/type/postal_address_pb.rb +15 -13
  55. data/lib/google/type/quaternion_pb.rb +8 -6
  56. data/lib/google/type/timeofday_pb.rb +8 -6
  57. data/lib/googleapis/common/protos/types/version.rb +23 -0
  58. metadata +19 -56
  59. data/.gitignore +0 -10
  60. data/Gemfile +0 -6
  61. data/Rakefile +0 -57
  62. data/googleapis-common-protos-types.gemspec +0 -43
@@ -0,0 +1,34 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/datetime.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/duration_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_file("google/type/datetime.proto", :syntax => :proto3) do
9
+ add_message "google.type.DateTime" do
10
+ optional :year, :int32, 1
11
+ optional :month, :int32, 2
12
+ optional :day, :int32, 3
13
+ optional :hours, :int32, 4
14
+ optional :minutes, :int32, 5
15
+ optional :seconds, :int32, 6
16
+ optional :nanos, :int32, 7
17
+ oneof :time_offset do
18
+ optional :utc_offset, :message, 8, "google.protobuf.Duration"
19
+ optional :time_zone, :message, 9, "google.type.TimeZone"
20
+ end
21
+ end
22
+ add_message "google.type.TimeZone" do
23
+ optional :id, :string, 1
24
+ optional :version, :string, 2
25
+ end
26
+ end
27
+ end
28
+
29
+ module Google
30
+ module Type
31
+ DateTime = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DateTime").msgclass
32
+ TimeZone = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeZone").msgclass
33
+ end
34
+ end
@@ -4,20 +4,22 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_enum "google.type.DayOfWeek" do
8
- value :DAY_OF_WEEK_UNSPECIFIED, 0
9
- value :MONDAY, 1
10
- value :TUESDAY, 2
11
- value :WEDNESDAY, 3
12
- value :THURSDAY, 4
13
- value :FRIDAY, 5
14
- value :SATURDAY, 6
15
- value :SUNDAY, 7
7
+ add_file("google/type/dayofweek.proto", :syntax => :proto3) do
8
+ add_enum "google.type.DayOfWeek" do
9
+ value :DAY_OF_WEEK_UNSPECIFIED, 0
10
+ value :MONDAY, 1
11
+ value :TUESDAY, 2
12
+ value :WEDNESDAY, 3
13
+ value :THURSDAY, 4
14
+ value :FRIDAY, 5
15
+ value :SATURDAY, 6
16
+ value :SUNDAY, 7
17
+ end
16
18
  end
17
19
  end
18
20
 
19
21
  module Google
20
22
  module Type
21
- DayOfWeek = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DayOfWeek").enummodule
23
+ DayOfWeek = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.DayOfWeek").enummodule
22
24
  end
23
25
  end
@@ -0,0 +1,18 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/decimal.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/decimal.proto", :syntax => :proto3) do
8
+ add_message "google.type.Decimal" do
9
+ optional :value, :string, 1
10
+ end
11
+ end
12
+ end
13
+
14
+ module Google
15
+ module Type
16
+ Decimal = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Decimal").msgclass
17
+ end
18
+ end
@@ -4,16 +4,18 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Expr" do
8
- optional :expression, :string, 1
9
- optional :title, :string, 2
10
- optional :description, :string, 3
11
- optional :location, :string, 4
7
+ add_file("google/type/expr.proto", :syntax => :proto3) do
8
+ add_message "google.type.Expr" do
9
+ optional :expression, :string, 1
10
+ optional :title, :string, 2
11
+ optional :description, :string, 3
12
+ optional :location, :string, 4
13
+ end
12
14
  end
13
15
  end
14
16
 
15
17
  module Google
16
18
  module Type
17
- Expr = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Expr").msgclass
19
+ Expr = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Expr").msgclass
18
20
  end
19
21
  end
@@ -4,14 +4,16 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Fraction" do
8
- optional :numerator, :int64, 1
9
- optional :denominator, :int64, 2
7
+ add_file("google/type/fraction.proto", :syntax => :proto3) do
8
+ add_message "google.type.Fraction" do
9
+ optional :numerator, :int64, 1
10
+ optional :denominator, :int64, 2
11
+ end
10
12
  end
11
13
  end
12
14
 
13
15
  module Google
14
16
  module Type
15
- Fraction = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Fraction").msgclass
17
+ Fraction = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Fraction").msgclass
16
18
  end
17
19
  end
@@ -0,0 +1,20 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/interval.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/protobuf/timestamp_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_file("google/type/interval.proto", :syntax => :proto3) do
9
+ add_message "google.type.Interval" do
10
+ optional :start_time, :message, 1, "google.protobuf.Timestamp"
11
+ optional :end_time, :message, 2, "google.protobuf.Timestamp"
12
+ end
13
+ end
14
+ end
15
+
16
+ module Google
17
+ module Type
18
+ Interval = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Interval").msgclass
19
+ end
20
+ end
@@ -4,14 +4,16 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.LatLng" do
8
- optional :latitude, :double, 1
9
- optional :longitude, :double, 2
7
+ add_file("google/type/latlng.proto", :syntax => :proto3) do
8
+ add_message "google.type.LatLng" do
9
+ optional :latitude, :double, 1
10
+ optional :longitude, :double, 2
11
+ end
10
12
  end
11
13
  end
12
14
 
13
15
  module Google
14
16
  module Type
15
- LatLng = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LatLng").msgclass
17
+ LatLng = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LatLng").msgclass
16
18
  end
17
19
  end
@@ -0,0 +1,19 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/localized_text.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/localized_text.proto", :syntax => :proto3) do
8
+ add_message "google.type.LocalizedText" do
9
+ optional :text, :string, 1
10
+ optional :language_code, :string, 2
11
+ end
12
+ end
13
+ end
14
+
15
+ module Google
16
+ module Type
17
+ LocalizedText = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.LocalizedText").msgclass
18
+ end
19
+ end
@@ -4,15 +4,17 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Money" do
8
- optional :currency_code, :string, 1
9
- optional :units, :int64, 2
10
- optional :nanos, :int32, 3
7
+ add_file("google/type/money.proto", :syntax => :proto3) do
8
+ add_message "google.type.Money" do
9
+ optional :currency_code, :string, 1
10
+ optional :units, :int64, 2
11
+ optional :nanos, :int32, 3
12
+ end
11
13
  end
12
14
  end
13
15
 
14
16
  module Google
15
17
  module Type
16
- Money = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Money").msgclass
18
+ Money = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Money").msgclass
17
19
  end
18
20
  end
@@ -0,0 +1,30 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/month.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/month.proto", :syntax => :proto3) do
8
+ add_enum "google.type.Month" do
9
+ value :MONTH_UNSPECIFIED, 0
10
+ value :JANUARY, 1
11
+ value :FEBRUARY, 2
12
+ value :MARCH, 3
13
+ value :APRIL, 4
14
+ value :MAY, 5
15
+ value :JUNE, 6
16
+ value :JULY, 7
17
+ value :AUGUST, 8
18
+ value :SEPTEMBER, 9
19
+ value :OCTOBER, 10
20
+ value :NOVEMBER, 11
21
+ value :DECEMBER, 12
22
+ end
23
+ end
24
+ end
25
+
26
+ module Google
27
+ module Type
28
+ Month = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Month").enummodule
29
+ end
30
+ end
@@ -0,0 +1,27 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/type/phone_number.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ Google::Protobuf::DescriptorPool.generated_pool.build do
7
+ add_file("google/type/phone_number.proto", :syntax => :proto3) do
8
+ add_message "google.type.PhoneNumber" do
9
+ optional :extension, :string, 3
10
+ oneof :kind do
11
+ optional :e164_number, :string, 1
12
+ optional :short_code, :message, 2, "google.type.PhoneNumber.ShortCode"
13
+ end
14
+ end
15
+ add_message "google.type.PhoneNumber.ShortCode" do
16
+ optional :region_code, :string, 1
17
+ optional :number, :string, 2
18
+ end
19
+ end
20
+ end
21
+
22
+ module Google
23
+ module Type
24
+ PhoneNumber = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PhoneNumber").msgclass
25
+ PhoneNumber::ShortCode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PhoneNumber.ShortCode").msgclass
26
+ end
27
+ end
@@ -4,23 +4,25 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.PostalAddress" do
8
- optional :revision, :int32, 1
9
- optional :region_code, :string, 2
10
- optional :language_code, :string, 3
11
- optional :postal_code, :string, 4
12
- optional :sorting_code, :string, 5
13
- optional :administrative_area, :string, 6
14
- optional :locality, :string, 7
15
- optional :sublocality, :string, 8
16
- repeated :address_lines, :string, 9
17
- repeated :recipients, :string, 10
18
- optional :organization, :string, 11
7
+ add_file("google/type/postal_address.proto", :syntax => :proto3) do
8
+ add_message "google.type.PostalAddress" do
9
+ optional :revision, :int32, 1
10
+ optional :region_code, :string, 2
11
+ optional :language_code, :string, 3
12
+ optional :postal_code, :string, 4
13
+ optional :sorting_code, :string, 5
14
+ optional :administrative_area, :string, 6
15
+ optional :locality, :string, 7
16
+ optional :sublocality, :string, 8
17
+ repeated :address_lines, :string, 9
18
+ repeated :recipients, :string, 10
19
+ optional :organization, :string, 11
20
+ end
19
21
  end
20
22
  end
21
23
 
22
24
  module Google
23
25
  module Type
24
- PostalAddress = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PostalAddress").msgclass
26
+ PostalAddress = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.PostalAddress").msgclass
25
27
  end
26
28
  end
@@ -4,16 +4,18 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.Quaternion" do
8
- optional :x, :double, 1
9
- optional :y, :double, 2
10
- optional :z, :double, 3
11
- optional :w, :double, 4
7
+ add_file("google/type/quaternion.proto", :syntax => :proto3) do
8
+ add_message "google.type.Quaternion" do
9
+ optional :x, :double, 1
10
+ optional :y, :double, 2
11
+ optional :z, :double, 3
12
+ optional :w, :double, 4
13
+ end
12
14
  end
13
15
  end
14
16
 
15
17
  module Google
16
18
  module Type
17
- Quaternion = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Quaternion").msgclass
19
+ Quaternion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.Quaternion").msgclass
18
20
  end
19
21
  end
@@ -4,16 +4,18 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "google.type.TimeOfDay" do
8
- optional :hours, :int32, 1
9
- optional :minutes, :int32, 2
10
- optional :seconds, :int32, 3
11
- optional :nanos, :int32, 4
7
+ add_file("google/type/timeofday.proto", :syntax => :proto3) do
8
+ add_message "google.type.TimeOfDay" do
9
+ optional :hours, :int32, 1
10
+ optional :minutes, :int32, 2
11
+ optional :seconds, :int32, 3
12
+ optional :nanos, :int32, 4
13
+ end
12
14
  end
13
15
  end
14
16
 
15
17
  module Google
16
18
  module Type
17
- TimeOfDay = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeOfDay").msgclass
19
+ TimeOfDay = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.type.TimeOfDay").msgclass
18
20
  end
19
21
  end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2021 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module Google
18
+ module CommonProtos
19
+ module Types
20
+ VERSION = "1.2.0".freeze
21
+ end
22
+ end
23
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: googleapis-common-protos-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - Google Inc
7
+ - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-03 00:00:00.000000000 Z
11
+ date: 2021-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -16,56 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.0'
19
+ version: '3.14'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.0'
27
- - !ruby/object:Gem::Dependency
28
- name: bundler
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.15'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.15'
41
- - !ruby/object:Gem::Dependency
42
- name: grpc-tools
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '1.18'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '1.18'
55
- - !ruby/object:Gem::Dependency
56
- name: rake
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '10.0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '10.0'
26
+ version: '3.14'
69
27
  description: Common protocol buffer types used by Google APIs
70
28
  email:
71
29
  - googleapis-packages@google.com
@@ -73,12 +31,8 @@ executables: []
73
31
  extensions: []
74
32
  extra_rdoc_files: []
75
33
  files:
76
- - ".gitignore"
77
34
  - CHANGELOG.md
78
- - Gemfile
79
35
  - README.md
80
- - Rakefile
81
- - googleapis-common-protos-types.gemspec
82
36
  - lib/google/api/annotations_pb.rb
83
37
  - lib/google/api/auth_pb.rb
84
38
  - lib/google/api/backend_pb.rb
@@ -91,6 +45,7 @@ files:
91
45
  - lib/google/api/distribution_pb.rb
92
46
  - lib/google/api/documentation_pb.rb
93
47
  - lib/google/api/endpoint_pb.rb
48
+ - lib/google/api/error_reason_pb.rb
94
49
  - lib/google/api/field_behavior_pb.rb
95
50
  - lib/google/api/http_pb.rb
96
51
  - lib/google/api/httpbody_pb.rb
@@ -107,6 +62,8 @@ files:
107
62
  - lib/google/api/source_info_pb.rb
108
63
  - lib/google/api/system_parameter_pb.rb
109
64
  - lib/google/api/usage_pb.rb
65
+ - lib/google/api/visibility_pb.rb
66
+ - lib/google/cloud/extended_operations_pb.rb
110
67
  - lib/google/logging/type/http_request_pb.rb
111
68
  - lib/google/logging/type/log_severity_pb.rb
112
69
  - lib/google/longrunning/operations_pb.rb
@@ -116,15 +73,22 @@ files:
116
73
  - lib/google/type/calendar_period_pb.rb
117
74
  - lib/google/type/color_pb.rb
118
75
  - lib/google/type/date_pb.rb
76
+ - lib/google/type/datetime_pb.rb
119
77
  - lib/google/type/dayofweek_pb.rb
78
+ - lib/google/type/decimal_pb.rb
120
79
  - lib/google/type/expr_pb.rb
121
80
  - lib/google/type/fraction_pb.rb
81
+ - lib/google/type/interval_pb.rb
122
82
  - lib/google/type/latlng_pb.rb
83
+ - lib/google/type/localized_text_pb.rb
123
84
  - lib/google/type/money_pb.rb
85
+ - lib/google/type/month_pb.rb
86
+ - lib/google/type/phone_number_pb.rb
124
87
  - lib/google/type/postal_address_pb.rb
125
88
  - lib/google/type/quaternion_pb.rb
126
89
  - lib/google/type/timeofday_pb.rb
127
- homepage: https://github.com/googleapis/googleapis
90
+ - lib/googleapis/common/protos/types/version.rb
91
+ homepage: https://github.com/googleapis/common-protos-ruby
128
92
  licenses:
129
93
  - Apache-2.0
130
94
  metadata: {}
@@ -136,16 +100,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
100
  requirements:
137
101
  - - ">="
138
102
  - !ruby/object:Gem::Version
139
- version: '0'
103
+ version: '2.3'
140
104
  required_rubygems_version: !ruby/object:Gem::Requirement
141
105
  requirements:
142
106
  - - ">="
143
107
  - !ruby/object:Gem::Version
144
108
  version: '0'
145
109
  requirements: []
146
- rubyforge_project:
147
- rubygems_version: 2.7.8
110
+ rubygems_version: 3.2.17
148
111
  signing_key:
149
112
  specification_version: 4
150
- summary: Common protobuf types used in Google APIs
113
+ summary: Common protocol buffer types used in Google APIs
151
114
  test_files: []