A summary of data about the Ruby ecosystem.

https://github.com/googleapis/google-cloud-ruby

Google Cloud Client Library for Ruby
https://github.com/googleapis/google-cloud-ruby

Keywords from Contributors

activejob activerecord mvc marshalling protobuf-runtime protoc protocol-buffers protocol-compiler rack rspec

Last synced: about 18 hours ago
JSON representation

Repository metadata

Google Cloud Client Library for Ruby

README.md

Google Cloud Ruby Clients

Idiomatic Ruby client libraries for
Google Cloud Platform APIs.

This repository includes client libraries for Google Cloud Platform services,
along with a selected set of Google services unrelated to the cloud platform.

What's here

Client library gems

Most directories each correspond to a client library RubyGem, including its
code, tests, gemspec, and documentation. Some client libraries also include
handwritten samples in the samples directory, and/or autogenerated samples
in the snippets directory.

Most client libraries in this repository are automatically generated by the
GAPIC Generator. A small
number are written and maintained by hand. You can identify a generated client
library by the presence of .OwlBot.yaml in the library directory. For the
most part, do not try to edit generated libraries by hand, because changes will
be overwritten by the code generator.

Other directories

A few directories include support files, including:

  • .github includes configuration for GitHub Actions and bots that help to
    maintain this repository.
  • .kokoro includes configuration for internal Google processes that help to
    maintain this repository.
  • .toys includes scripts for running CI, releases, and maintenance tasks.
  • acceptance and integration include shared fixtures for acceptance tests.
  • obsolete contains older libraries that are obsolete and no longer
    maintained.

GitHub facilities

Issues for client libraries hosted here can be filed in the
issues tab. However,
this is not an official support channel. If you have support questions, file a
support request through the normal Google support channels, or post questions
on a forum such as StackOverflow.

Pull requests are
welcome. Please see the section below on contributing.

Some maintenance tasks can be run in the
actions tab by
authorized personnel.

Using the client libraries

These client library RubyGems each include classes and methods that can be used
to make authenticated calls to specific Google APIs. Some libraries also
include additional convenience code implementing common client-side workflows
or best practices.

In general, you can expect to:

  1. Activate access to the API by creating a project on
    the Google Cloud Console, enabling
    billing if necessary, and enabling the API.

  2. Choose a library and install it, typically by
    adding it to your bundle. For example, here is how
    you might add a the Translation service client to your Gemfile:

    # Gemfile
    
    # ... previous libraries ...
    gem "google-cloud-translate", "~> 3.2"
    
  3. Instantiate a client object. This object represents an authenticated
    connection to the service. For example, here is how you might create a
    client for the translation service:

    require "google/cloud/translate"
    
    translation_client = Google::Cloud::Translate.translation_service
    

    Depending on your environment and authentication needs, you might need to
    provide credentials to the client object.

  4. Make API calls by invoking methods on the client. For example, here is how
    you might translate a phrase:

    result = translation_client.translate_text contents: ["Hello, world!"],
                                               mime_type: "text/plain",
                                               source_language_code: "en-US",
                                               target_language_code: "ja-JP",
                                               parent: "projects/my-project-name"
    puts result.translations.first.translated_text
    # => "こんにちは世界!"
    

Activating the API

To access a Google Cloud API, you will generally need to activate it in the
cloud console. This typically involves three steps:

  1. If you have not created a
    Google Cloud Project, do
    so. Point your browser to the
    Google Cloud Console, sign up if
    needed, and create or choose a project. Make note of the project number
    (which is numeric) or project ID (which is usually three or more words
    separated by hyphens). Many services will require you to pass that
    information in when calling an API.

  2. For most services, you will need to provide billing information. If this is
    your first time using Google Cloud Platform, you may be eligible for a free
    trial.

  3. Enable the API you want to use. Click the "APIs & Services" tab in the left
    navigation, then click the "Enable APIs and Services" button near the top.
    Search for the API you want by name, and click "Enable". A few APIs may be
    enabled automatically for you, but most APIs need to be enabled explicitly.

Once you have a project set up and have enabled an API, you are ready to begin
using a client library to call the API.

Choosing a client library

This repository contains two types of API client RubyGems: the main library
for the API (e.g. the google-cloud-translate gem
for the Translation service), and one ore more versioned libraries for
different versions of the service (e.g.
google-cloud-translate-v2 and
google-cloud-translate-v3 for versions 2 and 3
of the service, respectively). Note that we're referring to different versions
of the backend service, not of the client library gem.

In most cases, you should install the main library (the one without a service
version in the name). This library will provide all the required code for making
calls to the API. It may also provide additional convenience code implementing
common client-side workflows or best practices. Often the main library will
bring in one or more versioned libraries as dependencies, and the client and
data type classes you will use may actually be defined in a versioned library,
but installing the main library will ensure you have access to the best tools
and interfaces for interacting with the service.

The versioned libraries are lower-level libraries that target a specific
version of the service. You may choose to intall a versioned library directly,
instead of or in addition to the main library, to handle advanced use cases that
require lower level access.

Note: Many services may also provide client libraries with names beginning with
google-apis-. Those clients are developed in a
different repository,
and utilize an older client technology that lacks some of the performance and
ease of use benefits of the clients in the google-cloud-ruby repository. The
older clients may cover some services for which a google-cloud-ruby client is
not yet available, but for services that are covered, we generally recommend
the clients in the google-cloud-ruby repository over the older ones.

Most client libraries have directories in this repository, or you can look up
the name of the client library to use in the documentation for the service you
are using. Install this library as a RubyGem, or add it to your Gemfile.

Authentication

Most API calls must be accompanied by authentication information proving that
the caller has sufficient permissions to make the call.

These API client libraries provide several mechanisms for attaching credentials
to API calls.

  • If your application runs on an Google Cloud Platform hosting environment
    such as Google Compute Engine, Google Container Engine, Google App Engine,
    Google Cloud Run, or Google Cloud Functions, the environment will provide
    "ambient" credentials which client libraries will recognize and use
    automatically. You can generally configure these credentials in the hosting
    environment, for example per-VM in Google Compute Engine.

  • You can also provide your own service account credentials by including a
    service account key file in your application's file system and setting the
    environment variable GOOGLE_APPLICATION_CREDENTIALS to the path to that
    file. Client libraries will read this environment variable if it is set.

  • Finally, you can override credentials in code by setting the credentials
    field in the client configuration. This can be set globally on the client
    class or provided when you construct a client object.

For more information, see the authentication documentation for the
client library you are using, or the
Cloud authentication documentation.

Supported Ruby Versions

These libraries are currently supported on Ruby 2.6 through Ruby 3.1. Older
versions of Ruby may still work, but are unsupported and not recommended.

In general, 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. See
https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
support schedule.

Library Versioning

The libraries in this repository follow Semantic Versioning.

Libraries are released at one of two different support quality levels:

GA: Libraries defined at the GA (general availability) quality level,
indicated by a gem version number greater than or equal to 1.0, are stable. The
code surface will not change in backwards-incompatible ways unless absolutely
necessary (e.g. because of critical security issues), or unless accompanying a
semver-major version update (such as version 1.x to 2.x.) Issues and requests
against GA libraries are addressed with the highest priority.

Preview: Libraries defined at a Preview quality level, indicated by a gem
version number less than 1.0, are expected to be mostly stable and we're
working towards their release candidate. However, these libraries may get
backwards-incompatible updates from time to time. We will still address issues
and requests with a high priority.

Note that the gem version is distinct from the service version. Some backend
services have mulitple versions, for example versions
v2
and v3
of the translation service. These are treated as separate services and will
have separate versioned clients, e.g. the google-cloud-translate-v2 and
google-cloud-translate-v3 gems. These gems will in turn have their own gem
versions, tracking the development of the two services.

Contributing

Contributions to this repository are welcome. However, please note that many of
the clients in this repository are automatically generated. The Ruby files in
those clients will have a comment to that effect near the top; changes to those
files will not be accepted as they will simply be overwritten by the code
generator. If in doubt, please open an issue and ask the maintainers. See the
CONTRIBUTING document for more information on how to
get started.

Please note that this project is released with a Contributor Code of Conduct.
By participating in this project you agree to abide by its terms. See
Code of Conduct for more information.

License

This library is licensed under Apache 2.0. Full license text is
available in LICENSE.

Support

Please report bugs at the project on Github.

If you have questions about how to use the clients or APIs, ask on
Stack Overflow.


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 1 day ago

Total Commits: 27,101
Total Committers: 204
Avg Commits per committer: 132.848
Development Distribution Score (DDS): 0.72

