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 5 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: 28,754
Total Committers: 208
Avg Commits per committer: 138.24
Development Distribution Score (DDS): 0.691

Commits in past year: 4,195
Committers in past year: 18
Avg Commits per committer in past year: 233.056
Development Distribution Score (DDS) in past year: 0.2

Name Email Commits
release-please[bot] 5****] 8892
Yoshi Automation Bot y****n@g****m 6214
gcf-owl-bot[bot] 7****] 3831
yoshi-code-bot 7****t 3156
Mike Moore m****e@b****m 2318
Daniel Azuma d****a@g****m 1405
Chris Smith q****o@g****m 1193
Heng Xiong h****8@g****m 296
Graham Paye p****e@g****m 131
Graham Paye g****8@g****m 112
André Andreassa a****a 91
Jacob Geiger j****r@g****m 76
Mend Renovate b****t@r****m 66
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
Tim Swast s****t@g****m 26
Joe Bolinger j****r@g****m 26
Jun Mukai m****i@g****m 24
Torrey Payne 1****e 22
Shubhangi Singh s****n@g****m 19
Nicholas Cook i****y 16
Hengfeng Li h****g@g****m 16
and 178 more...

Committer domains:


Issue and Pull Request metadata

Last synced: about 7 hours ago

Total issues: 716
Total pull requests: 12,789
Average time to close issues: 4 months
Average time to close pull requests: 3 days
Total issue authors: 120
Total pull request authors: 71
Average comments per issue: 2.85
Average comments per pull request: 0.82
Merged pull request: 9,840
Bot issues: 553
Bot pull requests: 11,421

Past year issues: 35
Past year pull requests: 1,311
Past year average time to close issues: 5 days
Past year average time to close pull requests: 2 days
Past year issue authors: 15
Past year pull request authors: 19
Past year average comments per issue: 0.4
Past year average comments per pull request: 0.42
Past year merged pull request: 679
Past year bot issues: 16
Past year bot pull requests: 1,121

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)
  • aandreassa (4)
  • quartzmo (4)
  • yoshi-code-bot (4)
  • JesseLovelace (4)
  • meagar (3)
  • SandeepTuniki (3)
  • sydney-munro (3)
  • torreypayne (3)
  • alanhala (2)

Top Pull Request Authors

  • release-please[bot] (8,049)
  • gcf-owl-bot[bot] (3,369)
  • yoshi-code-bot (520)
  • dazuma (222)
  • aandreassa (134)
  • renovate-bot (128)
  • shubhangi-google (62)
  • torreypayne (54)
  • viacheslav-rostovtsev (22)
  • bajajneha27 (22)
  • SandeepTuniki (20)
  • shivgautam (14)
  • YashSaraf11 (13)
  • suztomo (13)
  • NivedhaSenthil (12)

Top Issue Labels

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

Top Pull Request Labels

  • autorelease: pending (5,482)
  • owl-bot-copy (3,360)
  • kokoro:force-run (1,980)
  • autorelease: published (1,890)
  • owlbot:run (687)
  • autorelease: tagged (659)
  • autorelease: triggered (104)
  • do not merge (75)
  • api: storage (40)
  • samples (31)
  • api: bigquery (18)
  • api: spanner (18)
  • autorelease: closed (16)
  • api: firestore (13)
  • api: pubsub (10)
  • cla: yes (8)
  • automerge (5)
  • api: monitoring (4)
  • autorelease: failed (4)
  • api: datastore (4)
  • api: bigtable (4)
  • api: videostitcher (4)
  • release freeze (3)
  • dependencies (3)
  • api: cloudasset (2)
  • api: vision (2)
  • snippet-bot:no-prefix-req (2)
  • context: none (1)
  • ai-generated (1)
  • api: core (1)

Package metadata

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.11.0 (published 2 months ago)
  • Last Synced: 2026-08-17T09:41:33.487Z (about 6 hours ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,418,952 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.7.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:42.138Z (1 day ago)
  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,408,932 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)
rubygems.org: google-cloud-errors

google-cloud-errors defines error classes for google-cloud-ruby.

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-errors
  • Documentation: http://www.rubydoc.info/gems/google-cloud-errors/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published about 1 month ago)
  • Last Synced: 2026-08-17T06:11:17.924Z (about 9 hours ago)
  • Versions: 11
  • Dependent Packages: 243
  • Dependent Repositories: 12,467
  • Downloads: 263,008,305 Total
  • Docker Downloads: 502,283,850
  • Rankings:
    • Downloads: 0.134%
    • Dependent packages count: 0.175%
    • Docker downloads count: 0.281%
    • Dependent repos count: 0.307%
    • Average: 0.545%
    • Forks count: 0.922%
    • Stargazers count: 1.451%
  • 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.5.1 (published 13 days ago)
  • Last Synced: 2026-08-16T16:11:09.435Z (about 23 hours ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,345,060 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.22.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:35.876Z (1 day ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,252,031 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.5.1 (published 13 days ago)
  • Last Synced: 2026-08-16T11:11:07.016Z (1 day ago)
  • Versions: 27
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,376,243 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-vision-v1p3beta1

Cloud Vision API allows developers to easily integrate vision detection features within applications, including image labeling, face and landmark detection, optical character recognition (OCR), and tagging of explicit content. Note that google-cloud-vision-v1p3beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-vision instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-vision-v1p3beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published 2 months ago)
  • Last Synced: 2026-08-16T13:41:14.648Z (1 day ago)
  • Versions: 43
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,025,527 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.817%
    • Downloads: 2.452%
  • Maintainers (1)
gem.coop: google-cloud-bigtable-admin-v2

Cloud Bigtable is a fully managed, scalable NoSQL database service for large analytical and operational workloads. Note that google-cloud-bigtable-admin-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigtable instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigtable-admin-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.18.1 (published 11 days ago)
  • Last Synced: 2026-08-16T22:11:07.480Z (about 17 hours ago)
  • Versions: 68
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,693,280 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.875%
    • Downloads: 2.624%
  • Maintainers (1)
gem.coop: google-cloud-bigtable-v2

Cloud Bigtable is a fully managed, scalable NoSQL database service for large analytical and operational workloads. Note that google-cloud-bigtable-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigtable instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigtable-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.15.1 (published 13 days ago)
  • Last Synced: 2026-08-16T09:11:40.081Z (1 day ago)
  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,675,349 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.879%
    • Downloads: 2.636%
  • Maintainers (1)
gem.coop: google-cloud-tasks-v2

Cloud Tasks is a fully managed service that allows you to manage the execution, dispatch and delivery of a large number of distributed tasks. You can asynchronously perform work outside of a user request. Your tasks can be executed on App Engine or any arbitrary HTTP endpoint. Note that google-cloud-tasks-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-tasks instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-tasks-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published 2 months ago)
  • Last Synced: 2026-08-17T01:11:57.742Z (about 14 hours ago)
  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,635,721 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.907%
    • Downloads: 2.722%
  • Maintainers (1)
gem.coop: google-cloud-tasks-v2beta2

