README.md in google-api-client-0.30.2 vs README.md in google-api-client-0.30.3
- old
+ new
@@ -1,6 +1,6 @@
-# Google API Client
+# Google API Client [![RubyDoc](https://img.shields.io/badge/RubyDoc-Google%3A%3AApis-red.svg)](https://www.rubydoc.info/github/googleapis/google-api-ruby-client/Google/Apis)
These client libraries are officially supported by Google. However, the libraries are considered complete and are in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.
## Google Cloud Platform
@@ -283,9 +283,25 @@
To set the logging level for the client:
```ruby
Google::Apis.logger.level = Logger::DEBUG
+```
+
+## Customizing endpoints
+
+By default, client objects will connect to the default Google endpoints for =
+their respective APIs. If you need to connect to a regional endpoint, a test
+endpoint, or other custom endpoint, modify the `root_url` attribute of the
+client object. For example:
+
+```ruby
+require "google/apis/docs_v1"
+docs_service = Google::Apis::DocsV1::DocsService.new
+
+docs_service.root_url = "https://my-custom-docs-endpoint.example.com/"
+
+document = docs_service.get_document("my-document-id")
```
## Samples
See the [samples](https://github.com/google/google-api-ruby-client/tree/master/samples) for examples on how to use the client library for various