Commits in past year: 3,795
Committers in past year: 15
Avg Commits per committer in past year: 253.0
Development Distribution Score (DDS) in past year: 0.208

Name Email Commits
release-please[bot] 5****] 7585
Yoshi Automation Bot y****n@g****m 6214
gcf-owl-bot[bot] 7****] 3583
yoshi-code-bot 7****t 3139
Mike Moore m****e@b****m 2318
Daniel Azuma d****a@g****m 1405
Chris Smith q****o@g****m 1188
Heng Xiong h****8@g****m 296
Graham Paye p****e@g****m 131
Graham Paye g****8@g****m 112
Jacob Geiger j****r@g****m 76
André Andreassa a****a 66
Mend Renovate b****t@r****m 63
Neha Bajaj b****7 58
DPE bot d****t@g****m 57
Nivedha n****l@g****m 56
Jiren Patel j****l@g****m 53
Ernest Landrito l****o@g****m 51
Viacheslav Rostovtsev 5****v 45
Sandeep Tuniki 7****i 39
Charlotte Yun y****n@g****m 36
Song Wang s****g@g****m 34
Diptanshu Mittal 4****l 27
Joe Bolinger j****r@g****m 26
Tim Swast s****t@g****m 26
Jun Mukai m****i@g****m 24
Nicholas Cook i****y 16
Shubhangi Singh s****n@g****m 16
Hengfeng Li h****g@g****m 16
Song Wang s****g@n****m 14
and 174 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 1 day ago

Total issues: 701
Total pull requests: 12,196
Average time to close issues: 4 months
Average time to close pull requests: 3 days
Total issue authors: 113
Total pull request authors: 65
Average comments per issue: 2.89
Average comments per pull request: 0.83
Merged pull request: 9,449
Bot issues: 553
Bot pull requests: 10,963

Past year issues: 27
Past year pull requests: 1,994
Past year average time to close issues: 4 days
Past year average time to close pull requests: 3 days
Past year issue authors: 10
Past year pull request authors: 20
Past year average comments per issue: 0.19
Past year average comments per pull request: 0.28
Past year merged pull request: 1,060
Past year bot issues: 19
Past year bot pull requests: 1,796

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/googleapis/google-cloud-ruby

Top Issue Authors

  • github-actions[bot] (472)
  • release-please[bot] (36)
  • failure-checker[bot] (28)
  • gcf-owl-bot[bot] (15)
  • dazuma (14)
  • YashSaraf11 (6)
  • JesseLovelace (4)
  • yoshi-code-bot (4)
  • meagar (3)
  • sydney-munro (3)
  • quartzmo (3)
  • SandeepTuniki (3)
  • directionless (2)
  • juseveno (2)
  • bajajneha27 (2)

Top Pull Request Authors

  • release-please[bot] (7,754)
  • gcf-owl-bot[bot] (3,206)
  • yoshi-code-bot (511)
  • dazuma (222)
  • renovate-bot (118)
  • aandreassa (110)
  • shubhangi-google (53)
  • viacheslav-rostovtsev (22)
  • bajajneha27 (22)
  • SandeepTuniki (20)
  • shivgautam (14)
  • YashSaraf11 (13)
  • NivedhaSenthil (12)
  • cy-yun (10)
  • diptanshumittal (9)

Top Issue Labels

  • type: bug (490)
  • nightly failure (472)
  • priority: p1 (464)
  • type: process (36)
  • autorelease: pending (35)
  • priority: p2 (28)
  • type: feature request (25)
  • api: storage (19)
  • type: question (16)
  • owl-bot-copy (14)
  • api: logging (13)
  • priority: p3 (9)
  • api: bigquery (9)
  • owlbot:run (7)
  • type: cleanup (6)
  • api: pubsub (5)
  • kokoro:force-run (5)
  • type: docs (5)
  • :rotating_light: (4)
  • samples (4)
  • api: cloudtrace (3)
  • api: firestore (3)
  • api: clouderrorreporting (3)
  • api: dns (2)
  • stackdriver (2)
  • api: bigtable (1)
  • api: clouddebugger (1)
  • api: analyticsdata (1)
  • api: datastore (1)
  • autorelease: triggered (1)

Top Pull Request Labels

  • autorelease: pending (5,414)
  • owl-bot-copy (3,198)
  • kokoro:force-run (1,958)
  • autorelease: published (1,890)
  • owlbot:run (685)
  • autorelease: tagged (445)
  • autorelease: triggered (104)
  • do not merge (49)
  • api: storage (37)
  • samples (31)
  • api: bigquery (18)
  • api: spanner (18)
  • api: firestore (13)
  • api: pubsub (10)
  • cla: yes (8)
  • automerge (4)
  • api: datastore (4)
  • autorelease: closed (4)
  • api: bigtable (4)
  • autorelease: failed (4)
  • api: videostitcher (4)
  • api: monitoring (4)
  • release freeze (3)
  • dependencies (3)
  • api: cloudasset (2)
  • api: vision (2)
  • snippet-bot:no-prefix-req (2)
  • context: none (1)
  • api: core (1)
  • api: dlp (1)

Package metadata

gem.coop: google-cloud-profiler-v2

