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 rack rspec rubygems sinatra marshalling rubocop ruby-gem
Last synced: 43 minutes 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-04-26T10:54:47.000Z (4 days ago)
- Last Synced: 2026-04-30T00:02:21.901Z (about 23 hours ago)
- Language: Ruby
- Homepage:
- Size: 3.98 GB
- Stars: 2,875
- Watchers: 113
- Forks: 885
- Open Issues: 60
- 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: about 19 hours ago
Total Commits: 25,592
Total Committers: 152
Avg Commits per committer: 168.368
Development Distribution Score (DDS): 0.327
Commits in past year: 3,653
Committers in past year: 10
Avg Commits per committer in past year: 365.3
Development Distribution Score (DDS) in past year: 0.007
| Name | Commits | |
|---|---|---|
| yoshi-code-bot | 7****t | 17230 |
| 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 |
| Volker Zöpfel | v****r@z****e | 28 |
| Neha Bajaj | b****7 | 24 |
| release-please[bot] | 5****] | 23 |
| 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 |
| Simone Carletti | w****s@w****t | 9 |
| WhiteSource Renovate | b****t@r****m | 9 |
| Tim Emiola | t****a@g****m | 9 |
| joker1007 | k****t@g****m | 8 |
| Graham Paye | g****8@g****m | 8 |
| mattpok@google.com | m****k@g****m@c****f | 8 |
| Ruslan Korolev | r****1@g****m | 7 |
| sanemat | o****n@g****m | 6 |
| Ethan | e****n@m****a | 6 |
| Graham Paye | p****e@g****m | 6 |
| tknzk | t****k@g****m | 5 |
| Shubhangi Singh | s****n@g****m | 5 |
| André Andreassa | a****a | 5 |
| Michael C. Beck | m****k@q****m | 5 |
| and 122 more... | ||
Committer domains:
- google.com: 28
- yahoo.co.jp: 2
- travelingnuker.com: 1
- amitree.com: 1
- smartly.io: 1
- sumavisos.com: 1
- sporkmonger.com: 1
- neighborland.com: 1
- maestrodev.com: 1
- nevir.net: 1
- yob.id.au: 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
- ivyevans.net: 1
- shopify.com: 1
- jonathansoifer.com: 1
- stanford.edu: 1
- terena.org: 1
- dillonkearns.com: 1
- livelinktechnology.net: 1
- bootstraponline.com: 1
- peterhiggins.org: 1
- papkovskiy.com: 1
- wawra.co.uk: 1
- drei.one: 1
- qslw.com: 1
- oscardelben.com: 1
- syrec.org: 1
- simplysoft.ch: 1
- w3fu.com: 1
- sergey-ponomarev.ru: 1
- zendesk.com: 1
- absalt.com: 1
Issue and Pull Request metadata
Last synced: 2 days ago
Total issues: 128
Total pull requests: 13,583
Average time to close issues: 7 months
Average time to close pull requests: about 18 hours
Total issue authors: 85
Total pull request authors: 47
Average comments per issue: 1.77
Average comments per pull request: 0.09
Merged pull request: 12,166
Bot issues: 3
Bot pull requests: 34
Past year issues: 13
Past year pull requests: 3,460
Past year average time to close issues: 8 minutes
Past year average time to close pull requests: about 20 hours
Past year issue authors: 8
Past year pull request authors: 12
Past year average comments per issue: 0.31
Past year average comments per pull request: 0.08
Past year merged pull request: 3,044
Past year bot issues: 0
Past year bot pull requests: 11
Top Issue Authors
- yoshi-code-bot (40)
- monkeyWzr (2)
- yahonda (2)
- failure-checker[bot] (2)
- thomaswitt (2)
- alexcastrodev (1)
- cwant (1)
- menporulporiayalan (1)
- pmcam (1)
- Set27 (1)
- talothman (1)
- dazuma (1)
- katamotokosuke (1)
- jonasmora (1)
- javierjulio (1)
Top Pull Request Authors
- yoshi-code-bot (13,369)
- dazuma (66)
- release-please[bot] (31)
- yoshi-automation (22)
- aandreassa (12)
- shubhangi-google (10)
- 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,441)
- automerge: exact (2,597)
- automerge (2,448)
- cla: yes (26)
- autorelease: pending (18)
- autorelease: published (9)
- do not merge (6)
- autorelease: tagged (4)
- samples (4)
- kokoro:run (1)
- bug (1)
- cla: no (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 354,265,197 total
- Total docker downloads: 3,140,099,593
- Total dependent packages: 2 (may contain duplicates)
- Total dependent repositories: 472 (may contain duplicates)
- Total versions: 4,377
- Total maintainers: 1
gem.coop: google-apis-storage_v1
This is the simple REST client for Cloud Storage JSON 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 Storage JSON 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-storage_v1/
- Licenses: Apache-2.0
- Latest release: 0.62.0 (published 4 days ago)
- Last Synced: 2026-04-29T14:34:17.248Z (1 day ago)
- Versions: 62
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 183,086,428 Total
- Docker Downloads: 510,285,910
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.051%
- Downloads: 0.152%
- Maintainers (1)
gem.coop: google-apis-dns_v1
This is the simple REST client for Cloud DNS 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 DNS 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-dns_v1/
- Licenses: Apache-2.0
- Latest release: 0.52.0 (published 11 days ago)
- Last Synced: 2026-04-29T09:32:09.059Z (1 day ago)
- Versions: 52
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 31,634,417 Total
- Docker Downloads: 446,684,758
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.243%
- Docker downloads count: 0.252%
- Downloads: 0.719%
- Maintainers (1)
gem.coop: google-apis-cloudresourcemanager_v1
This is the simple REST client for Cloud Resource 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 Cloud Resource 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-cloudresourcemanager_v1/
- Licenses: Apache-2.0
- Latest release: 0.44.0 (published 11 months ago)
- Last Synced: 2026-04-29T18:31:03.453Z (1 day ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,240,998 Total
- Docker Downloads: 434,111,021
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.303%
- Docker downloads count: 0.351%
- Downloads: 0.861%
- Maintainers (1)
gem.coop: google-apis-cloudbilling_v1
This is the simple REST client for Cloud Billing 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 Billing 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-cloudbilling_v1/
- Licenses: Apache-2.0
- Latest release: 0.39.0 (published 12 months ago)
- Last Synced: 2026-04-29T16:41:43.076Z (1 day ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,895,993 Total
- Docker Downloads: 434,111,021
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.308%
- Docker downloads count: 0.351%
- Downloads: 0.88%
- Maintainers (1)
gem.coop: google-apis-calendar_v3
This is the simple REST client for Calendar 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 Calendar 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-calendar_v3/
- Licenses: Apache-2.0
- Latest release: 0.53.0 (published about 2 months ago)
- Last Synced: 2026-04-29T18:31:16.975Z (1 day ago)
- Versions: 53
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,014,788 Total
- Docker Downloads: 27
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.52%
- Downloads: 1.56%
- Maintainers (1)
gem.coop: google-apis-identitytoolkit_v3
This is the simple REST client for Google Identity Toolkit 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 Google 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_v3/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published 12 months ago)
- Last Synced: 2026-04-29T17:31:32.793Z (1 day ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,772,154 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.638%
- Downloads: 1.914%
- Maintainers (1)
gem.coop: google-apis-oauth2_v2
This is the simple REST client for Google OAuth2 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 Google OAuth2 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-oauth2_v2/
- Licenses: Apache-2.0
- Latest release: 0.19.0 (published 12 months ago)
- Last Synced: 2026-04-28T20:01:48.194Z (2 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,900,374 Total
- Docker Downloads: 27
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.219%
- Downloads: 2.169%
- Docker downloads count: 2.709%
- Maintainers (1)
gem.coop: google-apis-analytics_v3
This is the simple REST client for Google Analytics 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 Google Analytics 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-analytics_v3/
- Licenses: Apache-2.0
- Latest release: 0.17.0 (published 12 months ago)
- Last Synced: 2026-04-29T19:30:58.662Z (1 day ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 664,343 Total
- Docker Downloads: 13
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.279%
- Downloads: 3.836%
- Maintainers (1)
rubygems.org: google-apis-dns_v1
This is the simple REST client for Cloud DNS 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 DNS 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-dns_v1/
- Licenses: Apache-2.0
- Latest release: 0.52.0 (published 11 days ago)
- Last Synced: 2026-04-29T19:00:36.363Z (1 day ago)
- Versions: 52
- Dependent Packages: 2
- Dependent Repositories: 407
- Downloads: 31,640,217 Total
- Docker Downloads: 446,684,758
-
Rankings:
- Docker downloads count: 0.327%
- Forks count: 0.473%
- Stargazers count: 0.69%
- Downloads: 1.101%
- Average: 1.568%
- Dependent repos count: 1.645%
- Dependent packages count: 5.17%
- Maintainers (1)
gem.coop: 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 12 months ago)
- Last Synced: 2026-04-29T18:01:03.164Z (1 day ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 310,813 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.801%
- Downloads: 5.403%
- Maintainers (1)
gem.coop: google-apis-compute_beta
This is the simple REST client for Compute Engine API Beta. 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_beta/
- Licenses: Apache-2.0
- Latest release: 0.137.0 (published 4 days ago)
- Last Synced: 2026-04-29T18:32:00.268Z (1 day ago)
- Versions: 137
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 142,286 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.725%
- Downloads: 8.175%
- Maintainers (1)
gem.coop: google-apis-cloudresourcemanager_v3
This is the simple REST client for Cloud Resource Manager 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 Resource 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-cloudresourcemanager_v3/
- Licenses: Apache-2.0
- Latest release: 0.61.0 (published about 1 month ago)
- Last Synced: 2026-04-28T21:03:49.610Z (2 days ago)
- Versions: 61
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 97,966 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.368%
- Downloads: 10.104%
- 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 6 months ago)
- Last Synced: 2026-04-26T05:47:09.241Z (5 days ago)
- Versions: 36
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 86,814 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.56%
- Downloads: 10.679%
- Maintainers (1)
gem.coop: google-apis-securitycenter_v1beta1
This is the simple REST client for Security Command Center 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 Security Command Center 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-securitycenter_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.105.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:38.776Z (4 days ago)
- Versions: 105
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 83,770 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.747%
- Downloads: 11.242%
- Maintainers (1)
gem.coop: google-apis-healthcare_v1beta1
This is the simple REST client for Cloud Healthcare 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 Healthcare 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-healthcare_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.97.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:37.594Z (4 days ago)
- Versions: 97
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 79,141 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.856%
- Downloads: 11.568%
- Maintainers (1)
gem.coop: google-apis-youtube_analytics_v2
This is the simple REST client for YouTube Analytics 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 YouTube Analytics 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-youtube_analytics_v2/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published 12 months ago)
- Last Synced: 2026-04-26T10:42:00.726Z (5 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 75,713 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.992%
- Downloads: 11.975%
- Maintainers (1)
rubygems.org: google-apis-container_v1
This is the simple REST client for Kubernetes Engine 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 Kubernetes 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-container_v1/
- Licenses: Apache-2.0
- Latest release: 0.114.0 (published 2 months ago)
- Last Synced: 2026-04-28T21:03:56.066Z (2 days ago)
- Versions: 114
- Dependent Packages: 0
- Dependent Repositories: 21
- Downloads: 20,916,752 Total
- Docker Downloads: 434,111,021
-
Rankings:
- Docker downloads count: 0.433%
- Forks count: 0.486%
- Stargazers count: 0.701%
- Downloads: 1.44%
- Average: 4.013%
- Dependent repos count: 5.233%
- Dependent packages count: 15.783%
- Maintainers (1)
rubygems.org: google-apis-serviceusage_v1
This is the simple REST client for Service Usage 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 Service Usage 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-serviceusage_v1/
- Licenses: Apache-2.0
- Latest release: 0.76.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.315Z (4 days ago)
- Versions: 76
- Dependent Packages: 0
- Dependent Repositories: 21
- Downloads: 20,884,759 Total
- Docker Downloads: 434,111,021
-
Rankings:
- Docker downloads count: 0.434%
- Forks count: 0.474%
- Stargazers count: 0.69%
- Downloads: 1.484%
- Average: 4.016%
- Dependent repos count: 5.239%
- Dependent packages count: 15.776%
- Maintainers (1)
gem.coop: google-apis-servicenetworking_v1
This is the simple REST client for Service Networking 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 Service Networking 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-servicenetworking_v1/
- Licenses: Apache-2.0
- Latest release: 0.84.0 (published 7 months ago)
- Last Synced: 2026-04-26T10:23:58.825Z (5 days ago)
- Versions: 84
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 68,355 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.195%
- Downloads: 12.585%
- 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.67.0 (published about 1 month ago)
- Last Synced: 2026-04-28T21:03:51.154Z (2 days ago)
- Versions: 67
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 61,774 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.416%
- Downloads: 13.248%
- Maintainers (1)
gem.coop: google-apis-redis_v1beta1
This is the simple REST client for Google Cloud Memorystore for Redis 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 Google Cloud Memorystore for Redis 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-redis_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.80.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:38.311Z (4 days ago)
- Versions: 80
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 62,976 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.521%
- Downloads: 13.564%
- Maintainers (1)
gem.coop: google-apis-serviceconsumermanagement_v1beta1
This is the simple REST client for Service Consumer 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 Service Consumer 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-serviceconsumermanagement_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.67.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:38.782Z (4 days ago)
- Versions: 67
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 55,369 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.845%
- Downloads: 14.534%
- Maintainers (1)
gem.coop: google-apis-recommender_v1beta1
This is the simple REST client for Recommender 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 Recommender 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-recommender_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.48.0 (published 2 months ago)
- Last Synced: 2026-04-26T00:48:05.227Z (5 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 52,464 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.0%
- Downloads: 14.999%
- Maintainers (1)
rubygems.org: google-apis-youtube_v3
This is the simple REST client for YouTube Data API v3 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 YouTube Data API v3, 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-youtube_v3/
- Licenses: Apache-2.0
- Latest release: 0.64.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:35.940Z (4 days ago)
- Versions: 64
- Dependent Packages: 0
- Dependent Repositories: 15
- Downloads: 802,250 Total
-
Rankings:
- Forks count: 0.485%
- Stargazers count: 0.701%
- Average: 5.81%
- Dependent repos count: 6.037%
- Downloads: 6.044%
- Dependent packages count: 15.782%
- Maintainers (1)
gem.coop: google-apis-area120tables_v1alpha1
This is the simple REST client for Area120 Tables 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 Area120 Tables 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-area120tables_v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.25.0 (published 12 months ago)
- Last Synced: 2026-04-26T20:01:44.148Z (4 days ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,199 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.885%
- Downloads: 20.655%
- Maintainers (1)
rubygems.org: google-apis-people_v1
This is the simple REST client for People 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 People 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-people_v1/
- Licenses: Apache-2.0
- Latest release: 0.42.0 (published 5 months ago)
- Last Synced: 2026-04-26T20:01:42.702Z (4 days ago)
- Versions: 42
- Dependent Packages: 0
- Dependent Repositories: 2
- Downloads: 1,113,803 Total
- Docker Downloads: 16
-
Rankings:
- Forks count: 0.479%
- Stargazers count: 0.695%
- Downloads: 4.841%
- Average: 7.449%
- Dependent repos count: 15.451%
- Dependent packages count: 15.779%
- Maintainers (1)
gem.coop: google-apis-cloudfunctions_v2
This is the simple REST client for Cloud Functions 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 Functions 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-cloudfunctions_v2/
- Licenses: Apache-2.0
- Latest release: 0.61.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:03:43.179Z (2 days ago)
- Versions: 61
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 32,389 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.66%
- Downloads: 22.979%
- Maintainers (1)
gem.coop: google-apis-androiddeviceprovisioning_v1
This is the simple REST client for Android Device Provisioning Partner 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 Android Device Provisioning Partner 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-androiddeviceprovisioning_v1/
- Licenses: Apache-2.0
- Latest release: 0.29.0 (published 12 months ago)
- Last Synced: 2026-04-28T21:03:52.768Z (2 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 29,500 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.688%
- Downloads: 23.064%
- Maintainers (1)
gem.coop: google-apis-webfonts_v1
This is the simple REST client for Web Fonts Developer 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 Web Fonts Developer 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-webfonts_v1/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published 7 months ago)
- Last Synced: 2026-04-29T16:49:57.353Z (1 day ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 31,613 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.699%
- Downloads: 23.098%
- Maintainers (1)
gem.coop: google-apis-tpu_v2alpha1
This is the simple REST client for Cloud TPU API V2alpha1. 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 TPU 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-tpu_v2alpha1/
- Licenses: Apache-2.0
- Latest release: 0.49.0 (published 3 months ago)
- Last Synced: 2026-04-26T12:17:47.383Z (4 days ago)
- Versions: 49
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,184 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.727%
- Downloads: 23.18%
- Maintainers (1)
gem.coop: google-apis-smartdevicemanagement_v1
This is the simple REST client for Smart Device Management 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 Smart Device 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-smartdevicemanagement_v1/
- Licenses: Apache-2.0
- Latest release: 0.27.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:39.577Z (4 days ago)
- Versions: 27
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 28,377 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.955%
- Downloads: 23.864%
- Maintainers (1)
rubygems.org: google-apis-translate_v2
This is the simple REST client for Google Cloud Translation 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 Google Cloud Translation 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-translate_v2/
- Licenses: Apache-2.0
- Latest release: 0.17.0 (published 12 months ago)
- Last Synced: 2026-04-26T07:03:50.173Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 3
- Downloads: 383,264 Total
-
Rankings:
- Forks count: 0.479%
- Stargazers count: 0.695%
- Average: 8.274%
- Downloads: 11.775%
- Dependent repos count: 12.645%
- Dependent packages count: 15.777%
- Maintainers (1)
rubygems.org: google-apis-secretmanager_v1
This is the simple REST client for Secret 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 Secret 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-secretmanager_v1/
- Licenses: Apache-2.0
- Latest release: 0.53.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:31.838Z (4 days ago)
- Versions: 53
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 2,048,501 Total
-
Rankings:
- Forks count: 0.478%
- Stargazers count: 0.694%
- Downloads: 2.941%
- Average: 8.323%
- Dependent packages count: 15.777%
- Dependent repos count: 21.723%
- Maintainers (1)
gem.coop: google-apis-certificatemanager_v1
This is the simple REST client for Certificate 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 Certificate 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-certificatemanager_v1/
- Licenses: Apache-2.0
- Latest release: 0.40.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:03:56.942Z (2 days ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,718 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.051%
- Downloads: 27.153%
- Maintainers (1)
gem.coop: google-apis-datamigration_v1beta1
This is the simple REST client for Database Migration 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 Database Migration 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-datamigration_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.41.0 (published 4 days ago)
- Last Synced: 2026-04-26T20:01:45.282Z (4 days ago)
- Versions: 41
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 38,435 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.151%
- Downloads: 27.453%
- Maintainers (1)
gem.coop: google-apis-aiplatform_v1beta1
This is the simple REST client for Vertex AI 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 Vertex AI 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-aiplatform_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.78.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:03:57.485Z (2 days ago)
- Versions: 78
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 31,706 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.219%
- Downloads: 27.656%
- Maintainers (1)
gem.coop: google-apis-digitalassetlinks_v1
This is the simple REST client for Digital Asset Links 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 Digital Asset Links 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-digitalassetlinks_v1/
- Licenses: Apache-2.0
- Latest release: 0.22.0 (published 9 months ago)
- Last Synced: 2026-04-28T21:03:19.437Z (2 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,590 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.289%
- Downloads: 27.867%
- Maintainers (1)
rubygems.org: google-apis-classroom_v1
This is the simple REST client for Google Classroom 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 Classroom 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-classroom_v1/
- Licenses: Apache-2.0
- Latest release: 0.52.0 (published 11 days ago)
- Last Synced: 2026-04-28T21:03:57.781Z (2 days ago)
- Versions: 52
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 295,584 Total
-
Rankings:
- Forks count: 0.474%
- Stargazers count: 0.69%
- Downloads: 8.294%
- Average: 9.392%
- Dependent packages count: 15.773%
- Dependent repos count: 21.729%
- 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-04-16T15:04:03.930Z (14 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,148 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 9.891%
- Downloads: 29.674%
- Maintainers (1)
gem.coop: google-apis-metastore_v1
This is the simple REST client for Dataproc Metastore 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 Dataproc Metastore 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-metastore_v1/
- Licenses: Apache-2.0
- Latest release: 0.45.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.784Z (4 days ago)
- Versions: 45
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,711 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 10.844%
- Downloads: 32.532%
- Maintainers (1)
rubygems.org: google-apis-sts_v1
This is the simple REST client for Security Token Service 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 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_v1/
- Licenses: Apache-2.0
- Latest release: 0.46.0 (published about 1 month ago)
- Last Synced: 2026-04-26T02:15:44.336Z (5 days ago)
- Versions: 46
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 51,696 Total
-
Rankings:
- Forks count: 0.475%
- Stargazers count: 0.691%
- Average: 11.652%
- Dependent packages count: 15.775%
- Downloads: 19.591%
- Dependent repos count: 21.728%
- Maintainers (1)
gem.coop: google-apis-alloydb_v1
This is the simple REST client for AlloyDB 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 AlloyDB 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-alloydb_v1/
- Licenses: Apache-2.0
- Latest release: 0.58.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:03:55.042Z (2 days ago)
- Versions: 58
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,125 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 11.948%
- Downloads: 35.845%
- Maintainers (1)
gem.coop: google-apis-gkeonprem_v1
This is the simple REST client for GKE On-Prem 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 GKE On-Prem 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-gkeonprem_v1/
- Licenses: Apache-2.0
- Latest release: 0.38.0 (published 4 days ago)
- Last Synced: 2026-04-30T07:32:42.528Z (about 15 hours ago)
- Versions: 38
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 18,767 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.217%
- Downloads: 36.651%
- Maintainers (1)
gem.coop: google-apis-policyanalyzer_v1beta1
This is the simple REST client for Policy Analyzer 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 Policy Analyzer 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-policyanalyzer_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published 12 months ago)
- Last Synced: 2026-04-26T20:01:45.304Z (4 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,720 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 14.399%
- Downloads: 43.198%
- Maintainers (1)
gem.coop: google-apis-notebooks_v2
This is the simple REST client for Notebooks 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 Notebooks 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-notebooks_v2/
- Licenses: Apache-2.0
- Latest release: 0.32.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.800Z (4 days ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,731 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 14.737%
- Downloads: 44.211%
- Maintainers (1)
rubygems.org: google-apis-documentai_v1
This is the simple REST client for Cloud Document AI 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 Document AI 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-documentai_v1/
- Licenses: Apache-2.0
- Latest release: 0.117.0 (published 11 days ago)
- Last Synced: 2026-04-26T03:45:37.252Z (5 days ago)
- Versions: 117
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 103,603 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Downloads: 13.892%
- Average: 15.495%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-run_v1
This is the simple REST client for Cloud Run 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 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_v1/
- Licenses: Apache-2.0
- Latest release: 0.103.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:30.185Z (4 days ago)
- Versions: 103
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 109,125 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Downloads: 14.277%
- Average: 15.626%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-cloudbuild_v1
This is the simple REST client for Cloud Build 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 Build 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-cloudbuild_v1/
- Licenses: Apache-2.0
- Latest release: 0.79.0 (published about 2 months ago)
- Last Synced: 2026-04-26T12:47:08.150Z (4 days ago)
- Versions: 79
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 79,733 Total
-
Rankings:
- Forks count: 0.452%
- Stargazers count: 0.63%
- Downloads: 14.791%
- Average: 15.672%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-spanner_v1
This is the simple REST client for Cloud Spanner 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 Spanner 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-spanner_v1/
- Licenses: Apache-2.0
- Latest release: 0.52.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.333Z (4 days ago)
- Versions: 52
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 61,739 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Downloads: 15.724%
- Average: 15.922%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-redis_v1
This is the simple REST client for Google Cloud Memorystore for Redis 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 Cloud Memorystore for Redis 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-redis_v1/
- Licenses: Apache-2.0
- Latest release: 0.89.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:33.057Z (4 days ago)
- Versions: 89
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 76,530 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 16.098%
- Downloads: 16.908%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-serviceusage_v1beta1
This is the simple REST client for Service Usage 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 Service Usage 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-serviceusage_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.76.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:34.076Z (4 days ago)
- Versions: 76
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 71,248 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 16.504%
- Downloads: 18.797%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-containeranalysis_v1beta1
This is the simple REST client for Container Analysis 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 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_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.74.0 (published about 1 month ago)
- Last Synced: 2026-04-26T20:01:47.267Z (4 days ago)
- Versions: 74
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 69,908 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.805%
- Dependent packages count: 15.706%
- Average: 16.596%
- Downloads: 19.083%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-servicenetworking_v1beta
This is the simple REST client for Service Networking 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 Service Networking 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-servicenetworking_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.72.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:31.830Z (4 days ago)
- Versions: 72
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 59,402 Total
-
Rankings:
- Forks count: 0.539%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 16.663%
- Downloads: 19.573%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-serviceconsumermanagement_v1
This is the simple REST client for Service Consumer Management 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 Service Consumer 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-serviceconsumermanagement_v1/
- Licenses: Apache-2.0
- Latest release: 0.67.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:30.183Z (4 days ago)
- Versions: 67
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 57,420 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 16.764%
- Downloads: 20.101%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-servicedirectory_v1beta1
This is the simple REST client for Service Directory 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 Service Directory 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-servicedirectory_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.47.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:33.055Z (4 days ago)
- Versions: 47
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 46,512 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 16.974%
- Downloads: 21.119%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-sqladmin_v1
This is the simple REST client for Cloud SQL 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 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_v1/
- Licenses: Apache-2.0
- Latest release: 0.96.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:35.738Z (4 days ago)
- Versions: 96
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 78,512 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 17.016%
- Downloads: 21.495%
- 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.40.0 (published 7 months ago)
- Last Synced: 2026-04-26T11:24:08.191Z (4 days ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 43,118 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-appengine_v1alpha
This is the simple REST client for App Engine Admin 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 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_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.47.0 (published 4 days ago)
- Last Synced: 2026-04-26T20:01:47.729Z (4 days ago)
- Versions: 47
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 44,704 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 17.286%
- Downloads: 22.849%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-texttospeech_v1beta1
This is the simple REST client for Cloud Text-to-Speech 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 Text-to-Speech 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-texttospeech_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.44.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:35.752Z (4 days ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 64,378 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 17.348%
- Downloads: 23.156%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-doubleclickbidmanager_v1_1
This is the simple REST client for DoubleClick Bid Manager 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 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_1/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published over 4 years ago)
- Last Synced: 2026-04-26T20:01:45.328Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,808 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Average: 17.467%
- Downloads: 23.449%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-binaryauthorization_v1
This is the simple REST client for Binary Authorization 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 Binary Authorization 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-binaryauthorization_v1/
- Licenses: Apache-2.0
- Latest release: 0.42.0 (published 12 months ago)
- Last Synced: 2026-04-28T21:03:28.281Z (2 days ago)
- Versions: 42
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 40,706 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 17.531%
- Downloads: 23.905%
- 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 4 days ago)
- Last Synced: 2026-04-26T11:30:34.687Z (4 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 36,297 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)
gem.coop: google-apis-policysimulator_v1beta
This is the simple REST client for Policy Simulator 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 Policy Simulator 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-policysimulator_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.23.0 (published about 1 month ago)
- Last Synced: 2026-04-29T19:01:39.057Z (1 day ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10,701 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 17.709%
- Downloads: 53.126%
- Maintainers (1)
rubygems.org: google-apis-firebasehosting_v1beta1
This is the simple REST client for Firebase Hosting 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 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_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.32.0 (published 5 months ago)
- Last Synced: 2026-04-26T10:50:13.693Z (4 days ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 42,873 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.805%
- Dependent packages count: 15.706%
- Average: 17.827%
- Downloads: 25.235%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: 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.36.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:28.871Z (4 days ago)
- Versions: 36
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 35,311 Total
-
Rankings:
- Forks count: 0.549%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 17.99%
- Downloads: 26.199%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-workflows_v1
This is the simple REST client for Workflows 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 Workflows 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-workflows_v1/
- Licenses: Apache-2.0
- Latest release: 0.49.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.302Z (4 days ago)
- Versions: 49
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 43,011 Total
-
Rankings:
- Forks count: 0.465%
- Stargazers count: 0.63%
- Dependent packages count: 15.706%
- Average: 18.083%
- Downloads: 26.833%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-clouderrorreporting_v1beta1
This is the simple REST client for Error Reporting 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 Error 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-clouderrorreporting_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.31.0 (published 12 months ago)
- Last Synced: 2026-04-26T04:07:06.434Z (5 days ago)
- Versions: 31
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 35,231 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.887%
- Dependent packages count: 15.706%
- Average: 18.11%
- Downloads: 26.57%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-sourcerepo_v1
This is the simple REST client for Cloud Source Repositories 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 Source Repositories 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-sourcerepo_v1/
- Licenses: Apache-2.0
- Latest release: 0.28.0 (published almost 2 years ago)
- Last Synced: 2026-04-29T18:18:51.040Z (1 day ago)
- Versions: 28
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 29,918 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.784%
- Dependent packages count: 15.706%
- Average: 18.686%
- Downloads: 29.552%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-youtubereporting_v1
This is the simple REST client for YouTube Reporting 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 YouTube 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-youtubereporting_v1/
- Licenses: Apache-2.0
- Latest release: 0.21.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.361Z (4 days ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 48,866 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Dependent packages count: 15.706%
- Average: 18.813%
- Downloads: 30.21%
- 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 2 months ago)
- Last Synced: 2026-04-28T21:03:24.268Z (2 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,373 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-firebasestorage_v1beta
This is the simple REST client for Cloud Storage for Firebase 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 Storage for Firebase 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-firebasestorage_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.26.0 (published 6 months ago)
- Last Synced: 2026-04-29T18:03:33.798Z (1 day ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 27,373 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.85%
- Dependent packages count: 15.706%
- Average: 19.305%
- Downloads: 32.581%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-localservices_v1
This is the simple REST client for Local 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 Local 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-localservices_v1/
- Licenses: Apache-2.0
- Latest release: 0.21.0 (published 12 months ago)
- Last Synced: 2026-04-17T13:20:27.729Z (13 days ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 24,591 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.887%
- Dependent packages count: 15.706%
- Average: 19.487%
- Downloads: 33.455%
- 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.83.0 (published about 1 month ago)
- Last Synced: 2026-04-26T02:31:49.114Z (5 days ago)
- Versions: 83
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 51,576 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-networkservices_v1
This is the simple REST client for Network 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 Network 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-networkservices_v1/
- Licenses: Apache-2.0
- Latest release: 0.70.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:28.853Z (4 days ago)
- Versions: 70
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 43,886 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 20.234%
- Downloads: 37.45%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apis-bigquerydatapolicy_v2
This is the simple REST client for BigQuery Data Policy 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 Data Policy 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-bigquerydatapolicy_v2/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 6 months ago)
- Last Synced: 2026-04-26T20:01:45.164Z (4 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 280 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Forks count: 0.527%
- Stargazers count: 0.708%
- Average: 20.241%
- Downloads: 99.972%
- Maintainers (1)
rubygems.org: google-apis-poly_v1
This is the simple REST client for Poly 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 Poly 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-poly_v1/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published over 2 years ago)
- Last Synced: 2026-04-26T20:01:48.603Z (4 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,154 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.784%
- Dependent packages count: 15.706%
- Average: 20.532%
- Downloads: 38.78%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-apis-playintegrity_v1
This is the simple REST client for Google Play Integrity 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 Play Integrity 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-playintegrity_v1/
- Licenses: Apache-2.0
- Latest release: 0.34.0 (published 8 months ago)
- Last Synced: 2026-04-26T00:02:32.933Z (5 days ago)
- Versions: 34
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 431,632 Total
-
Rankings:
- Forks count: 0.607%
- Stargazers count: 0.759%
- Dependent packages count: 15.706%
- Average: 20.571%
- Downloads: 39.002%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apis-merchantapi_reports_v1beta
This is the simple REST client for Merchant API ReportsV1beta. 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_reports_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.12.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.789Z (4 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,073 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 21.462%
- Downloads: 64.387%
- Maintainers (1)
rubygems.org: google-apis-networksecurity_v1
This is the simple REST client for Network Security 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 Network Security 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-networksecurity_v1/
- Licenses: Apache-2.0
- Latest release: 0.51.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:28.494Z (4 days ago)
- Versions: 51
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 28,924 Total
-
Rankings:
- Forks count: 0.519%
- Stargazers count: 0.714%
- Dependent packages count: 15.706%
- Average: 22.744%
- Dependent repos count: 46.782%
- Downloads: 50.001%
- 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 about 2 months ago)
- Last Synced: 2026-04-26T20:01:47.060Z (4 days ago)
- Versions: 38
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 23,682 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)
rubygems.org: google-apis-businessprofileperformance_v1
This is the simple REST client for Business Profile Performance 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 Business Profile Performance 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-businessprofileperformance_v1/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published 12 months ago)
- Last Synced: 2026-04-25T21:16:49.510Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 109,107 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.946%
- Dependent packages count: 15.706%
- Average: 27.391%
- Dependent repos count: 46.779%
- Downloads: 72.793%
- 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 12 months ago)
- Last Synced: 2026-04-26T11:13:38.137Z (4 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,211 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 28.539%
- Downloads: 85.618%
- Maintainers (1)
rubygems.org: google-apis-displayvideo_v2
This is the simple REST client for Display & Video 360 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 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_v2/
- Licenses: Apache-2.0
- Latest release: 0.58.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:04:03.482Z (2 days ago)
- Versions: 58
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,379 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.935%
- Dependent packages count: 15.706%
- Average: 30.472%
- Dependent repos count: 46.779%
- Downloads: 88.208%
- Maintainers (1)
rubygems.org: google-apis-discoveryengine_v1beta
This is the simple REST client for Discovery Engine 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 Discovery 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-discoveryengine_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.103.0 (published about 1 month ago)
- Last Synced: 2026-04-26T20:01:48.053Z (4 days ago)
- Versions: 103
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 42,499 Total
-
Rankings:
- Stargazers count: 0.677%
- Forks count: 0.716%
- Dependent packages count: 15.706%
- Average: 32.037%
- Dependent repos count: 46.779%
- Downloads: 96.307%
- Maintainers (1)
rubygems.org: google-apis-drivelabels_v2beta
This is the simple REST client for Drive Labels API V2beta. 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_v2beta/
- Licenses: Apache-2.0
- Latest release: 0.18.0 (published 9 months ago)
- Last Synced: 2026-04-26T20:01:43.930Z (4 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10,644 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.942%
- Dependent packages count: 15.706%
- Average: 32.328%
- Dependent repos count: 46.779%
- Downloads: 97.48%
- Maintainers (1)
rubygems.org: google-apis-workstations_v1beta
This is the simple REST client for Cloud Workstations 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 Workstations 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-workstations_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.48.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:36.382Z (4 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 23,142 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.935%
- Dependent packages count: 15.706%
- Average: 32.447%
- Dependent repos count: 46.779%
- Downloads: 98.082%
- Maintainers (1)
rubygems.org: google-apis-searchads360_v0
This is the simple REST client for Search Ads 360 Reporting API V0. 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 Ads 360 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-searchads360_v0/
- Licenses: Apache-2.0
- Latest release: 0.27.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:29.874Z (4 days ago)
- Versions: 27
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,584 Total
-
Rankings:
- Forks count: 0.734%
- Stargazers count: 0.932%
- Dependent packages count: 15.706%
- Average: 32.697%
- Dependent repos count: 46.779%
- Downloads: 99.334%
- Maintainers (1)
rubygems.org: google-apis-vpcaccess_v1beta1
This is the simple REST client for Serverless VPC Access 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 Serverless VPC 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-vpcaccess_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.20.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:35.751Z (4 days ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,475 Total
-
Rankings:
- Forks count: 0.732%
- Stargazers count: 0.93%
- Dependent packages count: 15.706%
- Average: 32.744%
- Dependent repos count: 46.779%
- Downloads: 99.574%
- 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 12 months ago)
- Last Synced: 2026-04-29T16:52:07.130Z (1 day ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,214 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-backupdr_v1
This is the simple REST client for Backup and DR Service 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 Backup and DR 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-backupdr_v1/
- Licenses: Apache-2.0
- Latest release: 0.54.0 (published 4 days ago)
- Last Synced: 2026-04-26T20:01:49.507Z (4 days ago)
- Versions: 54
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,624 Total
-
Rankings:
- Forks count: 0.473%
- Stargazers count: 0.688%
- Dependent packages count: 15.563%
- Average: 33.004%
- Dependent repos count: 48.876%
- Downloads: 99.42%
- Maintainers (1)
gem.coop: google-apis-searchads360_v23
This is the simple REST client for Search Ads 360 Reporting API V23. 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 Ads 360 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-searchads360_v23/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 11 days ago)
- Last Synced: 2026-04-20T12:40:53.903Z (10 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 112 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.251%
- Downloads: 99.754%
- Maintainers (1)
gem.coop: google-apis-ces_v1
This is the simple REST client for Gemini Enterprise for Customer Experience 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 Gemini Enterprise for Customer Experience 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-ces_v1/
- Licenses: Apache-2.0
- Latest release: 0.6.0 (published 4 days ago)
- Last Synced: 2026-04-26T20:01:47.478Z (4 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 863 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.305%
- Downloads: 99.915%
- Maintainers (1)
rubygems.org: google-apis-developerknowledge_v1alpha
This is the simple REST client for Developer Knowledge 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 Developer Knowledge 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-developerknowledge_v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 4 days ago)
- Last Synced: 2026-04-27T13:44:40.792Z (3 days ago)
- Versions: 1
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 109 Total
-
Rankings:
- Dependent packages count: 13.87%
- Dependent repos count: 42.481%
- Average: 49.661%
- Downloads: 92.633%
- Maintainers (1)
rubygems.org: google-apis-dataform_v1
This is the simple REST client for Dataform 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 Dataform 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-dataform_v1/
- Licenses: Apache-2.0
- Latest release: 0.7.0 (published 4 days ago)
- Last Synced: 2026-04-28T21:03:55.284Z (2 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,388 Total
-
Rankings:
- Dependent packages count: 14.205%
- Dependent repos count: 43.51%
- Average: 50.11%
- Downloads: 92.617%
- Maintainers (1)
rubygems.org: 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.7.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:29.637Z (4 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,599 Total
-
Rankings:
- Dependent packages count: 14.344%
- Dependent repos count: 43.938%
- Average: 50.344%
- Downloads: 92.752%
- Maintainers (1)
rubygems.org: google-apis-saasservicemgmt_v1beta1
This is the simple REST client for App Lifecycle Manager 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 App Lifecycle 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-saasservicemgmt_v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:35.756Z (4 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,709 Total
-
Rankings:
- Dependent packages count: 14.38%
- Dependent repos count: 44.048%
- Average: 50.391%
- Downloads: 92.744%
- Maintainers (1)
rubygems.org: google-apis-storagebatchoperations_v1
This is the simple REST client for Storage Batch Operations 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 Storage Batch Operations 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-storagebatchoperations_v1/
- Licenses: Apache-2.0
- Latest release: 0.15.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:34.679Z (4 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,981 Total
-
Rankings:
- Dependent packages count: 14.433%
- Dependent repos count: 44.211%
- Average: 50.458%
- Downloads: 92.73%
- Maintainers (1)
rubygems.org: google-apis-netapp_v1
This is the simple REST client for NetApp 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 NetApp 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-netapp_v1/
- Licenses: Apache-2.0
- Latest release: 0.28.0 (published 4 days ago)
- Last Synced: 2026-04-26T11:30:28.855Z (4 days ago)
- Versions: 28
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 8,665 Total
-
Rankings:
- Dependent packages count: 14.608%
- Dependent repos count: 44.745%
- Average: 50.713%
- Downloads: 92.787%
- 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 about 2 months ago)
- Last Synced: 2026-04-26T05:02:33.303Z (5 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,549 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_v1beta
This is the simple REST client for Data Portability 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 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_v1beta/
- Licenses: Apache-2.0
- Latest release: 0.17.0 (published 4 months ago)
- Last Synced: 2026-04-29T16:23:31.279Z (1 day ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,470 Total
-
Rankings:
- Dependent packages count: 15.72%
- Dependent repos count: 48.766%
- Average: 54.604%
- Downloads: 99.326%
- 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: 34.98276107904788