google-cloud 0.56.0 → 0.56.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59226ec0800e0deb194ba4ebe2e18e158744af463a7cf5bff88942d184613abe
4
- data.tar.gz: 0f58e729524ec6fdc0a0a89e192a6ba78d2835fb9ce2000b2a8baf6fcfd842e2
3
+ metadata.gz: cbce1325bb7dc662d11f16289c6dc0e0ffe1890fbda564672da3fe91f07661eb
4
+ data.tar.gz: d286c2ae75fdc285423e54447231110ac93cf895593e68b745f293796729912c
5
5
  SHA512:
6
- metadata.gz: 52a6cc7873f40a5bb3042ba1e07ad1cfd50e7eff8e791b4f88be06e9399531b5c77db7e48a775961c2324ceafcdb17328a1b3d9b7166239feff3a0e478c8462f
7
- data.tar.gz: 21ac6b66c6777cf9edc724e1b9ae9f1f9725a8dbcbf619f9ca3f350f1968a481208f6c127938e89c964ed37208e13a76254fb6aa5cee371e0543e83deee3accd
6
+ metadata.gz: 061fb4f8b5ab177991c2016abee9cd09fe56ce06df8708fefe56b14ca53d7c44e882caf772a9a6f44f17074b25511dab8c9fd4d60da970432cf81b6e8685f58a
7
+ data.tar.gz: '045579c8312624dd245e3923f9fd8dc718f2aa1f7efb43a63cbb06f0d9e2aa0f78027ed0981b40c2f902b7907cfb82a55e95a89a85b68e8bf388140e9d47cff7'
data/.yardopts CHANGED
@@ -6,3 +6,7 @@
6
6
  ./lib/**/*.rb
7
7
  -
8
8
  README.md
9
+ AUTHENTICATION.md
10
+ CONTRIBUTING.md
11
+ CODE_OF_CONDUCT.md
12
+ LICENSE
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 project. Please see the top-level project [README](../README.md) for more information about the individual google-cloud gems.
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
- in security maintenance, and not end of life. Currently, this means Ruby 2.3
12
- and later. Older versions of Ruby _may_ still work, but are unsupported and not
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 change at any time and the public API should not be considered stable.
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 Guide](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/guides/contributing) for more information on how to get started.
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 participating in this project you agree to abide by its terms. See [Code of Conduct](../CODE_OF_CONDUCT.md) for more information.
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 [LICENSE](LICENSE).
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 Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues).
37
- Don't hesitate to [ask questions](http://stackoverflow.com/questions/tagged/google-cloud-platform+ruby) about the client or APIs on [StackOverflow](http://stackoverflow.com).
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).
@@ -15,6 +15,6 @@
15
15
 
16
16
  module Google
17
17
  module Cloud
18
- VERSION = "0.56.0".freeze
18
+ VERSION = "0.56.1".freeze
19
19
  end
20
20
  end
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.0
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-08-16 00:00:00.000000000 Z
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.8
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.8
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