google-cloud-vision-v1p4beta1 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +169 -0
- data/LICENSE.md +201 -0
- data/README.md +139 -0
- data/lib/google/cloud/vision/v1p4beta1/face_pb.rb +35 -0
- data/lib/google/cloud/vision/v1p4beta1/geometry_pb.rb +40 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator/client.rb +629 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator/credentials.rb +52 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator/helpers.rb +1228 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator/operations.rb +664 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator/paths.rb +52 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator.rb +52 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator_pb.rb +343 -0
- data/lib/google/cloud/vision/v1p4beta1/image_annotator_services_pb.rb +73 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search/client.rb +2106 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search/credentials.rb +52 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search/operations.rb +664 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search/paths.rb +109 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search.rb +67 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search_pb.rb +55 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search_service_pb.rb +208 -0
- data/lib/google/cloud/vision/v1p4beta1/product_search_service_services_pb.rb +236 -0
- data/lib/google/cloud/vision/v1p4beta1/text_annotation_pb.rb +95 -0
- data/lib/google/cloud/vision/v1p4beta1/version.rb +28 -0
- data/lib/google/cloud/vision/v1p4beta1/web_detection_pb.rb +52 -0
- data/lib/google/cloud/vision/v1p4beta1.rb +39 -0
- data/lib/google-cloud-vision-v1p4beta1.rb +21 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/api/field_behavior.rb +71 -0
- data/proto_docs/google/api/resource.rb +283 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/face.rb +68 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/geometry.rb +82 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/image_annotator.rb +989 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/product_search.rb +136 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/product_search_service.rb +676 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/text_annotation.rb +286 -0
- data/proto_docs/google/cloud/vision/v1p4beta1/web_detection.rb +121 -0
- data/proto_docs/google/longrunning/operations.rb +164 -0
- data/proto_docs/google/protobuf/any.rb +141 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +129 -0
- data/proto_docs/google/protobuf/wrappers.rb +121 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- data/proto_docs/google/type/color.rb +173 -0
- data/proto_docs/google/type/latlng.rb +38 -0
- metadata +240 -0
@@ -0,0 +1,121 @@
|
|
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
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Protobuf
|
22
|
+
# Wrapper message for `double`.
|
23
|
+
#
|
24
|
+
# The JSON representation for `DoubleValue` is JSON number.
|
25
|
+
# @!attribute [rw] value
|
26
|
+
# @return [::Float]
|
27
|
+
# The double value.
|
28
|
+
class DoubleValue
|
29
|
+
include ::Google::Protobuf::MessageExts
|
30
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
31
|
+
end
|
32
|
+
|
33
|
+
# Wrapper message for `float`.
|
34
|
+
#
|
35
|
+
# The JSON representation for `FloatValue` is JSON number.
|
36
|
+
# @!attribute [rw] value
|
37
|
+
# @return [::Float]
|
38
|
+
# The float value.
|
39
|
+
class FloatValue
|
40
|
+
include ::Google::Protobuf::MessageExts
|
41
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
42
|
+
end
|
43
|
+
|
44
|
+
# Wrapper message for `int64`.
|
45
|
+
#
|
46
|
+
# The JSON representation for `Int64Value` is JSON string.
|
47
|
+
# @!attribute [rw] value
|
48
|
+
# @return [::Integer]
|
49
|
+
# The int64 value.
|
50
|
+
class Int64Value
|
51
|
+
include ::Google::Protobuf::MessageExts
|
52
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
53
|
+
end
|
54
|
+
|
55
|
+
# Wrapper message for `uint64`.
|
56
|
+
#
|
57
|
+
# The JSON representation for `UInt64Value` is JSON string.
|
58
|
+
# @!attribute [rw] value
|
59
|
+
# @return [::Integer]
|
60
|
+
# The uint64 value.
|
61
|
+
class UInt64Value
|
62
|
+
include ::Google::Protobuf::MessageExts
|
63
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
64
|
+
end
|
65
|
+
|
66
|
+
# Wrapper message for `int32`.
|
67
|
+
#
|
68
|
+
# The JSON representation for `Int32Value` is JSON number.
|
69
|
+
# @!attribute [rw] value
|
70
|
+
# @return [::Integer]
|
71
|
+
# The int32 value.
|
72
|
+
class Int32Value
|
73
|
+
include ::Google::Protobuf::MessageExts
|
74
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
75
|
+
end
|
76
|
+
|
77
|
+
# Wrapper message for `uint32`.
|
78
|
+
#
|
79
|
+
# The JSON representation for `UInt32Value` is JSON number.
|
80
|
+
# @!attribute [rw] value
|
81
|
+
# @return [::Integer]
|
82
|
+
# The uint32 value.
|
83
|
+
class UInt32Value
|
84
|
+
include ::Google::Protobuf::MessageExts
|
85
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
86
|
+
end
|
87
|
+
|
88
|
+
# Wrapper message for `bool`.
|
89
|
+
#
|
90
|
+
# The JSON representation for `BoolValue` is JSON `true` and `false`.
|
91
|
+
# @!attribute [rw] value
|
92
|
+
# @return [::Boolean]
|
93
|
+
# The bool value.
|
94
|
+
class BoolValue
|
95
|
+
include ::Google::Protobuf::MessageExts
|
96
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
97
|
+
end
|
98
|
+
|
99
|
+
# Wrapper message for `string`.
|
100
|
+
#
|
101
|
+
# The JSON representation for `StringValue` is JSON string.
|
102
|
+
# @!attribute [rw] value
|
103
|
+
# @return [::String]
|
104
|
+
# The string value.
|
105
|
+
class StringValue
|
106
|
+
include ::Google::Protobuf::MessageExts
|
107
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
108
|
+
end
|
109
|
+
|
110
|
+
# Wrapper message for `bytes`.
|
111
|
+
#
|
112
|
+
# The JSON representation for `BytesValue` is JSON string.
|
113
|
+
# @!attribute [rw] value
|
114
|
+
# @return [::String]
|
115
|
+
# The bytes value.
|
116
|
+
class BytesValue
|
117
|
+
include ::Google::Protobuf::MessageExts
|
118
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,46 @@
|
|
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
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Rpc
|
22
|
+
# The `Status` type defines a logical error model that is suitable for
|
23
|
+
# different programming environments, including REST APIs and RPC APIs. It is
|
24
|
+
# used by [gRPC](https://github.com/grpc). Each `Status` message contains
|
25
|
+
# three pieces of data: error code, error message, and error details.
|
26
|
+
#
|
27
|
+
# You can find out more about this error model and how to work with it in the
|
28
|
+
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
29
|
+
# @!attribute [rw] code
|
30
|
+
# @return [::Integer]
|
31
|
+
# The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
|
32
|
+
# @!attribute [rw] message
|
33
|
+
# @return [::String]
|
34
|
+
# A developer-facing error message, which should be in English. Any
|
35
|
+
# user-facing error message should be localized and sent in the
|
36
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized by the client.
|
37
|
+
# @!attribute [rw] details
|
38
|
+
# @return [::Array<::Google::Protobuf::Any>]
|
39
|
+
# A list of messages that carry the error details. There is a common set of
|
40
|
+
# message types for APIs to use.
|
41
|
+
class Status
|
42
|
+
include ::Google::Protobuf::MessageExts
|
43
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,173 @@
|
|
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
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a color in the RGBA color space. This representation is designed
|
23
|
+
# for simplicity of conversion to/from color representations in various
|
24
|
+
# languages over compactness. For example, the fields of this representation
|
25
|
+
# can be trivially provided to the constructor of `java.awt.Color` in Java; it
|
26
|
+
# can also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha`
|
27
|
+
# method in iOS; and, with just a little work, it can be easily formatted into
|
28
|
+
# a CSS `rgba()` string in JavaScript.
|
29
|
+
#
|
30
|
+
# This reference page doesn't carry information about the absolute color
|
31
|
+
# space
|
32
|
+
# that should be used to interpret the RGB value (e.g. sRGB, Adobe RGB,
|
33
|
+
# DCI-P3, BT.2020, etc.). By default, applications should assume the sRGB color
|
34
|
+
# space.
|
35
|
+
#
|
36
|
+
# When color equality needs to be decided, implementations, unless
|
37
|
+
# documented otherwise, treat two colors as equal if all their red,
|
38
|
+
# green, blue, and alpha values each differ by at most 1e-5.
|
39
|
+
#
|
40
|
+
# Example (Java):
|
41
|
+
#
|
42
|
+
# import com.google.type.Color;
|
43
|
+
#
|
44
|
+
# // ...
|
45
|
+
# public static java.awt.Color fromProto(Color protocolor) {
|
46
|
+
# float alpha = protocolor.hasAlpha()
|
47
|
+
# ? protocolor.getAlpha().getValue()
|
48
|
+
# : 1.0;
|
49
|
+
#
|
50
|
+
# return new java.awt.Color(
|
51
|
+
# protocolor.getRed(),
|
52
|
+
# protocolor.getGreen(),
|
53
|
+
# protocolor.getBlue(),
|
54
|
+
# alpha);
|
55
|
+
# }
|
56
|
+
#
|
57
|
+
# public static Color toProto(java.awt.Color color) {
|
58
|
+
# float red = (float) color.getRed();
|
59
|
+
# float green = (float) color.getGreen();
|
60
|
+
# float blue = (float) color.getBlue();
|
61
|
+
# float denominator = 255.0;
|
62
|
+
# Color.Builder resultBuilder =
|
63
|
+
# Color
|
64
|
+
# .newBuilder()
|
65
|
+
# .setRed(red / denominator)
|
66
|
+
# .setGreen(green / denominator)
|
67
|
+
# .setBlue(blue / denominator);
|
68
|
+
# int alpha = color.getAlpha();
|
69
|
+
# if (alpha != 255) {
|
70
|
+
# result.setAlpha(
|
71
|
+
# FloatValue
|
72
|
+
# .newBuilder()
|
73
|
+
# .setValue(((float) alpha) / denominator)
|
74
|
+
# .build());
|
75
|
+
# }
|
76
|
+
# return resultBuilder.build();
|
77
|
+
# }
|
78
|
+
# // ...
|
79
|
+
#
|
80
|
+
# Example (iOS / Obj-C):
|
81
|
+
#
|
82
|
+
# // ...
|
83
|
+
# static UIColor* fromProto(Color* protocolor) {
|
84
|
+
# float red = [protocolor red];
|
85
|
+
# float green = [protocolor green];
|
86
|
+
# float blue = [protocolor blue];
|
87
|
+
# FloatValue* alpha_wrapper = [protocolor alpha];
|
88
|
+
# float alpha = 1.0;
|
89
|
+
# if (alpha_wrapper != nil) {
|
90
|
+
# alpha = [alpha_wrapper value];
|
91
|
+
# }
|
92
|
+
# return [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
|
93
|
+
# }
|
94
|
+
#
|
95
|
+
# static Color* toProto(UIColor* color) {
|
96
|
+
# CGFloat red, green, blue, alpha;
|
97
|
+
# if (![color getRed:&red green:&green blue:&blue alpha:&alpha]) {
|
98
|
+
# return nil;
|
99
|
+
# }
|
100
|
+
# Color* result = [[Color alloc] init];
|
101
|
+
# [result setRed:red];
|
102
|
+
# [result setGreen:green];
|
103
|
+
# [result setBlue:blue];
|
104
|
+
# if (alpha <= 0.9999) {
|
105
|
+
# [result setAlpha:floatWrapperWithValue(alpha)];
|
106
|
+
# }
|
107
|
+
# [result autorelease];
|
108
|
+
# return result;
|
109
|
+
# }
|
110
|
+
# // ...
|
111
|
+
#
|
112
|
+
# Example (JavaScript):
|
113
|
+
#
|
114
|
+
# // ...
|
115
|
+
#
|
116
|
+
# var protoToCssColor = function(rgb_color) {
|
117
|
+
# var redFrac = rgb_color.red || 0.0;
|
118
|
+
# var greenFrac = rgb_color.green || 0.0;
|
119
|
+
# var blueFrac = rgb_color.blue || 0.0;
|
120
|
+
# var red = Math.floor(redFrac * 255);
|
121
|
+
# var green = Math.floor(greenFrac * 255);
|
122
|
+
# var blue = Math.floor(blueFrac * 255);
|
123
|
+
#
|
124
|
+
# if (!('alpha' in rgb_color)) {
|
125
|
+
# return rgbToCssColor(red, green, blue);
|
126
|
+
# }
|
127
|
+
#
|
128
|
+
# var alphaFrac = rgb_color.alpha.value || 0.0;
|
129
|
+
# var rgbParams = [red, green, blue].join(',');
|
130
|
+
# return ['rgba(', rgbParams, ',', alphaFrac, ')'].join('');
|
131
|
+
# };
|
132
|
+
#
|
133
|
+
# var rgbToCssColor = function(red, green, blue) {
|
134
|
+
# var rgbNumber = new Number((red << 16) | (green << 8) | blue);
|
135
|
+
# var hexString = rgbNumber.toString(16);
|
136
|
+
# var missingZeros = 6 - hexString.length;
|
137
|
+
# var resultBuilder = ['#'];
|
138
|
+
# for (var i = 0; i < missingZeros; i++) {
|
139
|
+
# resultBuilder.push('0');
|
140
|
+
# }
|
141
|
+
# resultBuilder.push(hexString);
|
142
|
+
# return resultBuilder.join('');
|
143
|
+
# };
|
144
|
+
#
|
145
|
+
# // ...
|
146
|
+
# @!attribute [rw] red
|
147
|
+
# @return [::Float]
|
148
|
+
# The amount of red in the color as a value in the interval [0, 1].
|
149
|
+
# @!attribute [rw] green
|
150
|
+
# @return [::Float]
|
151
|
+
# The amount of green in the color as a value in the interval [0, 1].
|
152
|
+
# @!attribute [rw] blue
|
153
|
+
# @return [::Float]
|
154
|
+
# The amount of blue in the color as a value in the interval [0, 1].
|
155
|
+
# @!attribute [rw] alpha
|
156
|
+
# @return [::Google::Protobuf::FloatValue]
|
157
|
+
# The fraction of this color that should be applied to the pixel. That is,
|
158
|
+
# the final pixel color is defined by the equation:
|
159
|
+
#
|
160
|
+
# `pixel color = alpha * (this color) + (1.0 - alpha) * (background color)`
|
161
|
+
#
|
162
|
+
# This means that a value of 1.0 corresponds to a solid color, whereas
|
163
|
+
# a value of 0.0 corresponds to a completely transparent color. This
|
164
|
+
# uses a wrapper message rather than a simple float scalar so that it is
|
165
|
+
# possible to distinguish between a default value and the value being unset.
|
166
|
+
# If omitted, this color object is rendered as a solid color
|
167
|
+
# (as if the alpha value had been explicitly given a value of 1.0).
|
168
|
+
class Color
|
169
|
+
include ::Google::Protobuf::MessageExts
|
170
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|
@@ -0,0 +1,38 @@
|
|
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
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# An object that represents a latitude/longitude pair. This is expressed as a
|
23
|
+
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
24
|
+
# specified otherwise, this must conform to the
|
25
|
+
# <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84
|
26
|
+
# standard</a>. Values must be within normalized ranges.
|
27
|
+
# @!attribute [rw] latitude
|
28
|
+
# @return [::Float]
|
29
|
+
# The latitude in degrees. It must be in the range [-90.0, +90.0].
|
30
|
+
# @!attribute [rw] longitude
|
31
|
+
# @return [::Float]
|
32
|
+
# The longitude in degrees. It must be in the range [-180.0, +180.0].
|
33
|
+
class LatLng
|
34
|
+
include ::Google::Protobuf::MessageExts
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
metadata
ADDED
@@ -0,0 +1,240 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: google-cloud-vision-v1p4beta1
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Google LLC
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-09-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: gapic-common
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0.7'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.7'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 2.a
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: google-cloud-errors
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.0'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.0'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: google-style
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.25.1
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: 1.25.1
|
61
|
+
- !ruby/object:Gem::Dependency
|
62
|
+
name: minitest
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '5.14'
|
68
|
+
type: :development
|
69
|
+
prerelease: false
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - "~>"
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '5.14'
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: minitest-focus
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '1.1'
|
82
|
+
type: :development
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '1.1'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: minitest-rg
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '5.2'
|
96
|
+
type: :development
|
97
|
+
prerelease: false
|
98
|
+
version_requirements: !ruby/object:Gem::Requirement
|
99
|
+
requirements:
|
100
|
+
- - "~>"
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '5.2'
|
103
|
+
- !ruby/object:Gem::Dependency
|
104
|
+
name: rake
|
105
|
+
requirement: !ruby/object:Gem::Requirement
|
106
|
+
requirements:
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '12.0'
|
110
|
+
type: :development
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '12.0'
|
117
|
+
- !ruby/object:Gem::Dependency
|
118
|
+
name: redcarpet
|
119
|
+
requirement: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - "~>"
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: '3.0'
|
124
|
+
type: :development
|
125
|
+
prerelease: false
|
126
|
+
version_requirements: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "~>"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: '3.0'
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: simplecov
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "~>"
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0.18'
|
138
|
+
type: :development
|
139
|
+
prerelease: false
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - "~>"
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0.18'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: yard
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0.9'
|
152
|
+
type: :development
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0.9'
|
159
|
+
description: Cloud Vision API allows developers to easily integrate vision detection
|
160
|
+
features within applications, including image labeling, face and landmark detection,
|
161
|
+
optical character recognition (OCR), and tagging of explicit content. Note that
|
162
|
+
google-cloud-vision-v1p4beta1 is a version-specific client library. For most uses,
|
163
|
+
we recommend installing the main client library google-cloud-vision instead. See
|
164
|
+
the readme for more details.
|
165
|
+
email: googleapis-packages@google.com
|
166
|
+
executables: []
|
167
|
+
extensions: []
|
168
|
+
extra_rdoc_files: []
|
169
|
+
files:
|
170
|
+
- ".yardopts"
|
171
|
+
- AUTHENTICATION.md
|
172
|
+
- LICENSE.md
|
173
|
+
- README.md
|
174
|
+
- lib/google-cloud-vision-v1p4beta1.rb
|
175
|
+
- lib/google/cloud/vision/v1p4beta1.rb
|
176
|
+
- lib/google/cloud/vision/v1p4beta1/face_pb.rb
|
177
|
+
- lib/google/cloud/vision/v1p4beta1/geometry_pb.rb
|
178
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator.rb
|
179
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator/client.rb
|
180
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator/credentials.rb
|
181
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator/helpers.rb
|
182
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator/operations.rb
|
183
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator/paths.rb
|
184
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator_pb.rb
|
185
|
+
- lib/google/cloud/vision/v1p4beta1/image_annotator_services_pb.rb
|
186
|
+
- lib/google/cloud/vision/v1p4beta1/product_search.rb
|
187
|
+
- lib/google/cloud/vision/v1p4beta1/product_search/client.rb
|
188
|
+
- lib/google/cloud/vision/v1p4beta1/product_search/credentials.rb
|
189
|
+
- lib/google/cloud/vision/v1p4beta1/product_search/operations.rb
|
190
|
+
- lib/google/cloud/vision/v1p4beta1/product_search/paths.rb
|
191
|
+
- lib/google/cloud/vision/v1p4beta1/product_search_pb.rb
|
192
|
+
- lib/google/cloud/vision/v1p4beta1/product_search_service_pb.rb
|
193
|
+
- lib/google/cloud/vision/v1p4beta1/product_search_service_services_pb.rb
|
194
|
+
- lib/google/cloud/vision/v1p4beta1/text_annotation_pb.rb
|
195
|
+
- lib/google/cloud/vision/v1p4beta1/version.rb
|
196
|
+
- lib/google/cloud/vision/v1p4beta1/web_detection_pb.rb
|
197
|
+
- proto_docs/README.md
|
198
|
+
- proto_docs/google/api/field_behavior.rb
|
199
|
+
- proto_docs/google/api/resource.rb
|
200
|
+
- proto_docs/google/cloud/vision/v1p4beta1/face.rb
|
201
|
+
- proto_docs/google/cloud/vision/v1p4beta1/geometry.rb
|
202
|
+
- proto_docs/google/cloud/vision/v1p4beta1/image_annotator.rb
|
203
|
+
- proto_docs/google/cloud/vision/v1p4beta1/product_search.rb
|
204
|
+
- proto_docs/google/cloud/vision/v1p4beta1/product_search_service.rb
|
205
|
+
- proto_docs/google/cloud/vision/v1p4beta1/text_annotation.rb
|
206
|
+
- proto_docs/google/cloud/vision/v1p4beta1/web_detection.rb
|
207
|
+
- proto_docs/google/longrunning/operations.rb
|
208
|
+
- proto_docs/google/protobuf/any.rb
|
209
|
+
- proto_docs/google/protobuf/duration.rb
|
210
|
+
- proto_docs/google/protobuf/empty.rb
|
211
|
+
- proto_docs/google/protobuf/field_mask.rb
|
212
|
+
- proto_docs/google/protobuf/timestamp.rb
|
213
|
+
- proto_docs/google/protobuf/wrappers.rb
|
214
|
+
- proto_docs/google/rpc/status.rb
|
215
|
+
- proto_docs/google/type/color.rb
|
216
|
+
- proto_docs/google/type/latlng.rb
|
217
|
+
homepage: https://github.com/googleapis/google-cloud-ruby
|
218
|
+
licenses:
|
219
|
+
- Apache-2.0
|
220
|
+
metadata: {}
|
221
|
+
post_install_message:
|
222
|
+
rdoc_options: []
|
223
|
+
require_paths:
|
224
|
+
- lib
|
225
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
226
|
+
requirements:
|
227
|
+
- - ">="
|
228
|
+
- !ruby/object:Gem::Version
|
229
|
+
version: '2.5'
|
230
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
231
|
+
requirements:
|
232
|
+
- - ">="
|
233
|
+
- !ruby/object:Gem::Version
|
234
|
+
version: '0'
|
235
|
+
requirements: []
|
236
|
+
rubygems_version: 3.2.17
|
237
|
+
signing_key:
|
238
|
+
specification_version: 4
|
239
|
+
summary: API Client library for the Cloud Vision V1p4beta1 API
|
240
|
+
test_files: []
|