Cloud Profiler is a statistical, low-overhead profiler that continuously gathers CPU usage and memory-allocation information from your production applications. It attributes that information to the application's source code, helping you identify the parts of the application consuming the most resources, and otherwise illuminating the performance characteristics of the code. Note that google-cloud-profiler-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-profiler instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-profiler-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.6.1 (published 28 days ago)
  • Last Synced: 2026-04-26T19:01:41.276Z (4 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 18,611,460 Total
  • Docker Downloads: 435,013,916
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.302%
    • Downloads: 0.906%
  • Maintainers (1)
gem.coop: google-cloud-storage_transfer-v1

Storage Transfer Service allows you to quickly import online data into Cloud Storage. You can also set up a repeating schedule for transferring data, as well as transfer data within Cloud Storage, from one bucket to another. Note that google-cloud-storage_transfer-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-storage_transfer instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-storage_transfer-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.10.0 (published 16 days ago)
  • Last Synced: 2026-04-26T23:01:06.604Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,126,745 Total
  • Docker Downloads: 20,834,527
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.373%
    • Downloads: 1.119%
  • Maintainers (1)
gem.coop: google-cloud-storage_transfer

Storage Transfer Service allows you to quickly import online data into Cloud Storage. You can also set up a repeating schedule for transferring data, as well as transfer data within Cloud Storage, from one bucket to another.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-storage_transfer/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T11:18:36.770Z (4 days ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,117,394 Total
  • Docker Downloads: 20,834,527
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.373%
    • Downloads: 1.12%
  • Maintainers (1)
gem.coop: google-cloud-trace-v2

The Cloud Trace API lets you send and retrieve latency data to and from Cloud Trace. This API provides low-level interfaces for interacting directly with the feature. For some languages, you can use OpenTelemetry, a set of open source tracing and stats instrumentation libraries that work with multiple backends. Note that google-cloud-trace-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-trace instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-trace-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.4.1 (published 6 months ago)
  • Last Synced: 2026-04-26T12:31:19.224Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,087,337 Total
  • Docker Downloads: 2,295,182
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.766%
    • Docker downloads count: 1.398%
    • Downloads: 1.666%
  • Maintainers (1)
gem.coop: google-cloud-secret_manager-v1beta1

Secret Manager is a secure and convenient storage system for API keys, passwords, certificates, and other sensitive data. Secret Manager provides a central place and single source of truth to manage, access, and audit secrets across Google Cloud. Note that google-cloud-secret_manager-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-secret_manager instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-secret_manager-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 16 days ago)
  • Last Synced: 2026-04-26T03:30:32.032Z (5 days ago)
  • Versions: 45
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,043,550 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.788%
    • Downloads: 2.364%
  • Maintainers (1)
gem.coop: google-cloud-location

An add-on interface used by some Google API clients to provide location management calls.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-location/
  • Licenses: Apache-2.0
  • Latest release: 1.3.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T11:26:46.799Z (4 days ago)
  • Versions: 24
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25,116,844 Total
  • Docker Downloads: 282
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.798%
    • Downloads: 0.847%
    • Docker downloads count: 2.347%
  • Maintainers (1)
gem.coop: google-cloud-logging-v2

The Cloud Logging API lets you programmatically read and write log entries, set up exclusions, create logs-based metrics, and manage export sinks. Note that google-cloud-logging-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-logging instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-logging-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.5.1 (published 6 months ago)
  • Last Synced: 2026-04-25T13:30:19.397Z (5 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,124,804 Total
  • Docker Downloads: 1,924,010
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.812%
    • Docker downloads count: 1.422%
    • Downloads: 1.825%
  • Maintainers (1)
gem.coop: google-cloud-firestore

google-cloud-firestore is the official library for Google Cloud Firestore API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-firestore
  • Documentation: http://www.rubydoc.info/gems/google-cloud-firestore/
  • Licenses: Apache-2.0
  • Latest release: 3.1.1 (published 6 months ago)
  • Last Synced: 2026-04-26T20:01:33.621Z (4 days ago)
  • Versions: 61
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,628,146 Total
  • Docker Downloads: 40
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.058%
    • Downloads: 1.602%
    • Docker downloads count: 2.629%
  • Maintainers (1)
gem.coop: google-cloud-data_catalog-v1

DataCatalog is a centralized and unified data catalog service for all your Cloud resources, where users and systems can discover data, explore and curate its semantics, understand how to act on it, and help govern its usage. Note that google-cloud-data_catalog-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-data_catalog instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.7.0 (published 28 days ago)
  • Last Synced: 2026-04-26T14:01:26.328Z (4 days ago)
  • Versions: 63
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 771,040 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.149%
    • Downloads: 3.447%
  • Maintainers (1)
gem.coop: google-cloud-dataplex-v1

Dataplex is an intelligent data fabric that provides a way to centrally manage, monitor, and govern your data across data lakes, data warehouses and data marts, and make this data securely accessible to a variety of analytics and data science tools. Note that google-cloud-dataplex-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dataplex instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dataplex-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.9.0 (published 6 months ago)
  • Last Synced: 2026-04-26T14:01:38.403Z (4 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 786,741 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.222%
    • Downloads: 3.665%
  • Maintainers (1)
gem.coop: google-cloud-document_ai-v1

Document AI uses machine learning on a single cloud-based platform to automatically classify, extract, and enrich data within your documents to unlock insights. Note that google-cloud-document_ai-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-document_ai instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-document_ai-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.12.1 (published 28 days ago)
  • Last Synced: 2026-04-25T19:31:26.798Z (5 days ago)
  • Versions: 52
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 891,987 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.323%
    • Downloads: 3.97%
  • Maintainers (1)
gem.coop: google-cloud-data_catalog-lineage-v1

DataCatalog is a centralized and unified data catalog service for all your Cloud resources, where users and systems can discover data, explore and curate its semantics, understand how to act on it, and help govern its usage. Lineage is used to track data flows between assets over time. You can create Lineage Events to record lineage between multiple sources and a single target, for example, when table data is based on data from multiple tables. Note that google-cloud-data_catalog-lineage-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-data_catalog-lineage instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog-lineage-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.14.0 (published 28 days ago)
  • Last Synced: 2026-04-27T01:30:37.683Z (4 days ago)
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 606,257 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.425%
    • Downloads: 4.275%
  • Maintainers (1)
gem.coop: google-cloud-data_catalog-lineage

DataCatalog is a centralized and unified data catalog service for all your Cloud resources, where users and systems can discover data, explore and curate its semantics, understand how to act on it, and help govern its usage. Lineage is used to track data flows between assets over time. You can create Lineage Events to record lineage between multiple sources and a single target, for example, when table data is based on data from multiple tables.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog-lineage/
  • Licenses: Apache-2.0
  • Latest release: 1.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T11:26:46.890Z (4 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 596,467 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.433%
    • Downloads: 4.3%
  • Maintainers (1)
gem.coop: google-analytics-data-v1beta

The Google Analytics Data API provides programmatic methods to access report data in Google Analytics 4 (GA4) properties. Google Analytics 4 helps you understand how people use your web, iOS, or Android app. Note that google-analytics-data-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-analytics-data instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-analytics-data-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 28 days ago)
  • Last Synced: 2026-04-26T22:30:43.176Z (4 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,161,420 Total
  • Docker Downloads: 31
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.478%
    • Docker downloads count: 2.68%
    • Downloads: 3.233%
  • Maintainers (1)
gem.coop: google-cloud-redis

Creates and manages Redis instances on the Google Cloud Platform.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-redis/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T02:01:47.111Z (5 days ago)
  • Versions: 38
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 412,689 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.552%
    • Downloads: 4.657%
  • Maintainers (1)
gem.coop: google-cloud-speech-v1

Google Speech-to-Text enables developers to convert audio to text by applying powerful neural network models in an easy-to-use API. The API recognizes more than 120 languages and variants to support your global user base. You can enable voice command-and-control, transcribe audio from call centers, and more. It can process real-time streaming or prerecorded audio, using Google's machine learning technology. Note that google-cloud-speech-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-speech instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-speech-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.1 (published 28 days ago)
  • Last Synced: 2026-04-26T23:01:40.590Z (4 days ago)
  • Versions: 51
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 458,774 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.627%
    • Downloads: 4.882%
  • Maintainers (1)
gem.coop: google-cloud-talent

Transform your job search and candidate matching capabilities with Cloud Talent Solution, designed to support enterprise talent acquisition technology and evolve with your growing needs. This AI solution includes features such as Job Search and Profile Search (Beta) to provide candidates and employers with an enhanced talent acquisition experience.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-talent/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T19:01:24.123Z (4 days ago)
  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 302,354 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.784%
    • Downloads: 5.353%
  • Maintainers (1)
gem.coop: google-cloud-automl-v1

AutoML makes the power of machine learning available to you even if you have limited knowledge of machine learning. You can use AutoML to build on Google's machine learning capabilities to create your own custom machine learning models that are tailored to your business needs, and then integrate those models into your applications and web sites. Note that google-cloud-automl-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-automl instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-automl-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 28 days ago)
  • Last Synced: 2026-04-26T15:30:38.619Z (4 days ago)
  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 284,819 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.865%
    • Downloads: 5.594%
  • Maintainers (1)
gem.coop: google-cloud-web_risk

Web Risk is an enterprise security product that lets your client applications check URLs against Google's constantly updated lists of unsafe web resources.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-web_risk/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published 30 days ago)
  • Last Synced: 2026-04-23T04:47:35.790Z (8 days ago)
  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 277,817 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.126%
    • Downloads: 6.379%
  • Maintainers (1)
rubygems.org: google-cloud-scheduler

Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-scheduler/
  • Licenses: Apache-2.0
  • Latest release: 3.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T10:43:53.674Z (5 days ago)
  • Versions: 33
  • Dependent Packages: 2
  • Dependent Repositories: 29
  • Downloads: 378,277 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 3.318%
    • Downloads: 4.476%
    • Dependent repos count: 4.567%
    • Dependent packages count: 5.179%
  • Maintainers (1)
rubygems.org: google-cloud-translate-v3

Cloud Translation can dynamically translate text between thousands of language pairs. Translation lets websites and programs programmatically integrate with the translation service. Note that google-cloud-translate-v3 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-translate instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-translate-v3/
  • Licenses: Apache-2.0
  • Latest release: 1.9.0 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:49.964Z (21 days ago)
  • Versions: 44
  • Dependent Packages: 1
  • Dependent Repositories: 42
  • Downloads: 2,919,031 Total
  • Docker Downloads: 302
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Docker downloads count: 2.978%
    • Downloads: 3.049%
    • Average: 3.323%
    • Dependent repos count: 3.891%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-text_to_speech

Text-to-Speech converts text or Speech Synthesis Markup Language (SSML) input into audio data of natural human speech.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-text_to_speech/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-06T14:16:08.184Z (24 days ago)
  • Versions: 36
  • Dependent Packages: 1
  • Dependent Repositories: 47
  • Downloads: 921,541 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 3.44%
    • Downloads: 3.461%
    • Dependent repos count: 3.718%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-dlp

Provides methods for detection of privacy-sensitive fragments in text, images, and Google Cloud Platform storage repositories.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dlp/
  • Licenses: Apache-2.0
  • Latest release: 1.9.0 (published about 1 month ago)
  • Last Synced: 2026-04-06T05:02:42.667Z (25 days ago)
  • Versions: 43
  • Dependent Packages: 1
  • Dependent Repositories: 33
  • Downloads: 854,999 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Downloads: 3.003%
    • Average: 3.465%
    • Dependent repos count: 4.3%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-dataproc

Manages Hadoop-based clusters and jobs on Google Cloud Platform.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dataproc/
  • Licenses: Apache-2.0
  • Latest release: 2.8.0 (published about 1 month ago)
  • Last Synced: 2026-04-02T11:24:09.259Z (28 days ago)
  • Versions: 41
  • Dependent Packages: 1
  • Dependent Repositories: 32
  • Downloads: 800,452 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Downloads: 3.02%
    • Average: 3.481%
    • Dependent repos count: 4.365%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-dlp-v2

Provides methods for detection of privacy-sensitive fragments in text, images, and Google Cloud Platform storage repositories. Note that google-cloud-dlp-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dlp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dlp-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.17.0 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:49.442Z (21 days ago)
  • Versions: 65
  • Dependent Packages: 1
  • Dependent Repositories: 8
  • Downloads: 215,708 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 6.436%
    • Dependent packages count: 7.655%
    • Dependent repos count: 7.964%
    • Downloads: 14.195%
  • Maintainers (1)
rubygems.org: google-cloud-scheduler-v1

Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place. Note that google-cloud-scheduler-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-scheduler instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-scheduler-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published 28 days ago)
  • Last Synced: 2026-04-02T19:47:53.212Z (28 days ago)
  • Versions: 35
  • Dependent Packages: 2
  • Dependent Repositories: 7
  • Downloads: 78,911 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 6.808%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 15.575%
  • Maintainers (1)
rubygems.org: google-cloud-scheduler-v1beta1

Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place. Note that google-cloud-scheduler-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-scheduler instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-scheduler-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 28 days ago)
  • Last Synced: 2026-04-02T19:47:53.294Z (28 days ago)
  • Versions: 34
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 67,695 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 6.829%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 15.68%
  • Maintainers (1)
gem.coop: google-cloud-redis-cluster-v1

Creates and manages Redis instances on the Google Cloud Platform. Note that google-cloud-redis-cluster-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-redis-cluster instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-redis-cluster-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.5.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:18:01.612Z (28 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 44,314 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.994%
    • Downloads: 20.983%
  • Maintainers (1)
rubygems.org: google-cloud-recommender-v1

Recommender is a service on Google Cloud that provides usage recommendations for Cloud products and services. Note that google-cloud-recommender-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-recommender instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-recommender-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:03:11.201Z (28 days ago)
  • Versions: 47
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 58,923 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.063%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 16.849%
  • Maintainers (1)
rubygems.org: google-cloud-retail-v2

Retail enables you to build an end-to-end personalized recommendation system based on state-of-the-art deep learning ML models, without a need for expertise in ML or recommendation systems. Note that google-cloud-retail-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-retail instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-retail-v2/
  • Licenses: Apache-2.0
  • Latest release: 2.8.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:03:11.245Z (28 days ago)
  • Versions: 50
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 63,226 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.169%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 17.38%
  • Maintainers (1)
rubygems.org: google-cloud-redis-v1beta1

Creates and manages Redis instances on the Google Cloud Platform. Note that google-cloud-redis-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-redis instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-redis-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:17:55.840Z (28 days ago)
  • Versions: 40
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 107,825 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.213%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 17.6%
  • Maintainers (1)
rubygems.org: google-cloud-redis-v1

Creates and manages Redis instances on the Google Cloud Platform. Note that google-cloud-redis-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-redis instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-redis-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.5.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:18:03.141Z (28 days ago)
  • Versions: 41
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 110,632 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.243%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Downloads: 17.751%
  • Maintainers (1)
gem.coop: google-cloud-recommendation_engine-v1beta1

Recommendations AI enables you to build an end-to-end personalized recommendation system based on state-of-the-art deep learning ML models, without a need for expertise in ML or recommendation systems. Note that google-cloud-recommendation_engine-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-recommendation_engine instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-recommendation_engine-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:18:21.151Z (28 days ago)
  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,554 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.364%
    • Downloads: 22.093%
  • Maintainers (1)
gem.coop: google-cloud-retail

Retail enables you to build an end-to-end personalized recommendation system based on state-of-the-art deep learning ML models, without a need for expertise in ML or recommendation systems.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-retail/
  • Licenses: Apache-2.0
  • Latest release: 2.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-23T17:03:43.087Z (7 days ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,643 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.443%
    • Downloads: 22.328%
  • Maintainers (1)
rubygems.org: google-analytics-data

The Google Analytics Data API provides programmatic methods to access report data in Google Analytics 4 (GA4) properties. Google Analytics 4 helps you understand how people use your web, iOS, or Android app.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-analytics-data/
  • Licenses: Apache-2.0
  • Latest release: 0.8.0 (published about 1 month ago)
  • Last Synced: 2026-04-06T12:30:43.247Z (24 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Downloads: 830,026 Total
  • Docker Downloads: 31
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.83%
    • Downloads: 8.51%
    • Dependent repos count: 12.699%
    • Dependent packages count: 15.576%
  • Maintainers (1)
rubygems.org: google-cloud-talent-v4

Transform your job search and candidate matching capabilities with Cloud Talent Solution, designed to support enterprise talent acquisition technology and evolve with your growing needs. This AI solution includes features such as Job Search and Profile Search to provide candidates and employers with an enhanced talent acquisition experience. Note that google-cloud-talent-v4 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-talent instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-talent-v4/
  • Licenses: Apache-2.0
  • Latest release: 1.8.0 (published 28 days ago)
  • Last Synced: 2026-04-02T19:47:52.906Z (28 days ago)
  • Versions: 38
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 52,209 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Average: 8.004%
    • Dependent repos count: 8.443%
    • Downloads: 21.553%
  • Maintainers (1)
rubygems.org: google-analytics-data-v1alpha

The Google Analytics Data API provides programmatic methods to access report data in Google Analytics App+Web properties. With the Google Analytics Data API, you can build custom dashboards to display Google Analytics data, automate complex reporting tasks to save time, and integrate your Google Analytics data with other business applications. Note that google-analytics-data-v1alpha is a version-specific client library. For most uses, we recommend installing the main client library google-analytics-data instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-analytics-data-v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.8.3 (published over 4 years ago)
  • Last Synced: 2026-04-02T20:18:52.314Z (28 days ago)
  • Versions: 13
  • Dependent Packages: 1
  • Dependent Repositories: 3
  • Downloads: 44,533 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Average: 8.144%
    • Dependent repos count: 12.699%
    • Downloads: 17.999%
  • Maintainers (1)
gem.coop: google-cloud-deploy-v1

Google Cloud Deploy is a managed service that automates delivery of your applications to a series of target environments in a defined promotion sequence. Note that google-cloud-deploy-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-deploy instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-deploy-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.5.0 (published about 1 month ago)
  • Last Synced: 2026-04-25T18:03:05.224Z (5 days ago)
  • Versions: 45
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 28,383 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.488%
    • Downloads: 25.464%
  • Maintainers (1)
gem.coop: google-cloud-media_translation-v1beta1

Media Translation API delivers real-time speech translation to your content and applications directly from your audio data. Leveraging Google’s machine learning technologies, the API offers enhanced accuracy and simplified integration while equipping you with a comprehensive set of features to further refine your translation results. Improve user experience with low-latency streaming translation and scale quickly with straightforward internationalization. Note that google-cloud-media_translation-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-media_translation instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-media_translation-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.1 (published 6 months ago)
  • Last Synced: 2026-03-18T02:35:01.254Z (about 1 month ago)
  • Versions: 25
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 24,471 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.787%
    • Downloads: 26.361%
  • Maintainers (1)
rubygems.org: google-cloud-gaming-v1

This gem is obsolete because the related Google backend is turned down. For more information, see https://cloud.google.com/terms/deprecation.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-gaming-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.0.0 (published over 2 years ago)
  • Last Synced: 2026-03-25T16:22:10.685Z (about 1 month ago)
  • Versions: 17
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 24,340 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 9.521%
    • Downloads: 29.139%
  • Maintainers (1)
gem.coop: google-cloud-data_labeling

AI Platform Data Labeling Service lets you work with human labelers to generate highly accurate labels for a collection of data that you can use in machine learning models.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-data_labeling/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published about 1 month ago)
  • Last Synced: 2026-04-17T12:02:45.271Z (13 days ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,777 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 11.797%
    • Downloads: 35.391%
  • Maintainers (1)
rubygems.org: google-cloud-video-transcoder-v1beta1

The Transcoder API allows you to convert video files and package them for optimized delivery to web, mobile and connected TVs. Note that google-cloud-video-transcoder-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video-transcoder instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-video-transcoder-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.3.2 (published over 4 years ago)
  • Last Synced: 2026-04-17T17:31:26.086Z (13 days ago)
  • Versions: 7
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 14,011 Total
  • Rankings:
    • Forks count: 1.07%
    • Stargazers count: 1.429%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 12.127%
    • Downloads: 42.039%
  • Maintainers (1)
gem.coop: google-cloud-gke_connect-gateway

The Connect gateway builds on the power of fleets to let Anthos users connect to and run commands against registered Anthos clusters in a simple, consistent, and secured way, whether the clusters are on Google Cloud, other public clouds, or on premises, and makes it easier to automate DevOps processes across all your clusters.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-gke_connect-gateway/
  • Licenses: Apache-2.0
  • Latest release: 2.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T13:02:50.066Z (4 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 14,409 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 13.308%
    • Downloads: 39.925%
  • Maintainers (1)
rubygems.org: google-cloud-datastream-v1alpha1

Datastream is a serverless and easy-to-use change data capture (CDC) and replication service. It allows you to synchronize data across heterogeneous databases and applications reliably, and with minimal latency and downtime. Note that google-cloud-datastream-v1alpha1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-datastream instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-datastream-v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.14.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T04:36:36.275Z (5 days ago)
  • Versions: 22
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 13,889 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 16.822%
    • Downloads: 65.645%
  • Maintainers (1)
rubygems.org: google-analytics-admin

The Analytics Admin API allows for programmatic access to the Google Analytics App+Web configuration data. You can use the Google Analytics Admin API to manage accounts and App+Web properties.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-analytics-admin/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T17:05:25.880Z (10 days ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 177,264 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 18.231%
    • Downloads: 26.386%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-cloud-firestore-admin

Cloud Firestore is a NoSQL document database built for automatic scaling, high performance, and ease of application development.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-firestore-admin/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published about 1 month ago)
  • Last Synced: 2026-04-21T17:45:46.471Z (9 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 26,607 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 18.886%
    • Downloads: 56.657%
  • Maintainers (1)
gem.coop: google-shopping-merchant-accounts-v1beta

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-accounts-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-accounts instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-accounts-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.13.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:18:12.094Z (21 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10,410 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 19.327%
    • Downloads: 57.98%
  • Maintainers (1)
rubygems.org: google-cloud-service_management

Google Service Management allows service producers to publish their services on Google Cloud Platform so that they can be discovered and used by service consumers.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-service_management/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T04:32:18.795Z (11 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 22,231 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 19.983%
    • Downloads: 35.146%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-cloud-commerce-consumer-procurement-v1

Enables consumers to procure products served by Cloud Marketplace platform. Note that google-cloud-commerce-consumer-procurement-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-commerce-consumer-procurement instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-commerce-consumer-procurement-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.8.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:18:39.068Z (28 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,790 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.166%
    • Downloads: 60.498%
  • Maintainers (1)
rubygems.org: google-cloud-notebooks

AI Platform Notebooks makes it easy to manage JupyterLab instances through a protected, publicly available notebook instance URL. A JupyterLab instance is a Deep Learning virtual machine instance with the latest machine learning and data science libraries pre-installed.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-notebooks/
  • Licenses: Apache-2.0
  • Latest release: 3.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-02T16:04:14.345Z (28 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,923 Total
  • Rankings:
    • Forks count: 0.885%
    • Stargazers count: 1.457%
    • Dependent packages count: 15.706%
    • Average: 20.841%
    • Downloads: 39.377%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-cloud-web_security_scanner

Web Security Scanner scans your Compute and App Engine apps for common web vulnerabilities.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-web_security_scanner/
  • Licenses: Apache-2.0
  • Latest release: 2.0.2 (published 8 months ago)
  • Last Synced: 2026-03-25T16:41:01.202Z (about 1 month ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 18,947 Total
  • Rankings:
    • Forks count: 1.056%
    • Stargazers count: 1.519%
    • Dependent packages count: 15.706%
    • Average: 21.049%
    • Downloads: 40.182%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-cloud-bigquery-reservation

The BigQuery Reservation API provides the mechanisms by which enterprise users can provision and manage dedicated resources such as slots and BigQuery BI Engine memory allocations.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-reservation/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T05:15:47.272Z (11 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 26,248 Total
  • Rankings:
    • Forks count: 1.056%
    • Stargazers count: 1.519%
    • Dependent packages count: 15.706%
    • Average: 21.193%
    • Downloads: 40.9%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-cloud-profiler

Cloud Profiler is a statistical, low-overhead profiler that continuously gathers CPU usage and memory-allocation information from your production applications. It attributes that information to the application's source code, helping you identify the parts of the application consuming the most resources, and otherwise illuminating the performance characteristics of the code.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-profiler/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published about 1 month ago)
  • Last Synced: 2026-03-29T12:00:05.019Z (about 1 month ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,842 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 21.651%
    • Downloads: 43.482%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-cloud-essential_contacts

Many Google Cloud services, such as Cloud Billing, send out notifications to share important information with Google Cloud users. By default, these notifications are sent to members with certain Identity and Access Management (IAM) roles. With Essential Contacts, you can customize who receives notifications by providing your own list of contacts.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-essential_contacts/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published about 1 month ago)
  • Last Synced: 2026-04-17T16:46:13.408Z (13 days ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,268 Total
  • Rankings:
    • Forks count: 0.885%
    • Stargazers count: 1.457%
    • Dependent packages count: 15.706%
    • Average: 22.533%
    • Dependent repos count: 46.782%
    • Downloads: 47.836%
  • Maintainers (1)
rubygems.org: google-cloud-domains

The Cloud Domains API provides registration, management and configuration of domain names.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-domains/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-06T14:45:34.094Z (24 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,693 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 22.584%
    • Dependent repos count: 46.782%
    • Downloads: 48.15%
  • Maintainers (1)
gem.coop: google-cloud-rapid_migration_assessment

The Rapid Migration Assessment service is our first-party migration assessment and planning tool.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-rapid_migration_assessment/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-17T07:05:54.010Z (14 days ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,609 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 24.799%
    • Downloads: 74.396%
  • Maintainers (1)
gem.coop: google-cloud-support

Manages Google Cloud technical support cases for Customer Care support offerings.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-support/
  • Licenses: Apache-2.0
  • Latest release: 1.2.0 (published about 1 month ago)
  • Last Synced: 2026-03-27T09:02:11.934Z (about 1 month ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,927 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.027%
    • Downloads: 78.082%
  • Maintainers (1)
gem.coop: google-cloud-service_health

Personalized Service Health helps you gain visibility into disruptive events impacting Google Cloud products.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-service_health/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T12:04:43.505Z (10 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,446 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.179%
    • Downloads: 78.538%
  • Maintainers (1)
gem.coop: google-maps-fleet_engine-delivery

Enables Fleet Engine for access to the On Demand Rides and Deliveries and Last Mile Fleet Solution APIs. Customer's use of Google Maps Content in the Cloud Logging Services is subject to the Google Maps Platform Terms of Service located at https://cloud.google.com/maps-platform/terms.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-maps-fleet_engine-delivery/
  • Licenses: Apache-2.0
  • Latest release: 1.1.2 (published 8 months ago)
  • Last Synced: 2026-03-27T06:56:12.149Z (about 1 month ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,810 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.216%
    • Downloads: 78.648%
  • Maintainers (1)
rubygems.org: google-cloud-support-v2

Manages Google Cloud technical support cases for Customer Care support offerings. Note that google-cloud-support-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-support instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-support-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 28 days ago)
  • Last Synced: 2026-04-02T19:47:52.695Z (28 days ago)
  • Versions: 19
  • Dependent Packages: 1
  • Dependent Repositories: 2
  • Downloads: 9,215 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent repos count: 15.508%
    • Dependent packages count: 15.576%
    • Average: 26.308%
    • Downloads: 98.091%
  • Maintainers (1)
gem.coop: google-cloud-commerce-consumer-procurement

Enables consumers to procure products served by Cloud Marketplace platform.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-commerce-consumer-procurement/
  • Licenses: Apache-2.0
  • Latest release: 1.3.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T05:47:56.961Z (5 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,183 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.397%
    • Downloads: 79.191%
  • Maintainers (1)
gem.coop: google-cloud-vmware_engine

Google Cloud VMware Engine is a fully managed service that lets you run the VMware platform in Google Cloud. VMware Engine provides you with VMware operational continuity so you can benefit from a cloud consumption model and lower your total cost of ownership. VMware Engine also offers on-demand provisioning, pay-as-you-grow, and capacity optimization.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-vmware_engine/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published 30 days ago)
  • Last Synced: 2026-04-13T19:34:03.682Z (17 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,983 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 26.875%
    • Downloads: 80.624%
  • Maintainers (1)
gem.coop: google-cloud-confidential_computing

Attestation verifier for Confidential Space.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-confidential_computing/
  • Licenses: Apache-2.0
  • Latest release: 1.2.0 (published about 1 month ago)
  • Last Synced: 2026-03-27T08:44:19.855Z (about 1 month ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,821 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.338%
    • Downloads: 82.015%
  • Maintainers (1)
rubygems.org: google-cloud-data_fusion

Cloud Data Fusion is a fully managed, cloud-native, enterprise data integration service for quickly building and managing data pipelines.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-data_fusion/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-06T11:33:35.958Z (24 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10,389 Total
  • Rankings:
    • Forks count: 1.056%
    • Stargazers count: 1.519%
    • Dependent packages count: 15.706%
    • Average: 27.612%
    • Dependent repos count: 46.782%
    • Downloads: 72.997%
  • Maintainers (1)
gem.coop: google-shopping-merchant-lfp-v1beta

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-lfp-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-lfp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-lfp-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.7.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:51.959Z (21 days ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,428 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 28.999%
    • Downloads: 86.998%
  • Maintainers (1)
rubygems.org: google-cloud-certificate_manager

Certificate Manager lets you acquire and manage Transport Layer Security (TLS) (SSL) certificates for use with classic external HTTP(S) load balancers in Google Cloud.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-certificate_manager/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T19:51:00.290Z (4 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 92,292 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 30.597%
    • Dependent repos count: 46.782%
    • Downloads: 88.213%
  • Maintainers (1)
gem.coop: google-cloud-location_finder-v1

google-cloud-location_finder-v1 is the official client library for the Cloud Location Finder V1 API. Note that google-cloud-location_finder-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-location_finder instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-location_finder-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-25T17:04:00.765Z (5 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 955 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 30.9%
    • Downloads: 92.701%
  • Maintainers (1)
rubygems.org: google-cloud-datastore-admin

Firestore in Datastore mode is a NoSQL document database built for automatic scaling, high performance, and ease of application development.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-datastore-admin/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T10:02:00.816Z (11 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 7,258 Total
  • Rankings:
    • Forks count: 0.932%
    • Stargazers count: 1.427%
    • Dependent packages count: 15.706%
    • Average: 31.55%
    • Dependent repos count: 46.779%
    • Downloads: 92.905%
  • Maintainers (1)
gem.coop: google-cloud-storage_batch_operations

google-cloud-storage_batch_operations is the official client library for the Storage Batch Operations API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-storage_batch_operations/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T14:04:03.225Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,381 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.14%
    • Downloads: 96.421%
  • Maintainers (1)
gem.coop: google-shopping-merchant-issue_resolution-v1beta

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-issue_resolution-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-issue_resolution instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-issue_resolution-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.5.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:51.423Z (21 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,393 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.241%
    • Downloads: 96.723%
  • Maintainers (1)
gem.coop: google-shopping-merchant-accounts-v1

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-accounts-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-accounts instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-accounts-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:51.993Z (21 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,090 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.258%
    • Downloads: 96.774%
  • Maintainers (1)
rubygems.org: google-cloud-security-public_ca

Certificate Manager's Public Certificate Authority (CA) functionality allows you to provision and deploy widely trusted X.509 certificates after validating that the certificate requester controls the domains. Certificate Manager lets you directly and programmatically request publicly trusted TLS certificates that are already in the root of trust stores used by major browsers, operating systems, and applications. You can use these TLS certificates to authenticate and encrypt internet traffic.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-security-public_ca/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-03-25T16:21:23.075Z (about 1 month ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,340 Total
  • Rankings:
    • Forks count: 0.932%
    • Stargazers count: 1.427%
    • Dependent packages count: 15.706%
    • Average: 32.579%
    • Dependent repos count: 46.779%
    • Downloads: 98.049%
  • Maintainers (1)
gem.coop: google-cloud-gke_recommender

GKE Recommender API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-gke_recommender/
  • Licenses: Apache-2.0
  • Latest release: 0.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-02T18:45:41.436Z (28 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,042 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.583%
    • Downloads: 97.75%
  • Maintainers (1)
rubygems.org: google-iam-client

Manages identity and access control policies for Google Cloud Platform resources.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-iam-client/
  • Licenses: Apache-2.0
  • Latest release: 1.1.2 (published 8 months ago)
  • Last Synced: 2026-03-18T02:34:59.235Z (about 1 month ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,633 Total
  • Rankings:
    • Forks count: 0.932%
    • Stargazers count: 1.427%
    • Dependent packages count: 15.706%
    • Average: 32.583%
    • Dependent repos count: 46.779%
    • Downloads: 98.074%
  • Maintainers (1)
rubygems.org: google-cloud-dataform

Dataform is a service for data analysts to develop, test, version control, and schedule complex SQL workflows for data transformation in BigQuery.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dataform/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T10:31:02.425Z (5 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,329 Total
  • Rankings:
    • Forks count: 0.932%
    • Stargazers count: 1.427%
    • Dependent packages count: 15.706%
    • Average: 32.65%
    • Dependent repos count: 46.779%
    • Downloads: 98.408%
  • Maintainers (1)
gem.coop: google-shopping-merchant-lfp-v1

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-lfp-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-lfp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-lfp-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.3.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:47:48.172Z (21 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,205 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.801%
    • Downloads: 98.403%
  • Maintainers (1)
rubygems.org: google-cloud-netapp-v1

Google Cloud NetApp Volumes is a fully-managed, cloud-based data storage service that provides advanced data management capabilities and highly scalable performance with global availability. Note that google-cloud-netapp-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-netapp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-netapp-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.10.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:03:12.528Z (28 days ago)
  • Versions: 33
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 13,034 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 15.576%
    • Average: 33.027%
    • Dependent repos count: 48.855%
    • Downloads: 98.335%
  • Maintainers (1)
rubygems.org: google-cloud-discovery_engine

Discovery Engine API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-discovery_engine/
  • Licenses: Apache-2.0
  • Latest release: 2.4.0 (published about 1 month ago)
  • Last Synced: 2026-03-29T09:01:48.390Z (about 1 month ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,827 Total
  • Rankings:
    • Forks count: 0.9%
    • Stargazers count: 1.423%
    • Dependent packages count: 15.608%
    • Average: 33.076%
    • Dependent repos count: 48.859%
    • Downloads: 98.588%
  • Maintainers (1)
gem.coop: google-cloud-capacity_planner-v1beta

Provides programmatic access to Capacity Planner features. Note that google-cloud-capacity_planner-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-capacity_planner instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-capacity_planner-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published about 1 month ago)
  • Last Synced: 2026-04-26T10:45:26.195Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,420 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 33.154%
    • Downloads: 99.461%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-issue_resolution-v1

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-issue_resolution-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-issue_resolution instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-issue_resolution-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.4.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:49.743Z (21 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,121 Total
  • Rankings:
    • Dependent packages count: 14.319%
    • Dependent repos count: 43.861%
    • Average: 50.312%
    • Downloads: 92.756%
  • Maintainers (1)
rubygems.org: google-cloud-config_delivery

google-cloud-config_delivery is the official client library for the Google Cloud ConfigDelivery API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-config_delivery/
  • Licenses: Apache-2.0
  • Latest release: 0.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-02T19:45:22.640Z (28 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,190 Total
  • Rankings:
    • Dependent packages count: 14.379%
    • Dependent repos count: 44.044%
    • Average: 50.393%
    • Downloads: 92.758%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-issue_resolution

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-issue_resolution/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published 30 days ago)
  • Last Synced: 2026-04-26T15:34:03.771Z (4 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,828 Total
  • Rankings:
    • Dependent packages count: 14.395%
    • Dependent repos count: 44.096%
    • Average: 50.419%
    • Downloads: 92.766%
  • Maintainers (1)
rubygems.org: google-cloud-support-v2beta

Manages Google Cloud technical support cases for Customer Care support offerings. Note that google-cloud-support-v2beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-support instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-support-v2beta/
  • Licenses: Apache-2.0
  • Latest release: 0.5.0 (published 28 days ago)
  • Last Synced: 2026-04-02T19:47:53.663Z (28 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,900 Total
  • Rankings:
    • Dependent packages count: 14.404%
    • Dependent repos count: 44.122%
    • Average: 50.43%
    • Downloads: 92.764%
  • Maintainers (1)
rubygems.org: google-cloud-memorystore

google-cloud-memorystore is the official client library for the Memorystore API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-memorystore/
  • Licenses: Apache-2.0
  • Latest release: 1.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T08:16:25.073Z (11 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,706 Total
  • Rankings:
    • Dependent packages count: 14.566%
    • Dependent repos count: 44.616%
    • Average: 50.66%
    • Downloads: 92.797%
  • Maintainers (1)
rubygems.org: google-cloud-memorystore-v1beta

google-cloud-memorystore-v1beta is the official client library for the Memorystore V1BETA API. Note that google-cloud-memorystore-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-memorystore instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-memorystore-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.10.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:03:11.328Z (28 days ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,308 Total
  • Rankings:
    • Dependent packages count: 14.573%
    • Dependent repos count: 44.634%
    • Average: 50.662%
    • Downloads: 92.78%
  • Maintainers (1)
rubygems.org: google-cloud-memorystore-v1

google-cloud-memorystore-v1 is the official client library for the Memorystore V1 API. Note that google-cloud-memorystore-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-memorystore instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-memorystore-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:03:10.867Z (28 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,384 Total
  • Rankings:
    • Dependent packages count: 14.573%
    • Dependent repos count: 44.634%
    • Average: 50.664%
    • Downloads: 92.786%
  • Maintainers (1)
rubygems.org: google-cloud-redis-cluster-v1beta1

Creates and manages Redis instances on the Google Cloud Platform. Note that google-cloud-redis-cluster-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-redis-cluster instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-redis-cluster-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published 28 days ago)
  • Last Synced: 2026-04-02T20:34:14.115Z (28 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,964 Total
  • Rankings:
    • Dependent packages count: 14.755%
    • Dependent repos count: 45.197%
    • Average: 50.897%
    • Downloads: 92.737%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-data_sources

Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-data_sources/
  • Licenses: Apache-2.0
  • Latest release: 0.3.2 (published 8 months ago)
  • Last Synced: 2026-03-25T16:05:52.566Z (about 1 month ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,245 Total
  • Rankings:
    • Dependent packages count: 14.762%
    • Dependent repos count: 45.219%
    • Average: 50.911%
    • Downloads: 92.753%
  • Maintainers (1)
rubygems.org: google-apps-events-subscriptions

The Google Workspace Events API lets you subscribe to events and manage change notifications across Google Workspace applications.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-apps-events-subscriptions/
  • Licenses: Apache-2.0
  • Latest release: 1.2.0 (published about 1 month ago)
  • Last Synced: 2026-04-20T09:28:50.180Z (11 days ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,094 Total
  • Rankings:
    • Dependent packages count: 15.706%
    • Dependent repos count: 48.724%
    • Average: 54.579%
    • Downloads: 99.309%
  • Maintainers (1)
rubygems.org: google-cloud-parallelstore

google-cloud-parallelstore is the official client library for the Parallelstore API.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-parallelstore/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-04-17T12:34:07.223Z (13 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,370 Total
  • Rankings:
    • Dependent packages count: 15.706%
    • Dependent repos count: 48.724%
    • Average: 54.582%
    • Downloads: 99.316%
  • Maintainers (1)
rubygems.org: google-cloud-config_service

Creates and manages Google Cloud Platform resources and infrastructure.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-config_service/
  • Licenses: Apache-2.0
  • Latest release: 2.1.0 (published about 1 month ago)
  • Last Synced: 2026-03-29T15:19:40.191Z (about 1 month ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,770 Total
  • Rankings:
    • Dependent packages count: 15.575%
    • Dependent repos count: 48.855%
    • Average: 54.626%
    • Downloads: 99.449%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-inventories-v1beta

Programmatically manage your Merchant Center accounts. Note that google-shopping-merchant-inventories-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-inventories instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-inventories-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.10.1 (published 21 days ago)
  • Last Synced: 2026-04-09T20:32:50.964Z (21 days ago)
  • Versions: 17
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 6,731 Total
  • Rankings:
    • Dependent packages count: 15.783%
    • Dependent repos count: 48.893%
    • Average: 54.7%
    • Downloads: 99.423%
  • Maintainers (1)
debian-11: ruby-google-cloud-env

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-env
  • Documentation: https://packages.debian.org/bullseye/ruby-google-cloud-env
  • Licenses:
  • Latest release: 1.3.2-1 (published 3 months ago)
  • Last Synced: 2026-03-14T04:24:06.953Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.10: ruby-google-cloud-errors

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-errors
  • Licenses:
  • Latest release: 1.3.0-2 (published 3 months ago)
  • Last Synced: 2026-03-14T02:17:28.339Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.04: ruby-google-cloud-env

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-env
  • Licenses:
  • Latest release: 1.3.2-1 (published 3 months ago)
  • Last Synced: 2026-03-12T01:19:22.511Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.10: ruby-google-cloud-env

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-env
  • Licenses:
  • Latest release: 1.6.0-1 (published 3 months ago)
  • Last Synced: 2026-03-14T02:17:27.818Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-20.04: ruby-google-cloud-env

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-env
  • Licenses:
  • Latest release: 1.2.0-2 (published 3 months ago)
  • Last Synced: 2026-03-13T14:28:28.755Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.04: ruby-google-cloud-errors

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-errors
  • Licenses:
  • Latest release: 1.3.0-2 (published 3 months ago)
  • Last Synced: 2026-03-12T01:19:21.618Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-20.04: ruby-google-cloud-translate

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-translate
  • Licenses:
  • Latest release: 1.3.0-2 (published 3 months ago)
  • Last Synced: 2026-03-13T13:25:22.413Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.04: ruby-google-cloud-errors

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-errors
  • Licenses:
  • Latest release: 1.3.1-1 (published 3 months ago)
  • Last Synced: 2026-03-06T15:59:14.957Z (about 2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • ruby/setup-ruby v1 composite
.github/workflows/new-library.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
.github/workflows/owlbot.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
.github/workflows/storage-retry-conformance-test-against-emulator.yaml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
  • gcr.io/cloud-devrel-public-resources/storage-testbench latest docker
.github/workflows/update-pr.yml actions
  • actions/checkout v3 composite
  • ruby/setup-ruby v1 composite
Gemfile rubygems
  • gems ~> 1.2
  • google-style ~> 1.25, >= 1.25.1
  • minitest ~> 5.14
  • minitest-focus ~> 1.1
  • minitest-rg ~> 5.2
  • pry ~> 0.14.1
  • rake ~> 13.0
  • redcarpet ~> 3.0
  • rubocop ~> 1.13
  • yard ~> 0.9, >= 0.9.26
google-analytics-admin/Gemfile rubygems
  • google-analytics-admin-v1alpha >= 0
google-analytics-admin/google-analytics-admin.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-analytics-admin-v1alpha >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-analytics-admin-v1alpha/google-analytics-admin-v1alpha.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-analytics-admin-v1alpha/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-analytics-admin-v1alpha >= 0
google-analytics-data/Gemfile rubygems
  • google-analytics-data-v1beta >= 0
google-analytics-data/google-analytics-data.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-analytics-data-v1beta >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-analytics-data-v1beta/google-analytics-data-v1beta.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-analytics-data-v1beta/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-analytics-data-v1beta >= 0
google-area120-tables/Gemfile rubygems
  • google-area120-tables-v1alpha1 >= 0
google-area120-tables/google-area120-tables.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-area120-tables-v1alpha1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-area120-tables-v1alpha1/google-area120-tables-v1alpha1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-area120-tables-v1alpha1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-area120-tables-v1alpha1 >= 0
google-cloud-access_approval/Gemfile rubygems
  • google-cloud-access_approval-v1 >= 0
google-cloud-access_approval/google-cloud-access_approval.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-access_approval-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-access_approval-v1/google-cloud-access_approval-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-access_approval-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-access_approval-v1 >= 0
google-cloud-ai_platform/Gemfile rubygems
  • google-cloud-ai_platform-v1 >= 0
google-cloud-ai_platform/google-cloud-ai_platform.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-ai_platform-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-ai_platform-v1/google-cloud-ai_platform-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-ai_platform-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-ai_platform-v1 >= 0
google-cloud-api_gateway/Gemfile rubygems
  • google-cloud-api_gateway-v1 >= 0
google-cloud-api_gateway/google-cloud-api_gateway.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-api_gateway-v1 >= 0.1, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-api_gateway-v1/google-cloud-api_gateway-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-api_gateway-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-api_gateway-v1 >= 0
google-cloud-api_keys/Gemfile rubygems
  • google-cloud-api_keys-v2 >= 0
google-cloud-api_keys/google-cloud-api_keys.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-api_keys-v2 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-api_keys-v2/google-cloud-api_keys-v2.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-api_keys-v2/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-api_keys-v2 >= 0
google-cloud-apigee_connect/Gemfile rubygems
  • google-cloud-apigee_connect-v1 >= 0
google-cloud-apigee_connect/google-cloud-apigee_connect.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-apigee_connect-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-apigee_connect-v1/google-cloud-apigee_connect-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-apigee_connect-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-apigee_connect-v1 >= 0
google-cloud-apigee_registry/Gemfile rubygems
  • google-cloud-apigee_registry-v1 >= 0
google-cloud-apigee_registry/google-cloud-apigee_registry.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-apigee_registry-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-apigee_registry-v1/google-cloud-apigee_registry-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-apigee_registry-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-apigee_registry-v1 >= 0
google-cloud-app_engine/Gemfile rubygems
  • google-cloud-app_engine-v1 >= 0
google-cloud-app_engine/google-cloud-app_engine.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-app_engine-v1 >= 0.3, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-app_engine-v1/google-cloud-app_engine-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-app_engine-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-app_engine-v1 >= 0
google-cloud-artifact_registry/Gemfile rubygems
  • google-cloud-artifact_registry-v1 >= 0
  • google-cloud-artifact_registry-v1beta2 >= 0
google-cloud-artifact_registry/google-cloud-artifact_registry.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-artifact_registry-v1 >= 0.0, < 2.a
  • google-cloud-artifact_registry-v1beta2 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-artifact_registry-v1/google-cloud-artifact_registry-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • grpc-google-iam-v1 ~> 1.1
google-cloud-artifact_registry-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-artifact_registry-v1 >= 0
google-cloud-artifact_registry-v1beta2/google-cloud-artifact_registry-v1beta2.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • grpc-google-iam-v1 ~> 1.1
google-cloud-artifact_registry-v1beta2/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-artifact_registry-v1beta2 >= 0
google-cloud-asset/Gemfile rubygems
  • google-cloud-asset-v1 >= 0
google-cloud-asset/google-cloud-asset.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-asset-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-asset/samples/Gemfile rubygems
  • google-cloud-bigquery >= 0 development
  • google-cloud-pubsub >= 0 development
  • google-cloud-storage >= 0 development
  • minitest ~> 5.14 development
  • rake >= 0 development
  • google-cloud-asset >= 0
  • google-cloud-asset-v1 >= 0
google-cloud-asset-v1/google-cloud-asset-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-os_config-v1 > 0.0, < 2.a
  • google-identity-access_context_manager-v1 > 0.0, < 2.a
  • grpc-google-iam-v1 ~> 1.1
google-cloud-asset-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-asset-v1 >= 0
google-cloud-assured_workloads/Gemfile rubygems
  • google-cloud-assured_workloads-v1 >= 0
  • google-cloud-assured_workloads-v1beta1 >= 0
google-cloud-assured_workloads/google-cloud-assured_workloads.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-assured_workloads-v1 >= 0.0, < 2.a
  • google-cloud-assured_workloads-v1beta1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-assured_workloads-v1/google-cloud-assured_workloads-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-assured_workloads-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-assured_workloads-v1 >= 0
google-cloud-assured_workloads-v1beta1/google-cloud-assured_workloads-v1beta1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-assured_workloads-v1beta1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-assured_workloads-v1beta1 >= 0
google-cloud-automl/Gemfile rubygems
  • google-cloud-automl-v1 >= 0
  • google-cloud-automl-v1beta1 >= 0
google-cloud-automl/google-cloud-automl.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-automl-v1 >= 0.0, < 2.a
  • google-cloud-automl-v1beta1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-automl-v1/google-cloud-automl-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-automl-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-automl-v1 >= 0
google-cloud-automl-v1beta1/google-cloud-automl-v1beta1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-automl-v1beta1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-automl-v1beta1 >= 0
google-cloud-bare_metal_solution/Gemfile rubygems
  • google-cloud-bare_metal_solution-v2 >= 0
google-cloud-bare_metal_solution/google-cloud-bare_metal_solution.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-bare_metal_solution-v2 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-bare_metal_solution-v2/google-cloud-bare_metal_solution-v2.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-bare_metal_solution-v2/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-bare_metal_solution-v2 >= 0
google-cloud-batch/Gemfile rubygems
  • google-cloud-batch-v1 >= 0
google-cloud-batch/google-cloud-batch.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-batch-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-batch-v1/google-cloud-batch-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-batch-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-batch-v1 >= 0
google-cloud-beyond_corp/Gemfile rubygems
  • google-cloud-beyond_corp-app_connections-v1 >= 0
  • google-cloud-beyond_corp-app_connectors-v1 >= 0
  • google-cloud-beyond_corp-app_gateways-v1 >= 0
  • google-cloud-beyond_corp-client_connector_services-v1 >= 0
  • google-cloud-beyond_corp-client_gateways-v1 >= 0
google-cloud-beyond_corp/google-cloud-beyond_corp.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-beyond_corp-app_connections-v1 >= 0.0, < 2.a
  • google-cloud-beyond_corp-app_connectors-v1 >= 0.0, < 2.a
  • google-cloud-beyond_corp-app_gateways-v1 >= 0.0, < 2.a
  • google-cloud-beyond_corp-client_connector_services-v1 >= 0.0, < 2.a
  • google-cloud-beyond_corp-client_gateways-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-beyond_corp-app_connections-v1/google-cloud-beyond_corp-app_connections-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-beyond_corp-app_connections-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-beyond_corp-app_connections-v1 >= 0
google-cloud-beyond_corp-app_connectors-v1/google-cloud-beyond_corp-app_connectors-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-beyond_corp-app_connectors-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-beyond_corp-app_connectors-v1 >= 0
google-cloud-beyond_corp-app_gateways-v1/google-cloud-beyond_corp-app_gateways-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-beyond_corp-app_gateways-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-beyond_corp-app_gateways-v1 >= 0
google-cloud-beyond_corp-client_gateways-v1/google-cloud-beyond_corp-client_gateways-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.0, < 2.a
  • google-iam-v1 >= 0.0, < 2.a
google-cloud-beyond_corp-client_gateways-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-beyond_corp-client_gateways-v1 >= 0
google-cloud-bigquery/Gemfile rubygems
  • google-cloud-core >= 0
  • google-cloud-errors >= 0
  • google-cloud-storage >= 0
  • minitest-reporters ~> 1.5.0
  • rake >= 0
google-cloud-bigquery/google-cloud-bigquery.gemspec rubygems
  • autotest-suffix ~> 1.1 development
  • google-cloud-data_catalog ~> 1.2 development
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-autotest ~> 1.0 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • yard-doctest ~> 0.1.13 development
  • concurrent-ruby ~> 1.0
  • google-apis-bigquery_v2 ~> 0.1
  • google-cloud-core ~> 1.6
  • googleauth >= 0.16.2, < 2.a
  • mini_mime ~> 1.0
google-cloud-bigquery/samples/simple_app/Gemfile rubygems
  • google-style ~> 1.25.1 development
  • minitest ~> 5.14 development
  • rake >= 0 development
  • google-cloud-bigquery >= 0
google-cloud-bigquery/samples/snippets/Gemfile rubygems
  • google-cloud-storage >= 0 development
  • google-style ~> 1.25.1 development
  • minitest ~> 5.14 development
  • minitest-focus ~> 1.1 development
  • rake >= 0 development
  • google-cloud-bigquery >= 0
  • rgeo >= 0
  • rgeo-geojson >= 0
google-cloud-bigquery-analytics_hub/Gemfile rubygems
  • google-cloud-bigquery-analytics_hub-v1 >= 0
google-cloud-bigquery-analytics_hub/google-cloud-bigquery-analytics_hub.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-bigquery-analytics_hub-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-bigquery-analytics_hub-v1/google-cloud-bigquery-analytics_hub-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • grpc-google-iam-v1 ~> 1.1
google-cloud-bigquery-analytics_hub-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-bigquery-analytics_hub-v1 >= 0
google-cloud-bigquery-connection/Gemfile rubygems
  • google-cloud-bigquery-connection-v1 >= 0
google-cloud-bigquery-connection/google-cloud-bigquery-connection.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.9 development
  • yard ~> 0.9 development
  • google-cloud-bigquery-connection-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-bigquery-connection-v1/google-cloud-bigquery-connection-v1.gemspec rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-rg ~> 5.2 development
  • rake >= 13.0 development
  • redcarpet ~> 3.0 development
  • simplecov ~> 0.18 development
  • yard ~> 0.9 development
  • gapic-common >= 0.16.0, < 2.a
  • google-cloud-errors ~> 1.0
  • grpc-google-iam-v1 ~> 1.1
google-cloud-bigquery-connection-v1/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-cloud-bigquery-connection-v1 >= 0
google-cloud-bigquery-data_exchange/Gemfile rubygems
  • google-cloud-bigquery-data_exchange-v1beta1 >= 0

Score: 32.82631853823591