grafeas-client 0.2.1 → 0.3.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e504969e496e6f6662a1eaf27d87aba4bd9d65d90f38a66dff51242fbeb53ead
|
|
4
|
+
data.tar.gz: 4378648965161f0e7d2a0f31355a78a210b8d96855f2bd85dd9d2766a97dba33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79e32a498ed07a4ab2cc7ebcea9b5373c151591425e42f2c89529651038d02b8cfa9e303259d10a8bac405412b5a4c93485252880a253479a2bb25bd230565d3
|
|
7
|
+
data.tar.gz: 353ad52b2a0401451bea67ea229053c777a2a25d25a4536c90534522780835eb82214a059ab6cd02d5cebe93a85fccc714f4eb447b5ae0dbb5953676f8396fd1
|
|
@@ -88,11 +88,13 @@ module Google
|
|
|
88
88
|
# 01:30 UTC on January 15, 2017.
|
|
89
89
|
#
|
|
90
90
|
# In JavaScript, one can convert a Date object to this format using the
|
|
91
|
-
# standard
|
|
91
|
+
# standard
|
|
92
|
+
# [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
|
|
92
93
|
# method. In Python, a standard `datetime.datetime` object can be converted
|
|
93
|
-
# to this format using
|
|
94
|
-
#
|
|
95
|
-
#
|
|
94
|
+
# to this format using
|
|
95
|
+
# [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
|
96
|
+
# the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
|
97
|
+
# the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
|
96
98
|
# http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
|
|
97
99
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
|
98
100
|
# @!attribute [rw] seconds
|
|
@@ -27,7 +27,7 @@ require "google/gax"
|
|
|
27
27
|
|
|
28
28
|
require "grafeas/v1/grafeas_pb"
|
|
29
29
|
require "grafeas/v1/credentials"
|
|
30
|
-
require "grafeas/version"
|
|
30
|
+
require "grafeas/client/version"
|
|
31
31
|
|
|
32
32
|
module Grafeas
|
|
33
33
|
module V1
|
|
@@ -204,7 +204,7 @@ module Grafeas
|
|
|
204
204
|
updater_proc = credentials.updater_proc
|
|
205
205
|
end
|
|
206
206
|
|
|
207
|
-
package_version = Grafeas::VERSION
|
|
207
|
+
package_version = Grafeas::Client::VERSION
|
|
208
208
|
|
|
209
209
|
google_api_client = "gl-ruby/#{RUBY_VERSION}"
|
|
210
210
|
google_api_client << " #{lib_name}/#{lib_version}" if lib_name
|
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.
|
|
4
|
+
version: 0.3.0
|
|
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-
|
|
11
|
+
date: 2019-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-gax
|
|
@@ -120,6 +120,7 @@ files:
|
|
|
120
120
|
- README.md
|
|
121
121
|
- lib/grafeas-client.rb
|
|
122
122
|
- lib/grafeas.rb
|
|
123
|
+
- lib/grafeas/client/version.rb
|
|
123
124
|
- lib/grafeas/v1.rb
|
|
124
125
|
- lib/grafeas/v1/attestation_pb.rb
|
|
125
126
|
- lib/grafeas/v1/build_pb.rb
|
|
@@ -152,7 +153,6 @@ files:
|
|
|
152
153
|
- lib/grafeas/v1/package_pb.rb
|
|
153
154
|
- lib/grafeas/v1/provenance_pb.rb
|
|
154
155
|
- lib/grafeas/v1/vulnerability_pb.rb
|
|
155
|
-
- lib/grafeas/version.rb
|
|
156
156
|
homepage: https://github.com/googleapis/googleapis
|
|
157
157
|
licenses:
|
|
158
158
|
- Apache-2.0
|