grafeas-client 0.2.0 → 0.2.1

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: fecb264dfebc85d0171dfc0f9fbeb24c960fd7514c2de60fc98fca8bcf905cef
4
- data.tar.gz: eb2195460145d81c127506ac71965b6e5e775633017c5761980337ea73c12775
3
+ metadata.gz: ca2aaee3815573405a2913de9340757efdcc0b2c4e1b8220b1d1c27719262b31
4
+ data.tar.gz: 92cb37c911e0a344c2aa673c4e53120e897b81e0f8a7e867884616312c4c65b9
5
5
  SHA512:
6
- metadata.gz: 8c0d00f84dfe73bc1a4c12db3ce11abf5891dfb45f11bbdcbc2242ca84acc572cbedb3169a431f92c9c08c9e13a2294be9dd5faa1a671b0d8ce76993b930548f
7
- data.tar.gz: 55a61693ddd623f46b9b34bc143d2a5d87d8ef0f6f0ba4f29f6b154f10531ab09a12e4c2536644948f12a214c06abd423eab6bcc1ba23168bf23cd8d50d213d3
6
+ metadata.gz: ea61e5b6ed6d2f842eeb64ce956096a1b2b65332eecdf959f31523a81a16282e5c9f72d3fa59d01ce455bd4a983cbab285826d5a9413ffb5bb3e0ccbe5b9aa1a
7
+ data.tar.gz: 5837ec7c6e65e519fca2f731beda06412569f4f3e30edab5bd760f6c5fea008e4e5b33277af9cc0ef95667286af699e607c4ce498256fc85d078c818731ab03a
data/README.md CHANGED
@@ -13,7 +13,7 @@ steps:
13
13
  1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
14
14
  2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
15
15
  3. [Enable the Container Analysis API.](https://console.cloud.google.com/apis/library/grafeas.googleapis.com)
16
- 4. [Setup Authentication.](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
16
+ 4. [Setup Authentication.](https://googleapis.dev/ruby/grafeas-client/latest/file.AUTHENTICATION.html)
17
17
 
18
18
  ### Installation
19
19
  ```
@@ -28,14 +28,14 @@ $ gem install grafeas-client
28
28
  - View this [repository's main README](https://github.com/googleapis/google-cloud-ruby/blob/master/README.md)
29
29
  to see the full list of Cloud APIs that we cover.
30
30
 
31
- [Client Library Documentation]: https://googleapis.github.io/google-cloud-ruby/#/docs/grafeas/latest/grafeas/v1
31
+ [Client Library Documentation]: https://googleapis.dev/ruby/grafeas/latest
32
32
  [Product Documentation]: https://grafeas.io/
33
33
 
34
34
  ## Enabling Logging
35
35
 
36
36
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
37
37
  The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
38
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud-logging/latest/google/cloud/logging/logger)
38
+ or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
39
39
  that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
40
40
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
41
41
 
data/lib/grafeas.rb CHANGED
@@ -33,7 +33,7 @@ require "pathname"
33
33
  # 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
34
34
  # 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
35
35
  # 3. [Enable the Container Analysis API.](https://console.cloud.google.com/apis/library/grafeas.googleapis.com)
36
- # 4. [Setup Authentication.](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
36
+ # 4. [Setup Authentication.](https://googleapis.dev/ruby/grafeas-client/latest/file.AUTHENTICATION.html)
37
37
  #
38
38
  # ### Installation
39
39
  # ```
@@ -52,7 +52,7 @@ require "pathname"
52
52
  #
53
53
  # To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
54
54
  # The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
55
- # or a [`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud-logging/latest/google/cloud/logging/logger)
55
+ # or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
56
56
  # that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
57
57
  # and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
58
58
  #
data/lib/grafeas/v1.rb CHANGED
@@ -33,7 +33,7 @@ module Grafeas
33
33
  # 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
34
34
  # 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
35
35
  # 3. [Enable the Container Analysis API.](https://console.cloud.google.com/apis/library/grafeas.googleapis.com)
36
- # 4. [Setup Authentication.](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
36
+ # 4. [Setup Authentication.](https://googleapis.dev/ruby/grafeas-client/latest/file.AUTHENTICATION.html)
37
37
  #
38
38
  # ### Installation
39
39
  # ```
@@ -52,7 +52,7 @@ module Grafeas
52
52
  #
53
53
  # To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
54
54
  # The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
55
- # or a [`Google::Cloud::Logging::Logger`](https://googleapis.github.io/google-cloud-ruby/#/docs/google-cloud-logging/latest/google/cloud/logging/logger)
55
+ # or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
56
56
  # that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
57
57
  # and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
58
58
  #
@@ -14,5 +14,5 @@
14
14
 
15
15
 
16
16
  module Grafeas
17
- VERSION = "0.2.0".freeze
17
+ VERSION = "0.2.1".freeze
18
18
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: grafeas-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-09 00:00:00.000000000 Z
11
+ date: 2019-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-gax
@@ -172,7 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
172
172
  - !ruby/object:Gem::Version
173
173
  version: '0'
174
174
  requirements: []
175
- rubygems_version: 3.0.3
175
+ rubygems_version: 3.0.4
176
176
  signing_key:
177
177
  specification_version: 4
178
178
  summary: API Client library for the Grafeas API