Cloud Tasks is a fully managed service that allows you to manage the execution, dispatch and delivery of a large number of distributed tasks. You can asynchronously perform work outside of a user request. Your tasks can be executed on App Engine or any arbitrary HTTP endpoint. Note that google-cloud-tasks-v2beta2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-tasks instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-tasks-v2beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.18.1 (published 13 days ago)
  • Last Synced: 2026-08-17T03:41:09.534Z (about 12 hours ago)
  • Versions: 38
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,415,133 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.935%
    • Downloads: 2.806%
  • Maintainers (1)
gem.coop: google-cloud-monitoring-v3

Cloud Monitoring collects metrics, events, and metadata from Google Cloud, Amazon Web Services (AWS), hosted uptime probes, and application instrumentation. Note that google-cloud-monitoring-v3 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-monitoring instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-monitoring-v3/
  • Licenses: Apache-2.0
  • Latest release: 1.10.1 (published 13 days ago)
  • Last Synced: 2026-08-16T18:41:12.808Z (about 21 hours ago)
  • Versions: 47
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,371,263 Total
  • Docker Downloads: 1,935,339
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.95%
    • Docker downloads count: 1.417%
    • Downloads: 2.382%
  • Maintainers (1)
gem.coop: google-cloud-spanner-admin-database-v1

Cloud Spanner is a managed, mission-critical, globally consistent and scalable relational database service. Note that google-cloud-spanner-admin-database-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-spanner instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-spanner-admin-database-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.14.0 (published 2 months ago)
  • Last Synced: 2026-08-17T02:41:32.432Z (about 13 hours ago)
  • Versions: 56
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,381,290 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.045%
    • Downloads: 3.134%
  • Maintainers (1)
gem.coop: google-cloud-spanner-admin-instance-v1

Cloud Spanner is a managed, mission-critical, globally consistent and scalable relational database service. Note that google-cloud-spanner-admin-instance-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-spanner instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-spanner-admin-instance-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.8.0 (published 2 months ago)
  • Last Synced: 2026-08-17T09:41:33.317Z (about 6 hours ago)
  • Versions: 49
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,373,364 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.047%
    • Downloads: 3.142%
  • 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.2.0 (published 3 months ago)
  • Last Synced: 2026-08-17T04:41:30.723Z (about 11 hours ago)
  • Versions: 62
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,010,818 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-recaptcha_enterprise-v1beta1

reCAPTCHA Enterprise is a service that protects your site from spam and abuse. Note that google-cloud-recaptcha_enterprise-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-recaptcha_enterprise instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-recaptcha_enterprise-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 2 months ago)
  • Last Synced: 2026-08-17T06:41:17.467Z (about 9 hours ago)
  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,379,360 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.058%
    • Downloads: 3.174%
  • Maintainers (1)
gem.coop: 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.10.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:44.425Z (1 day ago)
  • Versions: 45
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 878,396 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.106%
    • Downloads: 3.318%
  • Maintainers (1)
gem.coop: google-cloud-translate-v2

