https://github.com/googleapis/google-api-ruby-client
REST client for Google APIs
https://github.com/googleapis/google-api-ruby-client
Keywords from Contributors
activerecord activejob mvc rubygems rspec rack sinatra rubocop marshalling deployment
Last synced: about 12 hours ago
JSON representation
Repository metadata
REST client for Google APIs
- Host: GitHub
- URL: https://github.com/googleapis/google-api-ruby-client
- Owner: googleapis
- License: apache-2.0
- Created: 2012-01-26T21:54:39.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2026-06-11T15:41:05.000Z (5 days ago)
- Last Synced: 2026-06-13T14:14:40.977Z (3 days ago)
- Language: Ruby
- Homepage:
- Size: 4.21 GB
- Stars: 2,892
- Watchers: 112
- Forks: 884
- Open Issues: 41
- Releases: 65
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
README.md
Simple REST Clients for Google APIs
This repository contains a set of simple client libraries for various Google APIs. These libraries are generated automatically from Discovery Documents, and the code generator is also hosted here in this repository.
Each client provides:
- A client object that connects to the HTTP/JSON REST endpoint for the service.
- Ruby objects for data structures related to the service.
- Integration with the googleauth gem for authentication using OAuth, API keys, and service accounts.
- Control of retry, pagination, and timeouts.
These client libraries are officially supported by Google, and are updated regularly to track changes to the service. However, many Google services, especially Google Cloud Platform services such as Cloud Storage, Pub/Sub, and BigQuery, may provide a more modern client that is easier to use and more performant. See the section below titled "Which client should I use?" for more information.
Using the clients
The client gems are named according to the pattern google-apis-<servicename>_<serviceversion>. For example, the client for the Google Drive V3 API is google-apis-drive_v3.
Install the client using gem install or by adding it to your Gemfile. Then, to use it, require the file and instantiate the service. For example to use the Drive API:
require 'google/apis/drive_v3'
drive = Google::Apis::DriveV3::DriveService.new
drive.authorization = ... # See Googleauth or Signet libraries
# Search for files in Drive (first page only)
files = drive.list_files(q: "title contains 'finances'")
files.items.each do |file|
puts file.title
end
# Upload a file
metadata = Google::Apis::DriveV3::File.new(name: 'test.txt')
metadata = drive.create_file(metadata, upload_source: '/tmp/test.txt', content_type: 'text/plain')
# Download a file
drive.get_file(metadata.id, download_dest: '/tmp/downloaded-test.txt')
Following is another example using the Content API (Google Merchant Center), provided by the google-apis-content_v2_1 gem:
require 'google/apis/content_v2_1'
require 'googleauth' # https://github.com/googleapis/google-auth-library-ruby
content = Google::Apis::ContentV2_1::ShoppingContentService.new
scope = 'https://www.googleapis.com/auth/content'
merchant_id = # Merchant ID found on dashboard
content.authorization = Google::Auth::ServiceAccountCredentials.make_creds(
json_key_io: File.open('./content-api-key.json'),
scope: scope)
content.authorization.fetch_access_token!
# Service methods: https://rubydoc.info/gems/google-apis-content_v2_1/Google/Apis/ContentV2_1/ShoppingContentService
content.list_datafeeds(merchant_id) # Returns Google::Apis::ContentV2_1::ListDatafeedsResponse
For more detailed information, see the Usage Guide.
Which client should I use?
Google provides two types of Ruby API client libraries: simple REST clients and modern clients.
The libraries in this repo are simple REST clients. These clients connect to HTTP/JSON REST endpoints and are automatically generated from service discovery documents. They support most API functionality, but their class interfaces are sometimes awkward.
Modern clients are produced by a modern code generator, combined with hand-crafted functionality for some services. Most modern clients connect to high-performance gRPC endpoints, although a few are backed by REST services. Modern clients are available for many Google services, especially Cloud Platform services, but do not yet support all the services covered by the simple clients. Most modern clients live in the https://github.com/googleapis/google-cloud-ruby repository.
For most users, we recommend the modern client, if one is available. Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
The documentation for the particular Google service you are working with, may provide guidance regarding the preferred client library to use.
Tracing
OpenCensus support with gems is now deprecated. Please migrate to using OpenTelemetry instead. Currently instrumented span data from core gem can be got by enabling Http and HttpClient auto-instrumentation of OpenTelemetry. To enable instrumentation for HTTP and HttpClient, and export it to Cloud Trace configure OpenTelemetry like below,
gem "opentelemetry-sdk"
gem "opentelemetry-exporter-google_cloud_trace"
gem "opentelemetry-instrumentation-http"
gem "opentelemetry-instrumentation-http_client"
require "opentelemetry-sdk"
require "opentelemetry/instrumentation/http_client"
require "opentelemetry/instrumentation/http"
require "opentelemetry/exporter/google_cloud_trace"
OpenTelemetry::SDK.configure do |c|
c.service_name = "ServiceName"
c.add_span_processor(
OpenTelemetry::SDK::Trace::Export::BatchSpanProcessor.new(
OpenTelemetry::Exporter::GoogleCloudTrace::SpanExporter.new
)
)
c.use "OpenTelemetry::Instrumentation::Http"
c.use "OpenTelemetry::Instrumentation::HttpClient"
end
Samples
See the samples for examples on how to use the client library for various
services.
Supported Ruby versions
This library is supported on Ruby 3.1+.
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.7 and later. Older versions of Ruby may still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
License
This library is licensed under Apache 2.0. Full license text is available in the LICENSE.
Contributing
See CONTRIBUTING.
Support
Please report bugs at the project on Github. Don't hesitate to ask questions about the client or APIs on StackOverflow.
Owner metadata
- Name: Google APIs
- Login: googleapis
- Email:
- Kind: organization
- Description: Clients for Google APIs and tools that help produce them.
- Website: https://googleapis.github.io
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/16785467?v=4
- Repositories: 781
- Last ynced at: 2023-04-09T04:55:29.167Z
- Profile URL: https://github.com/googleapis
GitHub Events
Total
- Create event: 16
- Release event: 7
- Issues event: 29
- Watch event: 67
- Delete event: 7
- Issue comment event: 541
- Push event: 3834
- Pull request review comment event: 66
- Pull request review event: 3370
- Pull request event: 6838
- Fork event: 24
Last Year
- Create event: 16
- Release event: 7
- Issues event: 29
- Watch event: 67
- Delete event: 7
- Issue comment event: 541
- Push event: 3834
- Pull request review comment event: 66
- Pull request review event: 3370
- Pull request event: 6838
- Fork event: 24
Committers metadata
Last synced: 2 days ago
Total Commits: 25,949
Total Committers: 153
Avg Commits per committer: 169.601
Development Distribution Score (DDS): 0.323
Commits in past year: 3,226
Committers in past year: 10
Avg Commits per committer in past year: 322.6
Development Distribution Score (DDS) in past year: 0.008
| Name | Commits | |
|---|---|---|
| yoshi-code-bot | 7****t | 17574 |
| Yoshi Automation Bot | y****n@g****m | 6244 |
| Google APIs | g****r@g****m | 919 |
| Steven Bazyl | s****l@g****m | 320 |
| Bob Aman | b****n@g****m | 200 |
| Daniel Azuma | d****a@g****m | 188 |
| Sai Cheemalapati | s****s@g****m | 38 |
| release-please[bot] | 5****] | 29 |
| Volker Zöpfel | v****r@z****e | 28 |
| Neha Bajaj | b****7 | 24 |
| Sergio Gomes | s****s@g****m | 23 |
| bobaman@google.com | b****n@g****m@c****f | 22 |
| Thomas Coffee | t****e@g****m | 19 |
| Abdelkader Boudih | t****e@g****m | 18 |
| Yosuke Kabuto | b****2@g****m | 13 |
| Mike Moore | m****e@b****m | 13 |
| Tim Emiola | t****a@g****m | 9 |
| Simone Carletti | w****s@w****t | 9 |
| WhiteSource Renovate | b****t@r****m | 9 |
| Graham Paye | g****8@g****m | 8 |
| joker1007 | k****t@g****m | 8 |
| mattpok@google.com | m****k@g****m@c****f | 8 |
| Ruslan Korolev | r****1@g****m | 7 |
| Shubhangi Singh | s****n@g****m | 6 |
| André Andreassa | a****a | 6 |
| Chris Smith | q****o@g****m | 6 |
| Ethan | e****n@m****a | 6 |
| Graham Paye | p****e@g****m | 6 |
| sanemat | o****n@g****m | 6 |
| tknzk | t****k@g****m | 5 |
| and 123 more... | ||
Committer domains:
- google.com: 28
- yahoo.co.jp: 2
- simplysoft.ch: 1
- w3fu.com: 1
- sergey-ponomarev.ru: 1
- sporkmonger.com: 1
- maestrodev.com: 1
- nevir.net: 1
- yob.id.au: 1
- sumavisos.com: 1
- neighborland.com: 1
- simplymeasured.com: 1
- subsplash.com: 1
- rougecardinal.fr: 1
- qualeapps.com: 1
- gmx.com: 1
- renovateapp.com: 1
- weppos.net: 1
- blowmage.com: 1
- zoepfel.de: 1
- shopify.com: 1
- jonathansoifer.com: 1
- wawra.co.uk: 1
- drei.one: 1
- qslw.com: 1
- stanford.edu: 1
- dillonkearns.com: 1
- ivyevans.net: 1
- amitree.com: 1
- smartly.io: 1
- absalt.com: 1
- travelingnuker.com: 1
- zendesk.com: 1
- livelinktechnology.net: 1
- bootstraponline.com: 1
- peterhiggins.org: 1
- papkovskiy.com: 1
- terena.org: 1
- oscardelben.com: 1
- syrec.org: 1
Issue and Pull Request metadata
Last synced: 19 days ago
Total issues: 131
Total pull requests: 13,640
Average time to close issues: 7 months
Average time to close pull requests: about 18 hours
Total issue authors: 88
Total pull request authors: 49
Average comments per issue: 1.75
Average comments per pull request: 0.09
Merged pull request: 12,217
Bot issues: 3
Bot pull requests: 34
Past year issues: 14
Past year pull requests: 2,397
Past year average time to close issues: 6 minutes
Past year average time to close pull requests: about 1 hour
Past year issue authors: 9
Past year pull request authors: 10
Past year average comments per issue: 0.36
Past year average comments per pull request: 0.01
Past year merged pull request: 2,065
Past year bot issues: 0
Past year bot pull requests: 4
Top Issue Authors
- yoshi-code-bot (40)
- monkeyWzr (2)
- yahonda (2)
- thomaswitt (2)
- failure-checker[bot] (2)
- ChrisCPO (1)
- pmcam (1)
- Set27 (1)
- talothman (1)
- dazuma (1)
- katamotokosuke (1)
- javierjulio (1)
- mijoharas (1)
- aBenVip (1)
- kaibolay (1)
Top Pull Request Authors
- yoshi-code-bot (13,423)
- dazuma (66)
- release-please[bot] (31)
- yoshi-automation (22)
- aandreassa (12)
- shubhangi-google (11)
- shivgautam (9)
- suztomo (5)
- yahonda (4)
- byroot (4)
- kurajiv (4)
- gdubicki (2)
- garyhtou (2)
- morralgit116 (2)
- allan-pires (2)
Top Issue Labels
- kokoro:force-run (29)
- automerge (18)
- type: question (14)
- automerge: exact (10)
- :rotating_light: (9)
- triage me (6)
- type: process (5)
- type: feature request (4)
- type: bug (3)
- priority: p2 (2)
- clusterProfiler (1)
- api: docs (1)
- enrichplot (1)
- feature (1)
- status: investigating (1)
- api: sheets (1)
- samples (1)
- type: cleanup (1)
- type: docs (1)
Top Pull Request Labels
- kokoro:force-run (12,496)
- automerge: exact (2,601)
- automerge (2,447)
- cla: yes (26)
- autorelease: pending (18)
- autorelease: published (9)
- do not merge (6)
- autorelease: tagged (4)
- samples (4)
- 🔥 매운맛 (1)
- cla: no (1)
- Team-Ray (1)
- bug (1)
- kokoro:run (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 55,205,562 total
- Total docker downloads: 453,357,660
- Total dependent packages: 1 (may contain duplicates)
- Total dependent repositories: 5 (may contain duplicates)
- Total versions: 2,975
- Total maintainers: 1
gem.coop: google-apis-sqladmin_v1beta4
This is the simple REST client for Cloud SQL Admin API V1beta4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud SQL Admin API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-sqladmin_v1beta4/
- Licenses: Apache-2.0
- Latest release: 0.101.0 (published 16 days ago)
- Last Synced: 2026-06-11T22:35:21.664Z (4 days ago)
- Versions: 101
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 31,258,703 Total
- Docker Downloads: 446,684,758
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.243%
- Downloads: 0.73%
- Maintainers (1)
gem.coop: google-apis-bigquery_v2
This is the simple REST client for BigQuery API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the BigQuery API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-bigquery_v2/
- Licenses: Apache-2.0
- Latest release: 0.102.0 (published 16 days ago)
- Last Synced: 2026-06-14T12:38:34.441Z (2 days ago)
- Versions: 102
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,113,084 Total
- Docker Downloads: 6,672,902
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.534%
- Downloads: 0.994%
- Docker downloads count: 1.144%
- Maintainers (1)
gem.coop: google-apis-verifiedaccess_v1
This is the simple REST client for Chrome Verified Access API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Chrome Verified Access API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-verifiedaccess_v1/
- Licenses: Apache-2.0
- Latest release: 0.19.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:32.021Z (about 1 month ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 199,509 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.153%
- Downloads: 6.459%
- Maintainers (1)
gem.coop: google-apis-webmasters_v3
This is the simple REST client for Search Console API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Search Console API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-webmasters_v3/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published over 4 years ago)
- Last Synced: 2026-05-15T05:02:34.318Z (about 1 month ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 230,131 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.249%
- Downloads: 6.748%
- Maintainers (1)
gem.coop: google-apis-ml_v1
This is the simple REST client for AI Platform Training & Prediction API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AI Platform Training & Prediction API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-ml_v1/
- Licenses: Apache-2.0
- Latest release: 0.42.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:37:22.332Z (2 days ago)
- Versions: 42
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 195,303 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.257%
- Downloads: 6.77%
- Maintainers (1)
gem.coop: google-apis-displayvideo_v1
This is the simple REST client for Display & Video 360 API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Display & Video 360 API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-displayvideo_v1/
- Licenses: Apache-2.0
- Latest release: 0.65.0 (published over 2 years ago)
- Last Synced: 2026-05-15T05:04:24.424Z (about 1 month ago)
- Versions: 65
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 91,130 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.482%
- Downloads: 10.447%
- Maintainers (1)
gem.coop: google-apis-jobs_v4
This is the simple REST client for Cloud Talent Solution API V4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Talent Solution API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-jobs_v4/
- Licenses: Apache-2.0
- Latest release: 0.36.0 (published 8 months ago)
- Last Synced: 2026-06-11T14:04:47.395Z (5 days ago)
- Versions: 36
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 88,475 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.56%
- Downloads: 10.679%
- Maintainers (1)
gem.coop: google-apis-mybusinessplaceactions_v1
This is the simple REST client for My Business Place Actions API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Place Actions API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-mybusinessplaceactions_v1/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published about 1 year ago)
- Last Synced: 2026-05-25T15:59:18.462Z (22 days ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 87,422 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.72%
- Downloads: 11.159%
- Maintainers (1)
gem.coop: google-apis-identitytoolkit_v1
This is the simple REST client for Identity Toolkit API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Identity Toolkit API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-identitytoolkit_v1/
- Licenses: Apache-2.0
- Latest release: 0.22.0 (published 3 months ago)
- Last Synced: 2026-05-15T05:04:22.063Z (about 1 month ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 92,666 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.122%
- Downloads: 12.365%
- Maintainers (1)
gem.coop: google-apis-cloudsearch_v1
This is the simple REST client for Cloud Search API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Search API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudsearch_v1/
- Licenses: Apache-2.0
- Latest release: 0.68.0 (published about 1 month ago)
- Last Synced: 2026-06-12T06:30:44.237Z (4 days ago)
- Versions: 68
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 63,138 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.416%
- Downloads: 13.248%
- Maintainers (1)
gem.coop: google-apis-composer_v1
This is the simple REST client for Cloud Composer API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Composer API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-composer_v1/
- Licenses: Apache-2.0
- Latest release: 0.60.0 (published about 2 months ago)
- Last Synced: 2026-05-18T17:03:06.663Z (29 days ago)
- Versions: 60
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 57,750 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.757%
- Downloads: 14.27%
- Maintainers (1)
gem.coop: google-apis-testing_v1
This is the simple REST client for Cloud Testing API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Testing API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-testing_v1/
- Licenses: Apache-2.0
- Latest release: 0.57.0 (published 8 months ago)
- Last Synced: 2026-06-12T04:48:28.382Z (4 days ago)
- Versions: 57
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 54,966 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.95%
- Downloads: 14.851%
- Maintainers (1)
gem.coop: google-apis-adsense_v2
This is the simple REST client for AdSense Management API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdSense Management API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adsense_v2/
- Licenses: Apache-2.0
- Latest release: 0.38.0 (published 12 months ago)
- Last Synced: 2026-05-15T09:08:43.290Z (about 1 month ago)
- Versions: 38
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 56,644 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.987%
- Downloads: 14.96%
- Maintainers (1)
gem.coop: google-apis-osconfig_v1
This is the simple REST client for OS Config API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the OS Config API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-osconfig_v1/
- Licenses: Apache-2.0
- Latest release: 0.55.0 (published about 1 month ago)
- Last Synced: 2026-06-08T08:48:55.366Z (8 days ago)
- Versions: 55
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 53,772 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.04%
- Downloads: 15.12%
- Maintainers (1)
gem.coop: google-apis-run_v1alpha1
This is the simple REST client for Cloud Run Admin API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Run Admin API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-run_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.29.0 (published almost 4 years ago)
- Last Synced: 2026-05-18T05:32:15.112Z (29 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 45,386 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.461%
- Downloads: 16.383%
- Maintainers (1)
gem.coop: google-apis-identitytoolkit_v2
This is the simple REST client for Identity Toolkit API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Identity Toolkit API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-identitytoolkit_v2/
- Licenses: Apache-2.0
- Latest release: 0.25.0 (published about 1 year ago)
- Last Synced: 2026-06-12T03:15:25.079Z (4 days ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 52,350 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.61%
- Downloads: 16.831%
- Maintainers (1)
gem.coop: google-apis-cloudasset_v1p1beta1
This is the simple REST client for Cloud Asset API V1p1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Asset API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudasset_v1p1beta1/
- Licenses: Apache-2.0
- Latest release: 0.48.0 (published about 2 months ago)
- Last Synced: 2026-06-11T13:59:40.956Z (5 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 48,719 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.619%
- Downloads: 16.856%
- Maintainers (1)
gem.coop: google-apis-gkehub_v1alpha2
This is the simple REST client for GKE Hub API V1alpha2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the GKE Hub API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-gkehub_v1alpha2/
- Licenses: Apache-2.0
- Latest release: 0.39.0 (published over 2 years ago)
- Last Synced: 2026-05-29T11:20:38.188Z (18 days ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 44,910 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.636%
- Downloads: 16.907%
- Maintainers (1)
gem.coop: google-apis-containeranalysis_v1
This is the simple REST client for Container Analysis API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Container Analysis API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-containeranalysis_v1/
- Licenses: Apache-2.0
- Latest release: 0.76.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:37:21.247Z (2 days ago)
- Versions: 76
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 49,627 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.669%
- Downloads: 17.006%
- Maintainers (1)
gem.coop: google-apis-cloudasset_v1beta1
This is the simple REST client for Cloud Asset API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Asset API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudasset_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.48.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:37:24.276Z (2 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 45,155 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.686%
- Downloads: 17.058%
- Maintainers (1)
gem.coop: google-apis-merchantapi_lfp_v1beta
This is the simple REST client for Merchant API LfpV1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Merchant API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-merchantapi_lfp_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.11.0 (published 10 months ago)
- Last Synced: 2026-05-15T05:04:17.939Z (about 1 month ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 60,490 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.744%
- Downloads: 17.232%
- Maintainers (1)
gem.coop: google-apis-domains_v1alpha2
This is the simple REST client for Cloud Domains API V1alpha2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Domains API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-domains_v1alpha2/
- Licenses: Apache-2.0
- Latest release: 0.46.0 (published about 1 month ago)
- Last Synced: 2026-05-19T08:30:32.971Z (28 days ago)
- Versions: 46
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 42,265 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.95%
- Downloads: 17.849%
- Maintainers (1)
gem.coop: google-apis-gameservices_v1
This is the simple REST client for Game Services API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Game Services API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-gameservices_v1/
- Licenses: Apache-2.0
- Latest release: 0.31.0 (published about 3 years ago)
- Last Synced: 2026-06-11T20:31:16.761Z (5 days ago)
- Versions: 31
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 40,946 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.961%
- Downloads: 17.882%
- Maintainers (1)
gem.coop: google-apis-cloudscheduler_v1
This is the simple REST client for Cloud Scheduler API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Scheduler API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudscheduler_v1/
- Licenses: Apache-2.0
- Latest release: 0.44.0 (published 4 months ago)
- Last Synced: 2026-06-12T09:16:53.106Z (4 days ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 44,428 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.035%
- Downloads: 18.106%
- Maintainers (1)
gem.coop: google-apis-deploymentmanager_alpha
This is the simple REST client for Cloud Deployment Manager V2 API Alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Deployment Manager V2 API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-deploymentmanager_alpha/
- Licenses: Apache-2.0
- Latest release: 0.42.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:37:24.289Z (2 days ago)
- Versions: 42
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 42,131 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.272%
- Downloads: 18.815%
- Maintainers (1)
gem.coop: google-apis-datafusion_v1
This is the simple REST client for Cloud Data Fusion API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Data Fusion API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-datafusion_v1/
- Licenses: Apache-2.0
- Latest release: 0.43.0 (published 4 months ago)
- Last Synced: 2026-05-15T05:04:21.679Z (about 1 month ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 39,595 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.289%
- Downloads: 18.867%
- Maintainers (1)
gem.coop: google-apis-workflowexecutions_v1
This is the simple REST client for Workflow Executions API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Workflow Executions API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-workflowexecutions_v1/
- Licenses: Apache-2.0
- Latest release: 0.43.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:24.078Z (about 1 month ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 38,520 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.339%
- Downloads: 19.017%
- Maintainers (1)
gem.coop: google-apis-oslogin_v1beta
This is the simple REST client for Cloud OS Login API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud OS Login API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-oslogin_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.34.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:22.370Z (about 1 month ago)
- Versions: 34
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 36,755 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.431%
- Downloads: 19.293%
- Maintainers (1)
gem.coop: google-apis-osconfig_v1alpha
This is the simple REST client for OS Config API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the OS Config API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-osconfig_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.37.0 (published about 1 month ago)
- Last Synced: 2026-06-04T20:03:18.135Z (12 days ago)
- Versions: 37
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 36,278 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.658%
- Downloads: 19.974%
- Maintainers (1)
gem.coop: google-apis-adexchangebuyer2_v2beta1
This is the simple REST client for Ad Exchange Buyer API II V2beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Ad Exchange Buyer API II, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adexchangebuyer2_v2beta1/
- Licenses: Apache-2.0
- Latest release: 0.29.0 (published about 1 year ago)
- Last Synced: 2026-05-15T01:15:21.647Z (about 1 month ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 34,733 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.78%
- Downloads: 20.34%
- Maintainers (1)
gem.coop: google-apis-pubsub_v1beta2
This is the simple REST client for Cloud Pub/Sub API V1beta2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Pub/Sub API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-pubsub_v1beta2/
- Licenses: Apache-2.0
- Latest release: 0.30.0 (published about 1 year ago)
- Last Synced: 2026-05-15T17:02:10.804Z (about 1 month ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 34,503 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.815%
- Downloads: 20.446%
- Maintainers (1)
gem.coop: google-apis-runtimeconfig_v1beta1
This is the simple REST client for Cloud Runtime Configuration API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Runtime Configuration API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-runtimeconfig_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.30.0 (published about 1 year ago)
- Last Synced: 2026-05-15T00:46:27.587Z (about 1 month ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 34,341 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.912%
- Downloads: 20.735%
- Maintainers (1)
gem.coop: google-apis-dfareporting_v3_4
This is the simple REST client for Campaign Manager 360 API V3_4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Campaign Manager 360 API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-dfareporting_v3_4/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published over 4 years ago)
- Last Synced: 2026-05-15T05:04:21.302Z (about 1 month ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 30,522 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.165%
- Downloads: 21.495%
- Maintainers (1)
gem.coop: google-apis-iap_v1beta1
This is the simple REST client for Cloud Identity-Aware Proxy API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Identity-Aware Proxy API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-iap_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.29.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:16.577Z (about 1 month ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 31,990 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.287%
- Downloads: 21.862%
- Maintainers (1)
gem.coop: google-apis-cloudasset_v1p4beta1
This is the simple REST client for Cloud Asset API V1p4beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Asset API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudasset_v1p4beta1/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published almost 4 years ago)
- Last Synced: 2026-05-19T00:17:21.173Z (28 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 29,825 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.578%
- Downloads: 22.734%
- Maintainers (1)
gem.coop: google-apis-cloudtrace_v2
This is the simple REST client for Cloud Trace API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Trace API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudtrace_v2/
- Licenses: Apache-2.0
- Latest release: 0.26.0 (published 8 months ago)
- Last Synced: 2026-05-29T10:37:21.018Z (18 days ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 29,545 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.775%
- Downloads: 23.324%
- Maintainers (1)
rubygems.org: google-apis-analyticsdata_v1beta
This is the simple REST client for Google Analytics Data API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Analytics Data API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-analyticsdata_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.40.0 (published about 1 year ago)
- Last Synced: 2026-05-31T23:15:58.293Z (15 days ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 420,845 Total
-
Rankings:
- Forks count: 0.486%
- Stargazers count: 0.701%
- Dependent packages count: 7.745%
- Average: 7.897%
- Downloads: 8.851%
- Dependent repos count: 21.703%
- Maintainers (1)
gem.coop: google-apis-accesscontextmanager_v1beta
This is the simple REST client for Access Context Manager API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Access Context Manager API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-accesscontextmanager_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.19.0 (published almost 3 years ago)
- Last Synced: 2026-05-21T20:50:58.281Z (25 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 24,866 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 8.77%
- Downloads: 26.311%
- Maintainers (1)
gem.coop: google-apis-dataproc_v1beta2
This is the simple REST client for Cloud Dataproc API V1beta2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Dataproc API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-dataproc_v1beta2/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published almost 5 years ago)
- Last Synced: 2026-05-25T17:46:33.226Z (22 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,802 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.86%
- Downloads: 29.581%
- Maintainers (1)
gem.coop: google-apis-remotebuildexecution_v2
This is the simple REST client for Remote Build Execution API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Remote Build Execution API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-remotebuildexecution_v2/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published almost 5 years ago)
- Last Synced: 2026-05-15T05:04:30.825Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,345 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.891%
- Downloads: 29.674%
- Maintainers (1)
gem.coop: google-apis-adsensehost_v4_1
This is the simple REST client for AdSense Host API V4_1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdSense Host API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adsensehost_v4_1/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published almost 2 years ago)
- Last Synced: 2026-05-15T05:04:18.078Z (about 1 month ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 18,321 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 11.096%
- Downloads: 33.287%
- Maintainers (1)
rubygems.org: google-apis-kgsearch_v1
This is the simple REST client for Knowledge Graph Search API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Knowledge Graph Search API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-kgsearch_v1/
- Licenses: Apache-2.0
- Latest release: 0.17.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:20.693Z (about 1 month ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 3
- Downloads: 36,211 Total
-
Rankings:
- Forks count: 0.474%
- Stargazers count: 0.69%
- Average: 11.239%
- Dependent repos count: 12.652%
- Dependent packages count: 15.774%
- Downloads: 26.604%
- Maintainers (1)
rubygems.org: google-apis-jobs_v3
This is the simple REST client for Cloud Talent Solution API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Talent Solution API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-jobs_v3/
- Licenses: Apache-2.0
- Latest release: 0.32.0 (published 8 months ago)
- Last Synced: 2026-05-15T19:30:45.173Z (about 1 month ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 38,945 Total
-
Rankings:
- Forks count: 0.474%
- Stargazers count: 0.69%
- Average: 12.268%
- Dependent packages count: 15.776%
- Dependent repos count: 21.738%
- Downloads: 22.662%
- Maintainers (1)
gem.coop: google-apis-assuredworkloads_v1beta1
This is the simple REST client for Assured Workloads API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Assured Workloads API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-assuredworkloads_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.34.0 (published about 1 month ago)
- Last Synced: 2026-05-15T05:04:21.312Z (about 1 month ago)
- Versions: 34
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,457 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.423%
- Downloads: 37.269%
- Maintainers (1)
gem.coop: google-apis-adsense_v1_4
This is the simple REST client for AdSense Management API V1_4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdSense Management API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adsense_v1_4/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published over 4 years ago)
- Last Synced: 2026-05-29T17:45:57.090Z (18 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 13,058 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 13.662%
- Downloads: 40.987%
- Maintainers (1)
gem.coop: google-apis-playablelocations_v3
This is the simple REST client for Playable Locations API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Playable Locations API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-playablelocations_v3/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published almost 5 years ago)
- Last Synced: 2026-05-18T19:02:05.659Z (29 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 13,011 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 13.787%
- Downloads: 41.36%
- Maintainers (1)
gem.coop: google-apis-ideahub_v1beta
This is the simple REST client for Idea Hub API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Idea Hub API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-ideahub_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published over 3 years ago)
- Last Synced: 2026-05-25T10:43:25.308Z (22 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 13,008 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 13.834%
- Downloads: 41.501%
- Maintainers (1)
rubygems.org: google-apis-pagespeedonline_v5
This is the simple REST client for PageSpeed Insights API V5. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the PageSpeed Insights API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-pagespeedonline_v5/
- Licenses: Apache-2.0
- Latest release: 0.21.0 (published about 1 year ago)
- Last Synced: 2026-05-15T13:17:53.165Z (about 1 month ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 186,444 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.701%
- Downloads: 7.954%
- Average: 14.332%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apis-drivelabels_v2
This is the simple REST client for Drive Labels API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Drive Labels API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-drivelabels_v2/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published 10 months ago)
- Last Synced: 2026-05-15T05:04:33.496Z (about 1 month ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 60,985 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 14.338%
- Downloads: 43.014%
- Maintainers (1)
rubygems.org: google-apis-forms_v1
This is the simple REST client for Google Forms API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Forms API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-forms_v1/
- Licenses: Apache-2.0
- Latest release: 0.19.0 (published about 1 year ago)
- Last Synced: 2026-05-29T05:30:24.854Z (18 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 315,111 Total
-
Rankings:
- Forks count: 0.474%
- Stargazers count: 0.69%
- Downloads: 6.568%
- Average: 14.496%
- Dependent packages count: 15.774%
- Dependent repos count: 48.974%
- Maintainers (1)
gem.coop: google-apis-adexchangebuyer_v1_2
This is the simple REST client for Ad Exchange Buyer API V1_2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Ad Exchange Buyer API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adexchangebuyer_v1_2/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published almost 5 years ago)
- Last Synced: 2026-05-15T05:04:20.991Z (about 1 month ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10,841 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 15.399%
- Downloads: 46.196%
- Maintainers (1)
rubygems.org: google-apis-compute_alpha
This is the simple REST client for Compute Engine API Alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Compute Engine API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-compute_alpha/
- Licenses: Apache-2.0
- Latest release: 0.139.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:33:40.955Z (2 days ago)
- Versions: 139
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 106,995 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Downloads: 13.619%
- Average: 15.495%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apis-integrations_v1alpha
This is the simple REST client for Application Integration API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Application Integration API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-integrations_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.16.0 (published about 3 years ago)
- Last Synced: 2026-05-18T17:32:05.801Z (29 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 11,057 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 15.795%
- Downloads: 47.385%
- Maintainers (1)
rubygems.org: google-apis-speech_v1p1beta1
This is the simple REST client for Cloud Speech-to-Text API V1p1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Speech-to-Text API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-speech_v1p1beta1/
- Licenses: Apache-2.0
- Latest release: 0.45.0 (published 6 months ago)
- Last Synced: 2026-05-18T15:46:26.615Z (29 days ago)
- Versions: 45
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 58,764 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 16.095%
- Downloads: 16.894%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-appengine_v1
This is the simple REST client for App Engine Admin API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the App Engine Admin API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-appengine_v1/
- Licenses: Apache-2.0
- Latest release: 0.75.0 (published about 1 month ago)
- Last Synced: 2026-05-15T05:04:33.333Z (about 1 month ago)
- Versions: 75
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 81,606 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.805%
- Dependent packages count: 15.706%
- Average: 16.168%
- Downloads: 16.942%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-firebase_v1beta1
This is the simple REST client for Firebase Management API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Firebase Management API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-firebase_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.52.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:20.924Z (about 1 month ago)
- Versions: 52
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 106,160 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.826%
- Dependent packages count: 15.706%
- Average: 16.408%
- Downloads: 18.18%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-deploymentmanager_v2
This is the simple REST client for Cloud Deployment Manager V2 API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Deployment Manager V2 API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-deploymentmanager_v2/
- Licenses: Apache-2.0
- Latest release: 0.42.0 (published 3 months ago)
- Last Synced: 2026-05-21T15:18:15.585Z (26 days ago)
- Versions: 42
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 60,049 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.82%
- Dependent packages count: 15.706%
- Average: 16.804%
- Downloads: 20.163%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-sasportal_v1alpha1
This is the simple REST client for SAS Portal API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the SAS Portal API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-sasportal_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.43.0 (published about 1 year ago)
- Last Synced: 2026-06-11T06:15:21.458Z (5 days ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 48,206 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 16.883%
- Downloads: 20.664%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-mybusinessverifications_v1
This is the simple REST client for My Business Verifications API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Verifications API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-mybusinessverifications_v1/
- Licenses: Apache-2.0
- Latest release: 0.23.0 (published 10 months ago)
- Last Synced: 2026-05-14T10:55:42.217Z (about 1 month ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 188,453 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.835%
- Dependent packages count: 15.706%
- Average: 17.045%
- Downloads: 21.295%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-privateca_v1beta1
This is the simple REST client for Certificate Authority API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Certificate Authority API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-privateca_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.41.0 (published 9 days ago)
- Last Synced: 2026-06-11T15:01:52.893Z (5 days ago)
- Versions: 41
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 43,984 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Dependent packages count: 15.706%
- Average: 17.21%
- Downloads: 22.194%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-cloudtasks_v2beta2
This is the simple REST client for Cloud Tasks API V2beta2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Tasks API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudtasks_v2beta2/
- Licenses: Apache-2.0
- Latest release: 0.53.0 (published about 1 month ago)
- Last Synced: 2026-05-15T05:04:15.666Z (about 1 month ago)
- Versions: 53
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 47,724 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 17.221%
- Downloads: 22.353%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-networkconnectivity_v1alpha1
This is the simple REST client for Network Connectivity API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Network Connectivity API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-networkconnectivity_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.54.0 (published about 1 month ago)
- Last Synced: 2026-06-11T17:46:10.305Z (5 days ago)
- Versions: 54
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 47,460 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 17.34%
- Downloads: 23.116%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-cloudasset_v1beta1
This is the simple REST client for Cloud Asset API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Asset API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudasset_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.48.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:33:38.601Z (2 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 45,155 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.805%
- Dependent packages count: 15.706%
- Average: 17.521%
- Downloads: 23.704%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-sts_v1beta
This is the simple REST client for Security Token Service API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Token Service API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-sts_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.33.0 (published about 2 months ago)
- Last Synced: 2026-06-11T13:47:55.156Z (5 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 37,280 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Dependent packages count: 15.706%
- Average: 17.709%
- Downloads: 24.689%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-datafusion_v1beta1
This is the simple REST client for Cloud Data Fusion API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Data Fusion API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-datafusion_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.43.0 (published 4 months ago)
- Last Synced: 2026-05-15T04:15:39.080Z (about 1 month ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 40,415 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Average: 17.907%
- Downloads: 25.589%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-vision_v1p1beta1
This is the simple REST client for Cloud Vision API V1p1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Vision API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-vision_v1p1beta1/
- Licenses: Apache-2.0
- Latest release: 0.31.0 (published 10 months ago)
- Last Synced: 2026-05-15T18:32:29.070Z (about 1 month ago)
- Versions: 31
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,328 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 18.329%
- Downloads: 28.065%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-firebasedatabase_v1beta
This is the simple REST client for Firebase Realtime Database Management API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Firebase Realtime Database Management API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-firebasedatabase_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.26.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:27.175Z (about 1 month ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 30,289 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Average: 18.497%
- Downloads: 28.597%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-cloudtrace_v2beta1
This is the simple REST client for Cloud Trace API V2beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Trace API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudtrace_v2beta1/
- Licenses: Apache-2.0
- Latest release: 0.25.0 (published 8 months ago)
- Last Synced: 2026-05-15T01:31:30.768Z (about 1 month ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 28,279 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 18.71%
- Downloads: 29.8%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-admob_v1beta
This is the simple REST client for AdMob API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdMob API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-admob_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.33.0 (published 4 months ago)
- Last Synced: 2026-06-09T03:01:26.057Z (7 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,984 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Average: 18.98%
- Downloads: 31.013%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-runtimeconfig_v1
This is the simple REST client for Cloud Runtime Configuration API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Runtime Configuration API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-runtimeconfig_v1/
- Licenses: Apache-2.0
- Latest release: 0.25.0 (published 7 months ago)
- Last Synced: 2026-05-15T05:04:31.920Z (about 1 month ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 27,213 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 19.005%
- Downloads: 31.444%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-pubsub_v1beta1a
This is the simple REST client for Cloud Pub/Sub API V1beta1a. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Pub/Sub API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-pubsub_v1beta1a/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:14.712Z (about 1 month ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 25,901 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 19.198%
- Downloads: 32.408%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-firebasehosting_v1
This is the simple REST client for Firebase Hosting API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Firebase Hosting API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-firebasehosting_v1/
- Licenses: Apache-2.0
- Latest release: 0.25.0 (published 6 months ago)
- Last Synced: 2026-05-15T05:04:20.458Z (about 1 month ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,466 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.69%
- Dependent packages count: 15.706%
- Average: 19.521%
- Downloads: 33.906%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-connectors_v1
This is the simple REST client for Connectors API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Connectors API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-connectors_v1/
- Licenses: Apache-2.0
- Latest release: 0.85.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:33:40.615Z (2 days ago)
- Versions: 85
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 53,897 Total
-
Rankings:
- Forks count: 0.514%
- Stargazers count: 0.701%
- Dependent packages count: 15.706%
- Average: 20.087%
- Downloads: 36.73%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-mybusinesslodging_v1
This is the simple REST client for My Business Lodging API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Lodging API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-mybusinesslodging_v1/
- Licenses: Apache-2.0
- Latest release: 0.22.0 (published about 1 year ago)
- Last Synced: 2026-05-19T02:02:04.473Z (28 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 28,589 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Dependent packages count: 15.706%
- Average: 20.222%
- Downloads: 37.254%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-adexperiencereport_v1
This is the simple REST client for Ad Experience Report API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Ad Experience Report API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-adexperiencereport_v1/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published about 1 year ago)
- Last Synced: 2026-05-18T04:15:52.838Z (29 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,619 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 20.28%
- Downloads: 37.649%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-mybusinessnotifications_v1
This is the simple REST client for My Business Notifications API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Notifications API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-mybusinessnotifications_v1/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:21.184Z (about 1 month ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 89,628 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.835%
- Dependent packages count: 15.706%
- Average: 20.394%
- Downloads: 38.041%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-doubleclickbidmanager_v1
This is the simple REST client for DoubleClick Bid Manager API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the DoubleClick Bid Manager API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-doubleclickbidmanager_v1/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published almost 5 years ago)
- Last Synced: 2026-05-18T07:16:30.064Z (29 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 13,715 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.887%
- Dependent packages count: 15.706%
- Average: 21.385%
- Downloads: 42.941%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apis-integrations_v1
This is the simple REST client for Application Integration API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Application Integration API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-integrations_v1/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published 4 months ago)
- Last Synced: 2026-06-12T07:15:30.580Z (4 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 8,756 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 23.975%
- Downloads: 71.925%
- Maintainers (1)
rubygems.org: google-apis-playdeveloperreporting_v1alpha1
This is the simple REST client for Google Play Developer Reporting API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Play Developer Reporting API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-playdeveloperreporting_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.38.0 (published 3 months ago)
- Last Synced: 2026-06-12T15:01:10.955Z (4 days ago)
- Versions: 38
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 24,512 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.932%
- Dependent packages count: 15.706%
- Average: 25.417%
- Dependent repos count: 46.779%
- Downloads: 62.935%
- Maintainers (1)
gem.coop: google-apis-displayvideo_v4
This is the simple REST client for Display & Video 360 API V4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Display & Video 360 API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-displayvideo_v4/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published about 2 months ago)
- Last Synced: 2026-05-15T12:31:43.694Z (about 1 month ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,244 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.753%
- Downloads: 80.26%
- Maintainers (1)
gem.coop: google-apis-rapidmigrationassessment_v1
This is the simple REST client for Rapid Migration Assessment API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Rapid Migration Assessment API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-rapidmigrationassessment_v1/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published about 1 year ago)
- Last Synced: 2026-06-12T14:49:02.620Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,414 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 28.539%
- Downloads: 85.618%
- Maintainers (1)
gem.coop: google-apis-readerrevenuesubscriptionlinking_v1
This is the simple REST client for Reader Revenue Subscription Linking API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Reader Revenue Subscription Linking API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-readerrevenuesubscriptionlinking_v1/
- Licenses: Apache-2.0
- Latest release: 0.7.0 (published about 1 year ago)
- Last Synced: 2026-05-15T15:15:38.563Z (about 1 month ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,508 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 28.765%
- Downloads: 86.294%
- Maintainers (1)
gem.coop: google-apis-apim_v1alpha
This is the simple REST client for API Management API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the API Management API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-apim_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.13.0 (published about 1 month ago)
- Last Synced: 2026-05-21T08:05:31.926Z (26 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,779 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 30.105%
- Downloads: 90.316%
- Maintainers (1)
rubygems.org: google-apis-cloudlocationfinder_v1
This is the simple REST client for Cloud Location Finder API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Location Finder API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudlocationfinder_v1/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published about 1 month ago)
- Last Synced: 2026-05-15T13:03:12.942Z (about 1 month ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,087 Total
-
Rankings:
- Forks count: 0.584%
- Stargazers count: 0.724%
- Dependent packages count: 14.265%
- Average: 30.369%
- Dependent repos count: 43.696%
- Downloads: 92.574%
- Maintainers (1)
gem.coop: google-apis-cloudcontrolspartner_v1beta
This is the simple REST client for Cloud Controls Partner API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Controls Partner API, but note that some services may provide a separate modern client that is easier to use.
- Homepage:
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudcontrolspartner_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published about 1 year ago)
- Last Synced: 2026-05-15T04:31:19.405Z (about 1 month ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,821 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 31.456%
- Downloads: 94.367%
- Maintainers (1)
gem.coop: google-apis-pollen_v1
This is the simple REST client for Pollen API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Pollen API, but note that some services may provide a separate modern client that is easier to use.
- Homepage:
- Documentation: http://www.rubydoc.info/gems/google-apis-pollen_v1/
- Licenses: Apache-2.0
- Latest release: 0.3.0 (published about 1 year ago)
- Last Synced: 2026-05-15T05:04:16.573Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,308 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 31.749%
- Downloads: 95.246%
- Maintainers (1)
gem.coop: google-apis-securityposture_v1
This is the simple REST client for Security Posture API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Posture API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-securityposture_v1/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published 3 months ago)
- Last Synced: 2026-05-15T05:04:27.712Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,229 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 31.871%
- Downloads: 95.614%
- Maintainers (1)
rubygems.org: google-apis-publicca_v1beta1
This is the simple REST client for Public Certificate Authority API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Public Certificate Authority API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-publicca_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published about 1 year ago)
- Last Synced: 2026-05-18T06:02:03.218Z (29 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,171 Total
-
Rankings:
- Forks count: 0.482%
- Stargazers count: 0.677%
- Dependent packages count: 15.706%
- Average: 32.65%
- Dependent repos count: 46.779%
- Downloads: 99.605%
- Maintainers (1)
gem.coop: google-apis-parametermanager_v1
This is the simple REST client for Parameter Manager API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Parameter Manager API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-parametermanager_v1/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published about 1 month ago)
- Last Synced: 2026-06-04T18:18:16.196Z (12 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,074 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.737%
- Downloads: 98.21%
- Maintainers (1)
rubygems.org: google-apis-publicca_v1alpha1
This is the simple REST client for Public Certificate Authority API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Public Certificate Authority API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-publicca_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published about 1 year ago)
- Last Synced: 2026-06-02T10:59:24.624Z (14 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,326 Total
-
Rankings:
- Forks count: 0.732%
- Stargazers count: 0.93%
- Dependent packages count: 15.706%
- Average: 32.746%
- Dependent repos count: 46.779%
- Downloads: 99.582%
- Maintainers (1)
rubygems.org: google-apis-biglake_v1
This is the simple REST client for BigLake API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the BigLake API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-biglake_v1/
- Licenses: Apache-2.0
- Latest release: 0.7.0 (published 4 months ago)
- Last Synced: 2026-05-15T05:04:20.988Z (about 1 month ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,321 Total
-
Rankings:
- Forks count: 0.473%
- Stargazers count: 0.689%
- Dependent packages count: 15.78%
- Average: 33.057%
- Dependent repos count: 48.956%
- Downloads: 99.388%
- Maintainers (1)
gem.coop: google-apis-cloudnumberregistry_v1alpha
This is the simple REST client for Cloud Number Registry API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Number Registry API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-cloudnumberregistry_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 30 days ago)
- Last Synced: 2026-05-18T12:45:55.695Z (29 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 369 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.115%
- Downloads: 99.345%
- Maintainers (1)
gem.coop: google-apis-chromewebstore_v2
This is the simple REST client for Chrome Web Store API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Chrome Web Store API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-chromewebstore_v2/
- Licenses: Apache-2.0
- Latest release: 0.4.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:37:20.637Z (2 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 746 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.322%
- Downloads: 99.965%
- Maintainers (1)
rubygems.org: google-apis-agentregistry_v1alpha
This is the simple REST client for Agent Registry API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Agent Registry API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-agentregistry_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.3.0 (published about 1 month ago)
- Last Synced: 2026-05-28T18:32:38.343Z (19 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 486 Total
-
Rankings:
- Dependent packages count: 13.96%
- Dependent repos count: 42.757%
- Average: 49.746%
- Downloads: 92.521%
- Maintainers (1)
rubygems.org: google-apis-chromewebstore_v1_1
This is the simple REST client for Chrome Web Store API V1_1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Chrome Web Store API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-chromewebstore_v1_1/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 8 months ago)
- Last Synced: 2026-05-15T05:04:27.653Z (about 1 month ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 520 Total
-
Rankings:
- Dependent packages count: 14.23%
- Dependent repos count: 43.588%
- Average: 50.145%
- Downloads: 92.617%
- Maintainers (1)
rubygems.org: google-apis-areainsights_v1
This is the simple REST client for Places Aggregate API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Places Aggregate API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-areainsights_v1/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published 12 months ago)
- Last Synced: 2026-06-12T02:31:47.000Z (4 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,886 Total
-
Rankings:
- Dependent packages count: 14.534%
- Dependent repos count: 44.518%
- Average: 50.612%
- Downloads: 92.782%
- Maintainers (1)
rubygems.org: google-apis-authorizedbuyersmarketplace_v1alpha
This is the simple REST client for Authorized Buyers Marketplace API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Authorized Buyers Marketplace API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-authorizedbuyersmarketplace_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.12.0 (published about 2 months ago)
- Last Synced: 2026-06-07T20:32:04.222Z (9 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,303 Total
-
Rankings:
- Dependent packages count: 14.707%
- Dependent repos count: 45.048%
- Average: 50.841%
- Downloads: 92.769%
- Maintainers (1)
rubygems.org: google-apis-css_v1
This is the simple REST client for CSS API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the CSS API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-css_v1/
- Licenses: Apache-2.0
- Latest release: 0.13.0 (published 3 months ago)
- Last Synced: 2026-06-11T04:46:50.491Z (5 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,949 Total
-
Rankings:
- Dependent packages count: 14.707%
- Dependent repos count: 45.048%
- Average: 50.842%
- Downloads: 92.77%
- Maintainers (1)
rubygems.org: google-apis-dataportability_v1
This is the simple REST client for Data Portability API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Data Portability API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-dataportability_v1/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published 2 days ago)
- Last Synced: 2026-06-14T13:33:38.643Z (2 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,082 Total
-
Rankings:
- Dependent packages count: 15.36%
- Dependent repos count: 47.651%
- Average: 53.705%
- Downloads: 98.105%
- Maintainers (1)
rubygems.org: google-apis-apphub_v1alpha
This is the simple REST client for App Hub API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the App Hub API, but note that some services may provide a separate modern client that is easier to use.
- Homepage: https://github.com/google/google-api-ruby-client
- Documentation: http://www.rubydoc.info/gems/google-apis-apphub_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.16.0 (published 8 months ago)
- Last Synced: 2026-05-15T18:45:46.125Z (about 1 month ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,498 Total
-
Rankings:
- Dependent packages count: 15.734%
- Dependent repos count: 48.812%
- Average: 54.619%
- Downloads: 99.31%
- Maintainers (1)
Dependencies
- actions/checkout v2 composite
- ruby/setup-ruby v1 composite
- actions/checkout v2 composite
- ruby/setup-ruby v1 composite
- actions/checkout v2 composite
- ruby/setup-ruby v1 composite
- gems ~> 1.2
- rake ~> 13.0
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.4, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.4, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.4, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.4, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.4, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core ~> 0.1
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core ~> 0.1
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core ~> 0.1
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core ~> 0.1
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
- bundler >= 1.17 development
- jruby-openssl >= 0 development
- opencensus ~> 0.5 development
- rake >= 12.0 development
- redcarpet ~> 3.5 development
- rspec ~> 3.9 development
- yard ~> 0.9, >= 0.9.25 development
- google-apis-core >= 0.9.1, < 2.a
Score: 33.06131928900921