google-cloud 0.56.0 → 0.56.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 +4 -4
- data/.yardopts +4 -0
- data/README.md +52 -10
- data/lib/google/cloud/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbce1325bb7dc662d11f16289c6dc0e0ffe1890fbda564672da3fe91f07661eb
|
|
4
|
+
data.tar.gz: d286c2ae75fdc285423e54447231110ac93cf895593e68b745f293796729912c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 061fb4f8b5ab177991c2016abee9cd09fe56ce06df8708fefe56b14ca53d7c44e882caf772a9a6f44f17074b25511dab8c9fd4d60da970432cf81b6e8685f58a
|
|
7
|
+
data.tar.gz: '045579c8312624dd245e3923f9fd8dc718f2aa1f7efb43a63cbb06f0d9e2aa0f78027ed0981b40c2f902b7907cfb82a55e95a89a85b68e8bf388140e9d47cff7'
|
data/.yardopts
CHANGED
data/README.md
CHANGED
|
@@ -1,15 +1,47 @@
|
|
|
1
1
|
# google-cloud
|
|
2
2
|
|
|
3
|
-
This gem is a convenience package for loading all gems in the google-cloud
|
|
3
|
+
This gem is a convenience package for loading all gems in the google-cloud
|
|
4
|
+
project. Users are encouraged to depending on the individual gems needed for
|
|
5
|
+
your project instead of using this gem with every dependency. Please see the
|
|
6
|
+
[GitHub repository](https://github.com/GoogleCloudPlatform/google-cloud-ruby)
|
|
7
|
+
for more information about the individual google-cloud gems.
|
|
8
|
+
|
|
9
|
+
- [google-cloud API documentation](http://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud/latest)
|
|
10
|
+
- [google-cloud on RubyGems](https://rubygems.org/gems/google-cloud)
|
|
11
|
+
|
|
12
|
+
## Quick Start
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
$ gem install google-cloud
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Authentication
|
|
19
|
+
|
|
20
|
+
Instructions and configuration options are covered in the [Authentication
|
|
21
|
+
Guide](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud/latest/file.AUTHENTICATION).
|
|
22
|
+
|
|
23
|
+
## Example
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
require "google-cloud"
|
|
27
|
+
|
|
28
|
+
gcloud = Google::Cloud.new
|
|
29
|
+
bigquery = gcloud.bigquery
|
|
30
|
+
dataset = bigquery.dataset "my-dataset"
|
|
31
|
+
table = dataset.table "my-table"
|
|
32
|
+
table.data.each do |row|
|
|
33
|
+
puts row
|
|
34
|
+
end
|
|
35
|
+
```
|
|
4
36
|
|
|
5
37
|
## Supported Ruby Versions
|
|
6
38
|
|
|
7
39
|
This library is supported on Ruby 2.3+.
|
|
8
40
|
|
|
9
41
|
Google provides official support for Ruby versions that are actively supported
|
|
10
|
-
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
|
11
|
-
|
|
12
|
-
|
|
42
|
+
by Ruby Core—that is, Ruby versions that are either in normal maintenance or in
|
|
43
|
+
security maintenance, and not end of life. Currently, this means Ruby 2.3 and
|
|
44
|
+
later. Older versions of Ruby _may_ still work, but are unsupported and not
|
|
13
45
|
recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
|
|
14
46
|
about the Ruby support schedule.
|
|
15
47
|
|
|
@@ -17,21 +49,31 @@ about the Ruby support schedule.
|
|
|
17
49
|
|
|
18
50
|
This library follows [Semantic Versioning](http://semver.org/).
|
|
19
51
|
|
|
20
|
-
It is currently in major version zero (0.y.z), which means that anything may
|
|
52
|
+
It is currently in major version zero (0.y.z), which means that anything may
|
|
53
|
+
change at any time and the public API should not be considered stable.
|
|
21
54
|
|
|
22
55
|
## Contributing
|
|
23
56
|
|
|
24
57
|
Contributions to this library are always welcome and highly encouraged.
|
|
25
58
|
|
|
26
|
-
See the [Contributing
|
|
59
|
+
See the [Contributing
|
|
60
|
+
Guide](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud/latest/file.CONTRIBUTING)
|
|
61
|
+
for more information on how to get started.
|
|
27
62
|
|
|
28
|
-
Please note that this project is released with a Contributor Code of Conduct. By
|
|
63
|
+
Please note that this project is released with a Contributor Code of Conduct. By
|
|
64
|
+
participating in this project you agree to abide by its terms. See [Code of
|
|
65
|
+
Conduct](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud/latest/file.CODE_OF_CONDUCT)
|
|
66
|
+
for more information.
|
|
29
67
|
|
|
30
68
|
## License
|
|
31
69
|
|
|
32
|
-
This library is licensed under Apache 2.0. Full license text is available in
|
|
70
|
+
This library is licensed under Apache 2.0. Full license text is available in
|
|
71
|
+
[LICENSE](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud/latest/file.LICENSE).
|
|
33
72
|
|
|
34
73
|
## Support
|
|
35
74
|
|
|
36
|
-
Please [report bugs at the project on
|
|
37
|
-
|
|
75
|
+
Please [report bugs at the project on
|
|
76
|
+
Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues). Don't
|
|
77
|
+
hesitate to [ask
|
|
78
|
+
questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby)
|
|
79
|
+
about the client or APIs on [StackOverflow](http://stackoverflow.com).
|
data/lib/google/cloud/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.56.
|
|
4
|
+
version: 0.56.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: google-cloud-bigquery
|
|
@@ -519,16 +519,16 @@ dependencies:
|
|
|
519
519
|
name: yard-doctest
|
|
520
520
|
requirement: !ruby/object:Gem::Requirement
|
|
521
521
|
requirements:
|
|
522
|
-
- - "
|
|
522
|
+
- - "~>"
|
|
523
523
|
- !ruby/object:Gem::Version
|
|
524
|
-
version: 0.1.
|
|
524
|
+
version: 0.1.13
|
|
525
525
|
type: :development
|
|
526
526
|
prerelease: false
|
|
527
527
|
version_requirements: !ruby/object:Gem::Requirement
|
|
528
528
|
requirements:
|
|
529
|
-
- - "
|
|
529
|
+
- - "~>"
|
|
530
530
|
- !ruby/object:Gem::Version
|
|
531
|
-
version: 0.1.
|
|
531
|
+
version: 0.1.13
|
|
532
532
|
description: google-cloud is the official library for Google Cloud Platform APIs.
|
|
533
533
|
email:
|
|
534
534
|
- mike@blowmage.com
|