Cloud Translation can dynamically translate text between thousands of language pairs. Translation lets websites and programs programmatically integrate with the translation service.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-translate-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.2.0 (published 2 months ago)
  • Last Synced: 2026-08-16T08:41:28.543Z (1 day ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,777,249 Total
  • Docker Downloads: 243
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.123%
    • Downloads: 2.124%
    • Docker downloads count: 2.369%
  • 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.10.1 (published 13 days ago)
  • Last Synced: 2026-08-16T09:41:47.799Z (1 day ago)
  • Versions: 52
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 827,410 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.222%
    • Downloads: 3.665%
  • Maintainers (1)
gem.coop: google-cloud-dataplex

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.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dataplex/
  • Licenses: Apache-2.0
  • Latest release: 2.4.1 (published 13 days ago)
  • Last Synced: 2026-08-16T12:41:08.716Z (1 day ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 800,489 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.238%
    • Downloads: 3.713%
  • Maintainers (1)
gem.coop: google-cloud-dialogflow

Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow ES, providing the standard agent type suitable for small and simple agents.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dialogflow/
  • Licenses: Apache-2.0
  • Latest release: 1.15.1 (published 13 days ago)
  • Last Synced: 2026-08-16T09:41:53.243Z (1 day ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,393,059 Total
  • Docker Downloads: 231
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.276%
    • Docker downloads count: 2.374%
    • Downloads: 2.728%
  • Maintainers (1)
gem.coop: google-cloud-ai_platform

Vertex AI enables data scientists, developers, and AI newcomers to create custom machine learning models specific to their business needs by leveraging Google's state-of-the-art transfer learning and innovative AI research.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-ai_platform/
  • Licenses: Apache-2.0
  • Latest release: 2.4.1 (published 13 days ago)
  • Last Synced: 2026-08-17T08:11:10.479Z (about 7 hours ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 991,160 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.28%
    • Downloads: 3.84%
  • Maintainers (1)
gem.coop: google-cloud-dialogflow-v2

Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow ES, providing the standard agent type suitable for small and simple agents. Note that google-cloud-dialogflow-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dialogflow instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dialogflow-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.17.1 (published 13 days ago)
  • Last Synced: 2026-08-16T09:41:55.181Z (1 day ago)
  • Versions: 81
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,310,871 Total
  • Docker Downloads: 290
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.295%
    • Docker downloads count: 2.342%
    • Downloads: 2.84%
  • 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.13.1 (published 12 days ago)
  • Last Synced: 2026-08-16T15:11:08.724Z (1 day ago)
  • Versions: 54
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,051,389 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.323%
    • Downloads: 3.97%
  • Maintainers (1)
gem.coop: 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.9.1 (published 13 days ago)
  • Last Synced: 2026-08-16T17:11:08.748Z (about 22 hours ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,108,556 Total
  • Docker Downloads: 31
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.603%
    • Docker downloads count: 2.68%
    • Downloads: 3.733%
  • Maintainers (1)
gem.coop: google-cloud-speech-v1p1beta1

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-v1p1beta1 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-v1p1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.30.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:42.157Z (1 day ago)
  • Versions: 58
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 474,204 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.617%
    • Downloads: 4.851%
  • 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.8.1 (published 13 days ago)
  • Last Synced: 2026-08-15T12:11:11.144Z (2 days ago)
  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 525,229 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.2.1 (published 13 days ago)
  • Last Synced: 2026-08-16T19:41:10.579Z (about 20 hours ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 311,433 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.784%
    • Downloads: 5.353%
  • Maintainers (1)
gem.coop: google-cloud-workflows-v1beta

Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero.. Note that google-cloud-workflows-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-workflows instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-workflows-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.17.1 (published 13 days ago)
  • Last Synced: 2026-08-17T05:11:09.762Z (about 10 hours ago)
  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 321,128 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.863%
    • Downloads: 5.59%
  • 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.8.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:43.967Z (1 day ago)
  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 302,552 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.865%
    • Downloads: 5.594%
  • Maintainers (1)
gem.coop: google-cloud-phishing_protection

Phishing Protection helps prevent users from accessing phishing sites by identifying various signals associated with malicious content, including the use of your brand assets, classifying malicious content that uses your brand and reporting the unsafe URLs to Google Safe Browsing.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-phishing_protection/
  • Licenses: Apache-2.0
  • Latest release: 0.18.1 (published 12 days ago)
  • Last Synced: 2026-08-16T06:41:21.020Z (1 day ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 280,500 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.882%
    • Downloads: 5.645%
  • Maintainers (1)
rubygems.org: 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.2.0 (published 3 months ago)
  • Last Synced: 2026-08-16T13:11:08.694Z (1 day ago)
  • Versions: 62
  • Dependent Packages: 12
  • Dependent Repositories: 110
  • Downloads: 6,009,799 Total
  • Docker Downloads: 40
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 1.618%
    • Downloads: 1.721%
    • Average: 1.927%
    • Dependent repos count: 2.69%
    • Docker downloads count: 3.168%
  • Maintainers (1)
gem.coop: google-cloud-workflows-v1

Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero.. Note that google-cloud-workflows-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-workflows instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-workflows-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.6.1 (published 13 days ago)
  • Last Synced: 2026-08-17T00:41:56.548Z (about 15 hours ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 300,007 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.935%
    • Downloads: 5.805%
  • Maintainers (1)
gem.coop: google-cloud-asset-v1

The Cloud Asset API manages the history and inventory of Google Cloud resources. Note that google-cloud-asset-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-asset instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-asset-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.9.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:54.272Z (1 day ago)
  • Versions: 71
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 178,119 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.616%
    • Downloads: 7.847%
  • Maintainers (1)
gem.coop: google-cloud-build-v1

Cloud Build is a service that executes your builds on Google Cloud Platform infrastructure. Cloud Build can import source code from Google Cloud Storage, Cloud Source Repositories, GitHub, or Bitbucket, execute a build to your specifications, and produce artifacts such as Docker containers or Java archives. Note that google-cloud-build-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-build instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-build-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.13.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:42.957Z (1 day ago)
  • Versions: 60
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 159,540 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.715%
    • Downloads: 8.145%
  • Maintainers (1)
gem.coop: google-cloud-workflows-executions-v1beta

Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero.. Note that google-cloud-workflows-executions-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-workflows instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-workflows-executions-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.13.1 (published 5 months ago)
  • Last Synced: 2026-08-16T10:02:47.075Z (1 day ago)
  • Versions: 27
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 123,271 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.068%
    • Downloads: 9.203%
  • Maintainers (1)
rubygems.org: google-cloud-secret_manager-v1

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-v1 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-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.9.0 (published about 1 month ago)
  • Last Synced: 2026-08-16T10:02:41.796Z (1 day ago)
  • Versions: 51
  • Dependent Packages: 1
  • Dependent Repositories: 23
  • Downloads: 2,739,159 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Downloads: 2.983%
    • Average: 3.606%
    • Dependent repos count: 5.027%
    • Dependent packages count: 7.655%
  • Maintainers (1)
gem.coop: 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.7.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:51.390Z (1 day ago)
  • Versions: 38
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 96,116 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.821%
    • Downloads: 11.464%
  • Maintainers (1)
rubygems.org: 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.2.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:52.966Z (1 day ago)
  • Versions: 39
  • Dependent Packages: 1
  • Dependent Repositories: 28
  • Downloads: 432,988 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 3.855%
    • Dependent repos count: 4.628%
    • Downloads: 4.628%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-tasks-v2beta3

Cloud Tasks is a fully managed service that allows you to manage the execution, dispatch and delivery of a large number of distributed tasks. You can asynchronously perform work outside of a user request. Your tasks can be executed on App Engine or any arbitrary HTTP endpoint. Note that google-cloud-tasks-v2beta3 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-tasks instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-tasks-v2beta3/
  • Licenses: Apache-2.0
  • Latest release: 0.20.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:52.651Z (1 day ago)
  • Versions: 41
  • Dependent Packages: 1
  • Dependent Repositories: 14
  • Downloads: 1,412,238 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Downloads: 3.507%
    • Average: 3.948%
    • Dependent repos count: 6.213%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: google-cloud-tasks-v2beta2

Cloud Tasks is a fully managed service that allows you to manage the execution, dispatch and delivery of a large number of distributed tasks. You can asynchronously perform work outside of a user request. Your tasks can be executed on App Engine or any arbitrary HTTP endpoint. Note that google-cloud-tasks-v2beta2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-tasks instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-tasks-v2beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.18.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:49.979Z (1 day ago)
  • Versions: 38
  • Dependent Packages: 1
  • Dependent Repositories: 14
  • Downloads: 1,414,986 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Downloads: 3.514%
    • Average: 3.95%
    • Dependent repos count: 6.213%
    • Dependent packages count: 7.655%
  • Maintainers (1)
rubygems.org: 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.8.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:46.463Z (1 day ago)
  • Versions: 44
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 302,552 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 4.806%
    • Downloads: 5.568%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
  • Maintainers (1)
rubygems.org: google-cloud-monitoring-metrics_scope-v1

Cloud Monitoring collects metrics, events, and metadata from Google Cloud, Amazon Web Services (AWS), hosted uptime probes, and application instrumentation. The Metrics Scopes API manages the list of monitored projects and accounts. Note that google-cloud-monitoring-metrics_scope-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-monitoring instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-monitoring-metrics_scope-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.8.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:41.529Z (1 day ago)
  • Versions: 24
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 925,868 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 4.858%
    • Downloads: 5.827%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
  • Maintainers (1)
rubygems.org: google-cloud-video_intelligence-v1

Detects objects, explicit content, and scene changes in videos. It also specifies the region for annotation and transcribes speech to text. Supports both asynchronous API and streaming API. Note that google-cloud-video_intelligence-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video_intelligence instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-video_intelligence-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:47.164Z (1 day ago)
  • Versions: 39
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 252,451 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 6.579%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Downloads: 13.75%
  • Maintainers (1)
gem.coop: google-cloud-os_login-v1beta

Use OS Login to manage SSH access to your instances using IAM without having to create and manage individual SSH keys. OS Login maintains a consistent Linux user identity across VM instances and is the recommended way to manage many users across multiple instances or projects. Note that google-cloud-os_login-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-os_login instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-os_login-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:35.711Z (1 day ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 38,299 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.658%
    • Downloads: 19.975%
  • 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.18.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:54.810Z (1 day ago)
  • Versions: 37
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 80,491 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)
rubygems.org: google-cloud-workflows-executions-v1beta

Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero.. Note that google-cloud-workflows-executions-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-workflows instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-workflows-executions-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.13.1 (published 5 months ago)
  • Last Synced: 2026-08-16T10:02:52.540Z (1 day ago)
  • Versions: 27
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 123,271 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Average: 7.211%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Downloads: 16.908%
  • 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.18.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:54.422Z (1 day ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,490 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.364%
    • Downloads: 22.093%
  • Maintainers (1)
gem.coop: google-cloud-binary_authorization-v1beta1

Binary Authorization is a service on Google Cloud that provides centralized software supply-chain security for applications that run on Google Kubernetes Engine (GKE) and GKE on-prem. Note that google-cloud-binary_authorization-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-binary_authorization instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-binary_authorization-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published about 1 month ago)
  • Last Synced: 2026-08-16T18:22:13.944Z (about 21 hours ago)
  • Versions: 33
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,190 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.628%
    • Downloads: 22.885%
  • Maintainers (1)
rubygems.org: google-cloud-os_login-v1beta

Use OS Login to manage SSH access to your instances using IAM without having to create and manage individual SSH keys. OS Login maintains a consistent Linux user identity across VM instances and is the recommended way to manage many users across multiple instances or projects. Note that google-cloud-os_login-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-os_login instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-os_login-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:41.277Z (1 day ago)
  • Versions: 41
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 38,299 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 8.568%
    • Downloads: 24.375%
  • Maintainers (1)
rubygems.org: google-cloud-os_login-v1

Use OS Login to manage SSH access to your instances using IAM without having to create and manage individual SSH keys. OS Login maintains a consistent Linux user identity across VM instances and is the recommended way to manage many users across multiple instances or projects. Note that google-cloud-os_login-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-os_login instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-os_login-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:47.715Z (1 day ago)
  • Versions: 38
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 36,526 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 8.616%
    • Downloads: 24.613%
  • Maintainers (1)
rubygems.org: google-cloud-bigquery-reservation-v1

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. Note that google-cloud-bigquery-reservation-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigquery-reservation instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-reservation-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.12.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:41.634Z (1 day ago)
  • Versions: 40
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 43,439 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 9.287%
    • Downloads: 27.973%
  • Maintainers (1)
rubygems.org: 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.18.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:48.488Z (1 day ago)
  • Versions: 35
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 36,490 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 9.337%
    • Downloads: 28.219%
  • Maintainers (1)
rubygems.org: google-cloud-workflows-v1

Workflows link series of serverless tasks together in an order you define. Combine the power of Google Cloud's APIs, serverless products like Cloud Functions and Cloud Run, and calls to external APIs to create flexible serverless applications. Workflows requires no infrastructure management and scales seamlessly with demand, including scaling down to zero.. Note that google-cloud-workflows-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-workflows instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-workflows-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.6.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:46.779Z (1 day ago)
  • Versions: 31
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 299,999 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Average: 9.967%
    • Downloads: 30.691%
  • Maintainers (1)
rubygems.org: google-cloud-policy_troubleshooter-v1

Policy Troubleshooter makes it easier to understand why a user has access to a resource or doesn't have permission to call an API. Given an email, resource, and permission, Policy Troubleshooter will examine all IAM policies that apply to the resource. It then reveals whether the member's roles include the permission on that resource and, if so, which policies bind the member to those roles. Note that google-cloud-policy_troubleshooter-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-policy_troubleshooter instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-policy_troubleshooter-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:53.006Z (1 day ago)
  • Versions: 33
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 29,920 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 10.28%
    • Downloads: 32.933%
  • Maintainers (1)
rubygems.org: google-cloud-memcache-v1beta2

Google Cloud Memorystore for Memcached API is used for creating and managing Memcached instances in GCP. Note that google-cloud-memcache-v1beta2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-memcache instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-memcache-v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.18.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:53.181Z (1 day ago)
  • Versions: 34
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 28,928 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 10.608%
    • Downloads: 34.576%
  • Maintainers (1)
rubygems.org: google-cloud-network_connectivity-v1alpha1

Network Connectivity is Google's suite of products that provide enterprise connectivity from your on-premises network or from another cloud provider to your Virtual Private Cloud (VPC) network. Note that google-cloud-network_connectivity-v1alpha1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-network_connectivity instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-network_connectivity-v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:52.529Z (1 day ago)
  • Versions: 28
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 25,721 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 10.923%
    • Downloads: 36.152%
  • Maintainers (1)
gem.coop: google-cloud-cloud_dms-v1

Database Migration Service makes it easier for you to migrate your data to Google Cloud. Database Migration Service helps you lift and shift your MySQL and PostgreSQL workloads into Cloud SQL. Database Migration Service streamlines networking workflow, manages the initial snapshot and ongoing replication, and provides a status of the migration operation. Note that google-cloud-cloud_dms-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-cloud_dms instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-cloud_dms-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.8.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:42.028Z (1 day ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 22,010 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 10.954%
    • Downloads: 32.862%
  • Maintainers (1)
rubygems.org: google-cloud-metastore-v1beta

Dataproc Metastore is a fully managed, highly available within a region, autohealing serverless Apache Hive metastore (HMS) on Google Cloud for data analytics products. It supports HMS and serves as a critical component for managing the metadata of relational entities and provides interoperability between data processing applications in the open source data ecosystem. Note that google-cloud-metastore-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-metastore instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-metastore-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.22.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:46.828Z (1 day ago)
  • Versions: 34
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 26,115 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 11.904%
    • Downloads: 41.054%
  • Maintainers (1)
gem.coop: 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.5.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:55.382Z (1 day ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,617 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.068%
    • Downloads: 36.205%
  • Maintainers (1)
gem.coop: google-cloud-media_translation

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.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-media_translation/
  • Licenses: Apache-2.0
  • Latest release: 0.8.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:46.609Z (1 day ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 17,290 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.148%
    • Downloads: 36.443%
  • Maintainers (1)
rubygems.org: google-cloud-tpu-v1

Tensor Processing Units (TPUs) are Google's custom-developed application-specific integrated circuits (ASICs) used to accelerate machine learning workloads. Cloud TPUs allow you to access TPUs from Compute Engine, Google Kubernetes Engine and AI Platform. Note that google-cloud-tpu-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-tpu instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-tpu-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:53.091Z (1 day ago)
  • Versions: 26
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 20,115 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 13.647%
    • Downloads: 49.769%
  • Maintainers (1)
rubygems.org: google-cloud-apigee_connect-v1

Apigee Connect allows the Apigee hybrid management plane to connect securely to the MART service in the runtime plane without requiring you to expose the MART endpoint on the internet. If you use Apigee Connect, you do not need to configure the MART ingress gateway with a host alias and an authorized DNS certificate. Note that google-cloud-apigee_connect-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-apigee_connect instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-apigee_connect-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.7.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:53.071Z (1 day ago)
  • Versions: 24
  • Dependent Packages: 1
  • Dependent Repositories: 7
  • Downloads: 18,748 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 8.443%
    • Average: 13.82%
    • Downloads: 50.636%
  • Maintainers (1)
gem.coop: google-cloud-dataqna

Data QnA is a natural language question and answer service for BigQuery data.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dataqna/
  • Licenses: Apache-2.0
  • Latest release: 0.8.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:48.810Z (1 day ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,935 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 17.387%
    • Downloads: 52.16%
  • Maintainers (1)
gem.coop: google-cloud-bigquery-data_exchange-v1beta1

Analytics Hub is a data exchange that allows you to efficiently and securely exchange data assets across organizations to address challenges of data reliability and cost. Curate a library of internal and external assets, including unique datasets like Google Trends, backed by the power of BigQuery. Note that google-cloud-bigquery-data_exchange-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigquery-data_exchange instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-data_exchange-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:48.655Z (1 day ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 11,858 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 17.614%
    • Downloads: 52.842%
  • Maintainers (1)
rubygems.org: google-cloud-notebooks-v1

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. Note that google-cloud-notebooks-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-notebooks instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-notebooks-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:34.459Z (1 day ago)
  • Versions: 27
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 17,536 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Average: 17.762%
    • Downloads: 69.662%
  • Maintainers (1)
rubygems.org: google-cloud-service_control

The Service Control API provides control plane functionality to managed services, such as logging, monitoring, and status checks.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-service_control/
  • Licenses: Apache-2.0
  • Latest release: 1.7.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:54.503Z (1 day ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 24,838 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 19.758%
    • Downloads: 34.018%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-cloud-beyond_corp-app_connectors-v1

Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution. Note that google-cloud-beyond_corp-app_connectors-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-beyond_corp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-beyond_corp-app_connectors-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:47.831Z (1 day ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10,177 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.114%
    • Downloads: 60.342%
  • Maintainers (1)
rubygems.org: google-cloud-billing-budgets

Provides methods to view, create, and manage Cloud Billing budgets programmatically at scale.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-billing-budgets/
  • Licenses: Apache-2.0
  • Latest release: 3.2.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:53.061Z (1 day ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 23,681 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 20.514%
    • Downloads: 37.802%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-cloud-bare_metal_solution-v2

Bare Metal Solution is a managed solution that provides purpose-built HPE or Atos bare-metal servers in regional extensions that are connected to Google Cloud by a managed, high-performance connection with a low-latency network fabric. Note that google-cloud-bare_metal_solution-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bare_metal_solution instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bare_metal_solution-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.6.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:46.740Z (1 day ago)
  • Versions: 24
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 13,373 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Average: 21.831%
    • Downloads: 90.011%
  • Maintainers (1)
rubygems.org: google-cloud-bigquery-data_exchange-v1beta1

Analytics Hub is a data exchange that allows you to efficiently and securely exchange data assets across organizations to address challenges of data reliability and cost. Curate a library of internal and external assets, including unique datasets like Google Trends, backed by the power of BigQuery. Note that google-cloud-bigquery-data_exchange-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigquery-data_exchange instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-data_exchange-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:49.734Z (1 day ago)
  • Versions: 19
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 11,858 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Average: 21.9%
    • Downloads: 90.352%
  • Maintainers (1)
rubygems.org: google-cloud-beyond_corp-app_gateways-v1

Beyondcorp Enterprise provides identity and context aware access controls for enterprise resources and enables zero-trust access. Using the Beyondcorp Enterprise APIs, enterprises can set up multi-cloud and on-prem connectivity using the App Connector hybrid connectivity solution. Note that google-cloud-beyond_corp-app_gateways-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-beyond_corp instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-beyond_corp-app_gateways-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:34.517Z (1 day ago)
  • Versions: 20
  • Dependent Packages: 1
  • Dependent Repositories: 6
  • Downloads: 10,512 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent packages count: 7.655%
    • Dependent repos count: 9.125%
    • Average: 23.121%
    • Downloads: 96.458%
  • Maintainers (1)
rubygems.org: google-cloud-speech-v2

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-v2 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-v2/
  • Licenses: Apache-2.0
  • Latest release: 1.8.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:38.996Z (1 day ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 5
  • Downloads: 352,314 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent repos count: 9.91%
    • Dependent packages count: 15.576%
    • Average: 23.572%
    • Downloads: 90.005%
  • Maintainers (1)
gem.coop: google-maps-fleet_engine-v1

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. Note that google-maps-fleet_engine-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-maps-fleet_engine instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-maps-fleet_engine-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.10.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:50.082Z (1 day ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 7,546 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 25.9%
    • Downloads: 77.699%
  • Maintainers (1)
rubygems.org: google-cloud-dialogflow-cx

Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow CX, providing an advanced agent type suitable for large or very complex agents.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-dialogflow-cx/
  • Licenses: Apache-2.0
  • Latest release: 1.5.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:47.846Z (1 day ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,699 Total
  • Rankings:
    • Forks count: 0.869%
    • Stargazers count: 1.399%
    • Dependent packages count: 15.706%
    • Average: 26.302%
    • Dependent repos count: 46.782%
    • Downloads: 66.754%
  • Maintainers (1)
rubygems.org: google-cloud-data_catalog-v1beta1

Data Catalog 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-v1beta1 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-v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:48.763Z (1 day ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 11,363 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent repos count: 15.508%
    • Dependent packages count: 15.576%
    • Average: 26.376%
    • Downloads: 98.429%
  • Maintainers (1)
rubygems.org: google-cloud-alloy_db-v1alpha

AlloyDB for PostgreSQL is an open source-compatible database service that provides a powerful option for migrating, modernizing, or building commercial-grade applications. It offers full compatibility with standard PostgreSQL, and is more than 4x faster for transactional workloads and up to 100x faster for analytical queries than standard PostgreSQL in our performance tests. AlloyDB for PostgreSQL offers a 99.99 percent availability SLA inclusive of maintenance. AlloyDB is optimized for the most demanding use cases, allowing you to build new applications that require high transaction throughput, large database sizes, or multiple read resources; scale existing PostgreSQL workloads with no application changes; and modernize legacy proprietary databases. Note that google-cloud-alloy_db-v1alpha is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-alloy_db instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-alloy_db-v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:53.839Z (1 day ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 13,564 Total
  • Rankings:
    • Forks count: 0.902%
    • Stargazers count: 1.464%
    • Dependent repos count: 15.508%
    • Dependent packages count: 15.576%
    • Average: 26.421%
    • Downloads: 98.656%
  • Maintainers (1)
gem.coop: google-shopping-merchant-products

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-products/
  • Licenses: Apache-2.0
  • Latest release: 0.5.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:47.152Z (1 day ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 7,377 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.987%
    • Downloads: 83.961%
  • Maintainers (1)
rubygems.org: google-cloud-maintenance-api-v1

The Maintenance API provides a centralized view of planned disruptive maintenance events across supported Google Cloud products. It offers users visibility into upcoming, ongoing, and completed maintenance, along with controls to manage certain maintenance activities, such as maintenance windows, rescheduling, and on-demand updates. Note that google-cloud-maintenance-api-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-maintenance-api instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-maintenance-api-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.0.1 (published 12 days ago)
  • Last Synced: 2026-08-16T10:02:48.496Z (1 day ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,251 Total
  • Rankings:
    • Forks count: 0.926%
    • Stargazers count: 1.369%
    • Dependent packages count: 14.022%
    • Average: 30.28%
    • Dependent repos count: 42.947%
    • Downloads: 92.137%
  • Maintainers (1)
rubygems.org: google-cloud-ids

Cloud IDS is an intrusion detection service that provides threat detection for intrusions, malware, spyware, and command-and-control attacks on your network. Cloud IDS works by creating a Google-managed peered network with mirrored VMs. Traffic in the peered network is mirrored, and then inspected by Palo Alto Networks threat protection technologies to provide advanced threat detection. You can mirror all traffic or you can mirror filtered traffic, based on protocol, IP address range, or ingress and egress.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-ids/
  • Licenses: Apache-2.0
  • Latest release: 2.2.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:53.089Z (1 day ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 28,932 Total
  • Rankings:
    • Forks count: 1.026%
    • Stargazers count: 1.507%
    • Dependent packages count: 15.706%
    • Average: 30.731%
    • Dependent repos count: 46.782%
    • Downloads: 88.634%
  • Maintainers (1)
gem.coop: google-shopping-merchant-reviews

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-reviews/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:41.705Z (1 day ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,847 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 30.919%
    • Downloads: 92.757%
  • Maintainers (1)
rubygems.org: google-cloud-video-stitcher

The Video Stitcher API allows you to manipulate video content to dynamically insert ads prior to delivery to client devices. Using the Video Stitcher API, you can monetize your video-on-demand (VOD) and livestreaming videos by inserting ads as described by metadata stored on ad servers.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-video-stitcher/
  • Licenses: Apache-2.0
  • Latest release: 1.3.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:48.928Z (1 day ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,746 Total
  • Rankings:
    • Forks count: 0.945%
    • Stargazers count: 1.337%
    • Dependent packages count: 15.706%
    • Average: 31.977%
    • Dependent repos count: 46.782%
    • Downloads: 95.117%
  • Maintainers (1)
rubygems.org: google-cloud-apigee_registry

The Apigee Registry API allows teams to upload and share machine-readable descriptions of APIs that are in use and in development. These descriptions include API specifications in standard formats like OpenAPI, the Google API Discovery Service Format, and the Protocol Buffers Language. These API specifications can be used by tools like linters, browsers, documentation generators, test runners, proxies, and API client and server generators. The Registry API itself can be seen as a machine-readable enterprise API catalog designed to back online directories, portals, and workflow managers.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-apigee_registry/
  • Licenses: Apache-2.0
  • Latest release: 1.5.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:43.495Z (1 day ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,822 Total
  • Rankings:
    • Forks count: 1.117%
    • Stargazers count: 1.618%
    • Dependent packages count: 15.706%
    • Average: 32.578%
    • Dependent repos count: 46.779%
    • Downloads: 97.673%
  • 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.2.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:03:02.287Z (1 day ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 7,679 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-shopping-merchant-order_tracking

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-order_tracking/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:34.451Z (1 day ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,955 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.633%
    • Downloads: 97.898%
  • Maintainers (1)
rubygems.org: 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.3.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:34.294Z (1 day ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 632,701 Total
  • Rankings:
    • Forks count: 0.908%
    • Stargazers count: 1.616%
    • Dependent packages count: 15.706%
    • Average: 32.784%
    • Dependent repos count: 46.779%
    • Downloads: 98.913%
  • Maintainers (1)
gem.coop: google-shopping-merchant-data_sources-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-data_sources-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-data_sources instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-data_sources-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.5.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:44.930Z (1 day ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,081 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.817%
    • Downloads: 98.451%
  • Maintainers (1)
gem.coop: google-cloud-agent_registry-v1

Agent Registry provides the core infrastructure for your environment, bringing together autonomous agents with the consistent data contexts and tools that MCP servers offer. By consolidating these services, Agent Registry resolves common challenges in complex AI deployments, such as fragmented tool access, isolated data, and redundant services. Note that google-cloud-agent_registry-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-agent_registry instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-agent_registry-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.1.0 (published about 2 months ago)
  • Last Synced: 2026-08-16T10:02:53.102Z (1 day ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 620 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 33.059%
    • Downloads: 99.176%
  • Maintainers (1)
rubygems.org: google-cloud-vector_search

The Vector Search API provides a fully-managed, highly performant, and scalable vector database designed to power next-generation search, recommendation, and generative AI applications. It allows you to store, index, and query your data and its corresponding vector embeddings through a simple, intuitive interface. With Vector Search, you can define custom schemas for your data, insert objects with associated metadata, automatically generate embeddings from your data, and perform fast approximate nearest neighbor (ANN) searches to find semantically similar items at scale.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-vector_search/
  • Licenses: Apache-2.0
  • Latest release: 0.1.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:49.816Z (1 day ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,770 Total
  • Rankings:
    • Dependent packages count: 13.601%
    • Dependent repos count: 41.658%
    • Average: 49.106%
    • Downloads: 92.06%
  • Maintainers (1)
rubygems.org: google-cloud-gemini_data_analytics-v1

The Gemini Data Analytics API enables developers to build intelligent data analytics applications. Leverage AI-powered chat interfaces to allow users to interact with and analyze structured data using natural language. Note that google-cloud-gemini_data_analytics-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-gemini_data_analytics instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-gemini_data_analytics-v1/
  • Licenses: Apache-2.0
  • Latest release: 1.0.0 (published about 1 month ago)
  • Last Synced: 2026-08-16T10:02:53.701Z (1 day ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,951 Total
  • Rankings:
    • Dependent packages count: 13.738%
    • Dependent repos count: 42.076%
    • Average: 49.29%
    • Downloads: 92.057%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-reports-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-reports-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-reports instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-reports-v1/
  • Licenses: Apache-2.0
  • Latest release: 0.5.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:42.145Z (1 day ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,549 Total
  • Rankings:
    • Dependent packages count: 14.319%
    • Dependent repos count: 43.861%
    • Average: 50.312%
    • Downloads: 92.755%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-order_tracking-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-order_tracking-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-order_tracking instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-order_tracking-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:50.075Z (1 day ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,432 Total
  • Rankings:
    • Dependent packages count: 14.404%
    • Dependent repos count: 44.122%
    • Average: 50.428%
    • Downloads: 92.757%
  • Maintainers (1)
rubygems.org: google-cloud-network_services-v1

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

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-network_services-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.12.0 (published 21 days ago)
  • Last Synced: 2026-08-16T10:02:58.991Z (1 day ago)
  • Versions: 23
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,264 Total
  • Rankings:
    • Dependent packages count: 14.774%
    • Dependent repos count: 45.256%
    • Average: 50.933%
    • Downloads: 92.768%
  • Maintainers (1)
rubygems.org: google-cloud-storage-control

The Google Cloud Storage API allows applications to read and write data through the abstractions of buckets and objects, which are similar to directories and files except that buckets cannot contain other buckets, and directory-level operations (like directory rename) are not supported. Buckets share a single global namespace, and each bucket belongs to a specific project that has an associated owner that pays for the data stored in the bucket. This API is accessed using standard gRPC requests.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-storage-control/
  • Licenses: Apache-2.0
  • Latest release: 1.4.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:55.311Z (1 day ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 18,261 Total
  • Rankings:
    • Dependent packages count: 14.627%
    • Dependent repos count: 45.37%
    • Average: 51.861%
    • Downloads: 95.586%
  • Maintainers (1)
rubygems.org: google-shopping-merchant-quota-v1beta

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

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-quota-v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:53.243Z (1 day ago)
  • Versions: 12
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 5,159 Total
  • Rankings:
    • Dependent packages count: 15.174%
    • Dependent repos count: 47.07%
    • Average: 53.387%
    • Downloads: 97.918%
  • Maintainers (1)
rubygems.org: 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.4.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:53.096Z (1 day ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,510 Total
  • Rankings:
    • Dependent packages count: 15.691%
    • Dependent repos count: 46.924%
    • Average: 54.083%
    • Downloads: 99.632%
  • Maintainers (1)
rubygems.org: google-cloud-migration_center-v1

A unified platform that helps you accelerate your end-to-end cloud journey from your current on-premises or cloud environments to Google Cloud. Note that google-cloud-migration_center-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-migration_center instead. See the readme for more details.

  • Homepage: https://github.com/googleapis/google-cloud-ruby
  • Documentation: http://www.rubydoc.info/gems/google-cloud-migration_center-v1/
  • Licenses: Apache-2.0
  • Latest release: 2.6.1 (published 13 days ago)
  • Last Synced: 2026-08-16T10:02:48.599Z (1 day ago)
  • Versions: 20
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 9,284 Total
  • Rankings:
    • Dependent packages count: 15.569%
    • Dependent repos count: 48.885%
    • Average: 54.629%
    • Downloads: 99.433%
  • 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.11.0 (published 2 months ago)
  • Last Synced: 2026-08-16T10:02:49.833Z (1 day ago)
  • Versions: 18
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 8,551 Total
  • Rankings:
    • Dependent packages count: 15.783%
    • Dependent repos count: 48.893%
    • Average: 54.7%
    • Downloads: 99.423%
  • Maintainers (1)
debian-12: ruby-google-cloud-errors

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-errors
  • Documentation: https://packages.debian.org/bookworm/ruby-google-cloud-errors
  • Licenses: apache-2.0
  • Latest release: 1.3.0-2 (published 6 months ago)
  • Last Synced: 2026-03-13T23:43:33.306Z (5 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-22.04: ruby-google-cloud-env

  • Homepage: https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-env
  • Licenses: apache-2.0
  • Latest release: 1.3.2-1 (published 6 months ago)
  • Last Synced: 2026-03-13T23:37:11.873Z (5 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
.github/workflows/bump-version.yml actions
  • actions/checkout 3df4ab11eba7bda6032a0b82a6bb43b11571feac composite
  • ruby/setup-ruby v1 composite
.github/workflows/codeql.yml actions
  • actions/checkout 3df4ab11eba7bda6032a0b82a6bb43b11571feac composite
  • github/codeql-action/analyze v2 composite
  • github/codeql-action/init v2 composite
.github/workflows/release-please-now.yml actions
  • actions/checkout 3df4ab11eba7bda6032a0b82a6bb43b11571feac composite
  • actions/setup-node v3 composite
  • ruby/setup-ruby v1 composite
google-analytics-admin-v1alpha/Gemfile rubygems
google-analytics-data-v1beta/Gemfile rubygems
google-area120-tables-v1alpha1/Gemfile rubygems
google-cloud-access_approval-v1/Gemfile rubygems
google-cloud-advisory_notifications/Gemfile rubygems
  • google-cloud-advisory_notifications-v1 >= 0
google-cloud-advisory_notifications/google-cloud-advisory_notifications.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-advisory_notifications-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-cloud-advisory_notifications-v1/Gemfile rubygems
google-cloud-advisory_notifications-v1/google-cloud-advisory_notifications-v1.gemspec rubygems
  • google-style ~> 1.26.3 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.20.0, < 2.a
  • google-cloud-errors ~> 1.0
google-cloud-advisory_notifications-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-advisory_notifications-v1 >= 0
google-cloud-ai_platform-v1/Gemfile rubygems
google-cloud-alloy_db-v1/Gemfile rubygems
google-cloud-alloy_db-v1/google-cloud-alloy_db-v1.gemspec rubygems
  • google-style ~> 1.26.3 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.20.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.4, < 2.a
  • google-iam-v1 >= 0.4, < 2.a
google-cloud-alloy_db-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-alloy_db-v1 >= 0
google-cloud-alloy_db-v1alpha/Gemfile rubygems
google-cloud-alloy_db-v1alpha/google-cloud-alloy_db-v1alpha.gemspec rubygems
  • google-style ~> 1.26.3 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.20.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.4, < 2.a
  • google-iam-v1 >= 0.4, < 2.a
google-cloud-alloy_db-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-cloud-alloy_db-v1alpha >= 0
google-cloud-alloy_db-v1beta/Gemfile rubygems
google-cloud-alloy_db-v1beta/google-cloud-alloy_db-v1beta.gemspec rubygems
  • google-style ~> 1.26.3 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.20.0, < 2.a
  • google-cloud-errors ~> 1.0
  • google-cloud-location >= 0.4, < 2.a
  • google-iam-v1 >= 0.4, < 2.a
google-cloud-ai_platform/samples/Gemfile rubygems
  • google-style ~> 1.26.2 development
  • minitest ~> 5.17 development
  • minitest-focus ~> 1.4 development
  • minitest-rg ~> 5.2 development
  • rake >= 0 development
google-apps-meet/Gemfile rubygems
  • google-apps-meet-v2beta >= 0
google-apps-meet/google-apps-meet.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-apps-meet-v2beta >= 0.2, < 2.a
  • google-cloud-core ~> 1.6
google-apps-meet-v2beta/Gemfile rubygems
google-apps-meet-v2beta/google-apps-meet-v2beta.gemspec rubygems
  • google-style ~> 1.26.3 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.21.1, < 2.a
  • google-cloud-errors ~> 1.0
google-apps-meet-v2beta/snippets/Gemfile rubygems
  • google-style ~> 1.26.1 development
  • minitest ~> 5.16 development
  • minitest-focus ~> 1.1 development
  • minitest-hooks ~> 1.5 development
  • google-apps-meet-v2beta >= 0
Gemfile.lock rubygems
  • ast 2.4.3
  • bundler 4.0.14
  • coderay 1.1.3
  • gems 1.3.0
  • google-style 1.31.1
  • json 2.21.2
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • method_source 1.1.0
  • minitest 5.27.0
  • minitest-focus 1.4.1
  • minitest-rg 5.4.0
  • parallel 1.28.0
  • parser 3.3.12.0
  • prism 1.9.0
  • pry 0.14.2
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • yard 0.9.45
google-ads-ad_manager/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-ad_manager 5.0.0
  • google-ads-ad_manager-v1 2.3.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-ads-marketing_platform-admin-v1alpha/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-marketing_platform-admin-v1alpha 0.6.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-access_approval-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-access_approval-v1 1.7.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-agent_registry/google-cloud-agent_registry.gemspec rubygems
  • google-cloud-agent_registry-v1 >= 0.0, < 2.a
  • google-cloud-core ~> 1.6
google-ads-data_manager/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-data_manager 0.4.0
  • google-ads-data_manager-v1 0.7.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-ads-data_manager-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-data_manager-v1 0.7.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-ads-marketing_platform-admin/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-marketing_platform-admin 0.3.0
  • google-ads-marketing_platform-admin-v1alpha 0.6.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-events-subscriptions-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-events-subscriptions-v1 0.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-analytics-admin/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-analytics-admin 0.8.0
  • google-analytics-admin-v1alpha 0.43.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-analytics-admin-v1alpha/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-analytics-admin-v1alpha 0.43.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-meet/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-meet 1.3.0
  • google-apps-meet-v2 0.9.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-area120-tables-v1alpha1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-area120-tables-v1alpha1 0.15.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-chat/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-card-v1 1.2.0
  • google-apps-chat 1.3.0
  • google-apps-chat-v1 0.27.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-chat-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-card-v1 1.2.0
  • google-apps-chat-v1 0.27.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-analytics-data/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-analytics-data 0.9.0
  • google-analytics-data-v1beta 0.22.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-analytics-data-v1beta/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-analytics-data-v1beta 0.22.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-events-subscriptions/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-events-subscriptions 1.3.0
  • google-apps-events-subscriptions-v1 0.9.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-events-subscriptions-v1beta/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-events-subscriptions-v1beta 0.6.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-meet-v2beta/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-meet-v2beta 0.11.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-meet-v2/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-apps-meet-v2 0.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-advisory_notifications/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-advisory_notifications 1.5.0
  • google-cloud-advisory_notifications-v1 0.17.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-area120-tables/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-area120-tables 0.9.0
  • google-area120-tables-v1alpha1 0.15.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-access_approval/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-access_approval 1.8.0
  • google-cloud-access_approval-v1 1.7.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-advisory_notifications-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-advisory_notifications-v1 0.17.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-agent_registry/Gemfile rubygems
  • google-style ~> 1.32.0
  • irb ~> 1.17
  • minitest ~> 6.0.2
  • minitest-focus ~> 1.4
  • minitest-mock ~> 5.27
  • minitest-reporters ~> 1.8.0
  • minitest-rg ~> 5.3
  • ostruct ~> 0.5.5
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
google-cloud-agent_registry/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-agent_registry 0.1.0
  • google-cloud-agent_registry-v1 0.1.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-alloy_db-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-alloy_db-v1 1.10.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-alloy_db-v1beta/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-alloy_db-v1beta 0.23.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-agent_registry-v1/Gemfile rubygems
  • google-style ~> 1.32.0
  • irb ~> 1.17
  • minitest ~> 6.0.2
  • minitest-focus ~> 1.4
  • minitest-mock ~> 5.27
  • minitest-reporters ~> 1.8.0
  • minitest-rg ~> 5.3
  • ostruct ~> 0.5.5
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
google-cloud-agent_registry-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-agent_registry-v1 0.1.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-agent_registry-v1/google-cloud-agent_registry-v1.gemspec rubygems
  • gapic-common ~> 1.3
  • google-cloud-errors ~> 1.0
  • google-cloud-location ~> 1.0
google-cloud-agent_registry-v1/snippets/Gemfile rubygems
  • google-cloud-agent_registry-v1 >= 0
  • google-style ~> 1.26.1
  • minitest ~> 5.16
  • minitest-focus ~> 1.1
  • minitest-hooks ~> 1.5
google-cloud-ai_platform/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-ai_platform 2.4.0
  • google-cloud-ai_platform-v1 1.47.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.5.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-ai_platform/samples/Gemfile.lock rubygems
  • addressable 2.9.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • bundler 4.0.14
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-ai_platform 2.4.0
  • google-cloud-ai_platform-v1 1.47.0
  • google-cloud-core 1.9.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.26.4
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • logger 1.7.0
  • minitest 5.27.0
  • minitest-focus 1.4.1
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • parallel 1.28.0
  • parser 3.3.12.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • regexp_parser 2.12.0
  • rexml 3.4.4
  • rubocop 1.57.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • unicode-display_width 2.6.0
  • uri 1.1.1
google-cloud-ai_platform-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-ai_platform-v1 1.47.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-cloud-alloy_db-v1alpha/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-cloud-alloy_db-v1alpha 0.22.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-cloud-location 1.5.0
  • google-iam-v1 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.9.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • grpc-google-iam-v1 1.12.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.2
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-ads-ad_manager-v1/Gemfile.lock rubygems
  • addressable 2.9.0
  • ansi 1.6.0
  • ast 2.4.3
  • base64 0.3.0
  • bigdecimal 4.1.2
  • builder 3.3.0
  • bundler 4.0.14
  • drb 2.2.3
  • erb 6.0.6
  • faraday 2.14.3
  • faraday-net_http 3.4.4
  • faraday-retry 2.4.0
  • gapic-common 1.3.0
  • google-ads-ad_manager-v1 5.0.0
  • google-cloud-env 2.4.0
  • google-cloud-errors 1.7.0
  • google-logging-utils 0.2.0
  • google-protobuf 4.35.1
  • google-style 1.32.0
  • googleapis-common-protos 1.10.0
  • googleapis-common-protos-types 1.23.0
  • googleauth 1.17.3
  • grpc 1.83.0
  • io-console 0.8.2
  • irb 1.18.0
  • json 2.21.1
  • jwt 3.2.0
  • language_server-protocol 3.17.0.6
  • lint_roller 1.1.0
  • logger 1.7.0
  • minitest 6.0.6
  • minitest-focus 1.4.1
  • minitest-mock 5.27.0
  • minitest-reporters 1.8.0
  • minitest-rg 5.4.0
  • net-http 0.9.1
  • os 1.1.4
  • ostruct 0.5.5
  • parallel 2.1.0
  • parser 3.3.12.0
  • pp 0.6.4
  • prettyprint 0.2.0
  • prism 1.9.0
  • pstore 0.2.1
  • public_suffix 7.0.5
  • racc 1.8.1
  • rainbow 3.1.1
  • rake 13.4.2
  • rbs 4.1.1
  • rdoc 8.0.0
  • redcarpet 3.6.1
  • regexp_parser 2.12.0
  • reline 0.6.3
  • rubocop 1.88.2
  • rubocop-ast 1.50.0
  • ruby-progressbar 1.13.0
  • signet 0.22.0
  • tsort 0.2.0
  • unicode-display_width 3.2.0
  • unicode-emoji 4.2.0
  • uri 1.1.1
  • yard 0.9.45
google-apps-chat-v1/Gemfile rubygems
  • google-style ~> 1.31.1
  • minitest ~> 5.22
  • minitest-focus ~> 1.4
  • minitest-rg ~> 5.3
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
google-ads-ad_manager/Gemfile rubygems
  • google-style ~> 1.30.1
  • minitest ~> 5.22
  • minitest-focus ~> 1.4
  • minitest-rg ~> 5.3
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
google-ads-ad_manager/google-ads-ad_manager.gemspec rubygems
  • google-ads-ad_manager-v1 ~> 2.0
  • google-cloud-core ~> 1.6
google-ads-data_manager-v1/Gemfile rubygems
  • google-style ~> 1.31.1
  • minitest ~> 5.22
  • minitest-focus ~> 1.4
  • minitest-rg ~> 5.3
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
google-ads-marketing_platform-admin/Gemfile rubygems
  • google-style ~> 1.30.1
  • minitest ~> 5.22
  • minitest-focus ~> 1.4
  • minitest-rg ~> 5.3
  • rake >= 13.0
  • redcarpet ~> 3.6
  • yard ~> 0.9
.github/workflows/conformance.yaml actions
  • actions/checkout v6 composite
  • actions/setup-go v6 composite
  • ruby/setup-ruby v1 composite
google-ads-ad_manager-v1/google-ads-ad_manager-v1.gemspec rubygems
  • gapic-common ~> 1.2
  • google-cloud-errors ~> 1.0
.github/workflows/delete-library.yml actions
  • actions/checkout v6 composite
  • ruby/setup-ruby v1 composite
.github/workflows/tombstone-library.yml actions
  • actions/checkout v6 composite
  • ruby/setup-ruby v1 composite

Score: 33.283584816595166