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 6 hours ago
JSON representation
Repository metadata
Google Cloud Client Library for Ruby
- Host: GitHub
- URL: https://github.com/googleapis/google-cloud-ruby
- Owner: googleapis
- License: apache-2.0
- Created: 2014-05-30T21:47:14.000Z (about 12 years ago)
- Default Branch: main
- Last Pushed: 2026-06-15T18:13:39.000Z (about 16 hours ago)
- Last Synced: 2026-06-15T19:26:32.346Z (about 15 hours ago)
- Language: Ruby
- Homepage: https://googleapis.github.io/google-cloud-ruby/
- Size: 311 MB
- Stars: 1,419
- Watchers: 115
- Forks: 570
- Open Issues: 62
- Releases: 5,435
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
README.md
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:
.githubincludes configuration for GitHub Actions and bots that help to
maintain this repository..kokoroincludes configuration for internal Google processes that help to
maintain this repository..toysincludes scripts for running CI, releases, and maintenance tasks.acceptanceandintegrationinclude shared fixtures for acceptance tests.obsoletecontains 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:
-
Activate access to the API by creating a project on
the Google Cloud Console, enabling
billing if necessary, and enabling the API. -
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" -
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_serviceDepending on your environment and authentication needs, you might need to
provide credentials to the client object. -
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:
-
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. -
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. -
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 variableGOOGLE_APPLICATION_CREDENTIALSto 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
- Name: Google APIs
- Login: googleapis
- Email:
- Kind: organization
- Description: Clients for Google APIs and tools that help produce them.
- Website: https://googleapis.github.io
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/16785467?v=4
- Repositories: 781
- Last ynced at: 2023-04-09T04:55:29.167Z
- Profile URL: https://github.com/googleapis
GitHub Events
Total
- Create event: 4746
- Issues event: 126
- Release event: 1965
- Watch event: 43
- Delete event: 2842
- Issue comment event: 6480
- Push event: 19576
- Pull request review comment event: 261
- Pull request event: 6014
- Pull request review event: 3121
- Fork event: 24
Last Year
- Create event: 4746
- Issues event: 126
- Release event: 1965
- Watch event: 43
- Delete event: 2842
- Issue comment event: 6480
- Push event: 19576
- Pull request review comment event: 261
- Pull request event: 6014
- Pull request review event: 3121
- Fork event: 24
Committers metadata
Last synced: about 8 hours ago
Total Commits: 27,850
Total Committers: 205
Avg Commits per committer: 135.854
Development Distribution Score (DDS): 0.705
Commits in past year: 3,625
Committers in past year: 16
Avg Commits per committer in past year: 226.563
Development Distribution Score (DDS) in past year: 0.217
| Name | Commits | |
|---|---|---|
| release-please[bot] | 5****] | 8220 |
| Yoshi Automation Bot | y****n@g****m | 6214 |
| gcf-owl-bot[bot] | 7****] | 3674 |
| yoshi-code-bot | 7****t | 3142 |
| Mike Moore | m****e@b****m | 2318 |
| Daniel Azuma | d****a@g****m | 1405 |
| Chris Smith | q****o@g****m | 1190 |
| 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 | 80 |
| Jacob Geiger | j****r@g****m | 76 |
| Mend Renovate | b****t@r****m | 64 |
| Neha Bajaj | b****7 | 58 |
| DPE bot | d****t@g****m | 57 |
| Nivedha | n****l@g****m | 56 |
| Jiren Patel | j****l@g****m | 53 |
| Ernest Landrito | l****o@g****m | 51 |
| Viacheslav Rostovtsev | 5****v | 45 |
| Sandeep Tuniki | 7****i | 39 |
| Charlotte Yun | y****n@g****m | 36 |
| Song Wang | s****g@g****m | 34 |
| Diptanshu Mittal | 4****l | 27 |
| Joe Bolinger | j****r@g****m | 26 |
| Tim Swast | s****t@g****m | 26 |
| Jun Mukai | m****i@g****m | 24 |
| Shubhangi Singh | s****n@g****m | 17 |
| Nicholas Cook | i****y | 16 |
| Hengfeng Li | h****g@g****m | 16 |
| Song Wang | s****g@n****m | 14 |
| and 175 more... | ||
Committer domains:
- google.com: 43
- nestlabs.com: 2
- aiming-inc.com: 2
- marder.co: 1
- upec.jp: 1
- alexandergraefe.de: 1
- jungroup.com: 1
- squareup.com: 1
- mediamarktsaturn.com: 1
- dena.jp: 1
- purdue.edu: 1
- pwc.com: 1
- ucsd.edu: 1
- fastly.com: 1
- platform161.com: 1
- sha.kr: 1
- sethvargo.com: 1
- enigmo.co.jp: 1
- crestdata.ai: 1
- griddynamics.com: 1
- me.com: 1
- renovateapp.com: 1
- rightsup.com: 1
- kamilabo.jp: 1
- shopify.com: 1
- osmonov.com: 1
- knapo.net: 1
- kurtruppel.com: 1
- pohorecki.pl: 1
- abevoelker.com: 1
- rwhogg.site: 1
- bitstrata.com: 1
- hey.com: 1
- luppri.ch: 1
- danielbankhead.com: 1
- longlost.info: 1
- directionless.org: 1
- papkovskiy.com: 1
- toptal.com: 1
- tottori-u.ac.jp: 1
- supership.jp: 1
- rapicault.net: 1
- levosgien.net: 1
- ryanstone.io: 1
- blowmage.com: 1
Issue and Pull Request metadata
Last synced: about 16 hours ago
Total issues: 706
Total pull requests: 12,297
Average time to close issues: 4 months
Average time to close pull requests: 3 days
Total issue authors: 116
Total pull request authors: 69
Average comments per issue: 2.87
Average comments per pull request: 0.82
Merged pull request: 9,488
Bot issues: 553
Bot pull requests: 11,040
Past year issues: 29
Past year pull requests: 1,154
Past year average time to close issues: 3 days
Past year average time to close pull requests: 3 days
Past year issue authors: 14
Past year pull request authors: 20
Past year average comments per issue: 0.21
Past year average comments per pull request: 0.26
Past year merged pull request: 506
Past year bot issues: 16
Past year bot pull requests: 999
Top Issue Authors
- github-actions[bot] (472)
- release-please[bot] (36)
- failure-checker[bot] (28)
- gcf-owl-bot[bot] (15)
- dazuma (14)
- YashSaraf11 (6)
- JesseLovelace (4)
- yoshi-code-bot (4)
- meagar (3)
- SandeepTuniki (3)
- quartzmo (3)
- sydney-munro (3)
- juseveno (2)
- bajajneha27 (2)
- directionless (2)
Top Pull Request Authors
- release-please[bot] (7,808)
- gcf-owl-bot[bot] (3,229)
- yoshi-code-bot (513)
- dazuma (222)
- renovate-bot (120)
- aandreassa (118)
- shubhangi-google (55)
- viacheslav-rostovtsev (22)
- bajajneha27 (22)
- SandeepTuniki (20)
- shivgautam (14)
- YashSaraf11 (13)
- NivedhaSenthil (12)
- cy-yun (10)
- diptanshumittal (9)
Top Issue Labels
- type: bug (490)
- nightly failure (472)
- priority: p1 (464)
- type: process (36)
- autorelease: pending (35)
- priority: p2 (28)
- type: feature request (25)
- api: storage (19)
- type: question (16)
- owl-bot-copy (14)
- api: logging (13)
- priority: p3 (9)
- api: bigquery (9)
- owlbot:run (7)
- type: cleanup (6)
- api: pubsub (5)
- kokoro:force-run (5)
- type: docs (5)
- :rotating_light: (4)
- samples (4)
- api: cloudtrace (3)
- api: firestore (3)
- api: clouderrorreporting (3)
- api: dns (2)
- stackdriver (2)
- api: bigtable (1)
- api: clouddebugger (1)
- api: analyticsdata (1)
- api: datastore (1)
- autorelease: triggered (1)
Top Pull Request Labels
- autorelease: pending (5,447)
- owl-bot-copy (3,221)
- kokoro:force-run (1,958)
- autorelease: published (1,890)
- owlbot:run (685)
- autorelease: tagged (466)
- autorelease: triggered (104)
- do not merge (61)
- api: storage (40)
- samples (31)
- api: spanner (18)
- api: bigquery (18)
- api: firestore (13)
- api: pubsub (10)
- cla: yes (8)
- automerge (5)
- api: datastore (4)
- autorelease: closed (4)
- api: bigtable (4)
- autorelease: failed (4)
- api: videostitcher (4)
- api: monitoring (4)
- release freeze (3)
- dependencies (3)
- api: cloudasset (2)
- api: vision (2)
- snippet-bot:no-prefix-req (2)
- context: none (1)
- api: core (1)
- api: dlp (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 61,437,291 total
- Total docker downloads: 615
- Total dependent packages: 99 (may contain duplicates)
- Total dependent repositories: 431 (may contain duplicates)
- Total versions: 2,099
- Total maintainers: 1
gem.coop: google-cloud-recaptcha_enterprise-v1
reCAPTCHA Enterprise is a service that protects your site from spam and abuse. Note that google-cloud-recaptcha_enterprise-v1 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-v1/
- Licenses: Apache-2.0
- Latest release: 1.12.0 (published 5 days ago)
- Last Synced: 2026-06-15T04:01:26.526Z (1 day ago)
- Versions: 54
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,882,072 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.792%
- Downloads: 2.377%
- 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 5 days ago)
- Last Synced: 2026-06-15T05:01:17.044Z (1 day ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,966,363 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.817%
- Downloads: 2.452%
- Maintainers (1)
gem.coop: google-cloud-container
Builds and manages container-based applications, powered by the open source Kubernetes technology.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-container/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-15T04:00:56.095Z (1 day ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,371,666 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.923%
- Downloads: 2.769%
- Maintainers (1)
gem.coop: google-cloud-spanner-v1
Cloud Spanner is a managed, mission-critical, globally consistent and scalable relational database service. Note that google-cloud-spanner-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-v1/
- Licenses: Apache-2.0
- Latest release: 1.19.0 (published 5 days ago)
- Last Synced: 2026-06-15T05:01:30.448Z (1 day ago)
- Versions: 69
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,323,333 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.042%
- Downloads: 3.126%
- 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 about 1 month ago)
- Last Synced: 2026-06-15T05:01:53.287Z (1 day ago)
- Versions: 62
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,792,461 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-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.0 (published 5 days ago)
- Last Synced: 2026-06-15T05:01:50.184Z (1 day ago)
- Versions: 44
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 866,268 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.106%
- Downloads: 3.318%
- Maintainers (1)
gem.coop: google-cloud-security-private_ca-v1
Certificate Authority Service is a highly available, scalable Google Cloud service that enables you to simplify, automate, and customize the deployment, management, and security of private certificate authorities (CA). Note that google-cloud-security-private_ca-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-security-private_ca instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-security-private_ca-v1/
- Licenses: Apache-2.0
- Latest release: 2.8.0 (published 5 days ago)
- Last Synced: 2026-06-15T01:33:22.155Z (1 day ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 909,130 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.149%
- Downloads: 3.448%
- Maintainers (1)
gem.coop: google-cloud-data_catalog
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog/
- Licenses: Apache-2.0
- Latest release: 2.3.0 (published 5 days ago)
- Last Synced: 2026-06-15T03:38:05.169Z (1 day ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 717,488 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.182%
- Downloads: 3.545%
- 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.0 (published 5 days ago)
- Last Synced: 2026-06-15T04:34:48.002Z (1 day ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 960,518 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 5 days ago)
- Last Synced: 2026-06-15T03:02:11.548Z (1 day ago)
- Versions: 58
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 454,002 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.617%
- Downloads: 4.851%
- Maintainers (1)
gem.coop: google-cloud-security_center
Security Command Center API provides access to temporal views of assets and findings within an organization.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-security_center/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-15T03:33:52.747Z (1 day ago)
- Versions: 43
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 305,776 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.79%
- Downloads: 5.369%
- 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.0 (published 5 days ago)
- Last Synced: 2026-06-15T04:33:56.504Z (1 day ago)
- Versions: 32
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 314,426 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-v1beta1
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-v1beta1 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-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.19.0 (published 5 days ago)
- Last Synced: 2026-06-15T05:01:35.599Z (1 day ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 280,961 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.884%
- Downloads: 5.651%
- Maintainers (1)
rubygems.org: 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.825Z (5 days ago)
- Versions: 26
- Dependent Packages: 84
- Dependent Repositories: 51
- Downloads: 25,980,311 Total
- Docker Downloads: 282
-
Rankings:
- Dependent packages count: 0.504%
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 2.055%
- Docker downloads count: 2.781%
- Downloads: 3.072%
- Dependent repos count: 3.604%
- Maintainers (1)
rubygems.org: 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.212Z (5 days ago)
- Versions: 49
- Dependent Packages: 2
- Dependent Repositories: 115
- Downloads: 1,378,896 Total
- Docker Downloads: 231
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 2.415%
- Average: 2.564%
- Dependent repos count: 2.644%
- Docker downloads count: 2.781%
- Dependent packages count: 5.179%
- Maintainers (1)
gem.coop: google-analytics-admin
The Analytics Admin API allows for programmatic access to the Google Analytics App+Web configuration data. You can use the Google Analytics Admin API to manage accounts and App+Web properties.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-analytics-admin/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.021Z (5 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 200,009 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.723%
- Downloads: 8.168%
- Maintainers (1)
gem.coop: google-cloud-channel
You can use Channel Services to manage your relationships with your partners and your customers. Channel Services include a console and APIs to view and provision links between distributors and resellers, customers and entitlements.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-channel/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.041Z (5 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 138,428 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.759%
- Downloads: 8.278%
- Maintainers (1)
rubygems.org: google-cloud-container
Builds and manages container-based applications, powered by the open source Kubernetes technology.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-container/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.267Z (5 days ago)
- Versions: 39
- Dependent Packages: 3
- Dependent Repositories: 46
- Downloads: 1,370,958 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 2.711%
- Average: 2.801%
- Dependent repos count: 3.75%
- Dependent packages count: 5.179%
- Maintainers (1)
gem.coop: google-cloud-functions
The Cloud Functions API manages lightweight user-provided functions executed in response to events.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-functions/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:14.014Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 141,662 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.802%
- Downloads: 8.407%
- Maintainers (1)
gem.coop: google-cloud-dataflow
Dataflow is a managed service for executing a wide variety of data processing patterns.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataflow/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.870Z (5 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 148,353 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.831%
- Downloads: 8.492%
- Maintainers (1)
rubygems.org: google-cloud-kms
Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-kms/
- Licenses: Apache-2.0
- Latest release: 2.12.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.444Z (5 days ago)
- Versions: 45
- Dependent Packages: 2
- Dependent Repositories: 36
- Downloads: 2,096,519 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 2.541%
- Average: 2.848%
- Dependent repos count: 4.154%
- Dependent packages count: 5.179%
- Maintainers (1)
gem.coop: google-cloud-compute
google-cloud-compute is the official client library for the Google Cloud Compute API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-compute/
- Licenses: Apache-2.0
- Latest release: 1.19.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:23:14.223Z (5 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 171,031 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.117%
- Downloads: 9.351%
- Maintainers (1)
gem.coop: google-cloud-build
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-build/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.403Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 109,049 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.23%
- Downloads: 9.691%
- Maintainers (1)
rubygems.org: 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 5 days ago)
- Last Synced: 2026-06-11T05:01:25.736Z (5 days ago)
- Versions: 43
- Dependent Packages: 1
- Dependent Repositories: 45
- Downloads: 1,963,613 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 2.514%
- Average: 3.263%
- Dependent repos count: 3.779%
- Dependent packages count: 7.655%
- Maintainers (1)
rubygems.org: google-cloud-dlp
Provides methods for detection of privacy-sensitive fragments in text, images, and Google Cloud Platform storage repositories.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dlp/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.253Z (5 days ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 33
- Downloads: 865,616 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 3.003%
- Average: 3.465%
- Dependent repos count: 4.3%
- Dependent packages count: 7.655%
- Maintainers (1)
rubygems.org: google-cloud-dataproc
Manages Hadoop-based clusters and jobs on Google Cloud Platform.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataproc/
- Licenses: Apache-2.0
- Latest release: 2.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.354Z (5 days ago)
- Versions: 42
- Dependent Packages: 1
- Dependent Repositories: 32
- Downloads: 804,935 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 3.02%
- Average: 3.481%
- Dependent repos count: 4.365%
- Dependent packages count: 7.655%
- Maintainers (1)
rubygems.org: google-cloud-asset
A metadata inventory service that allows you to view, monitor, and analyze all your GCP and Anthos assets across projects and services.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-asset/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.920Z (5 days ago)
- Versions: 40
- Dependent Packages: 1
- Dependent Repositories: 31
- Downloads: 428,996 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 3.807%
- Dependent repos count: 4.435%
- Downloads: 4.579%
- 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.19.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:25.512Z (5 days ago)
- Versions: 39
- Dependent Packages: 1
- Dependent Repositories: 14
- Downloads: 1,369,415 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:25.423Z (5 days ago)
- Versions: 37
- Dependent Packages: 1
- Dependent Repositories: 14
- Downloads: 1,373,141 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)
gem.coop: google-apps-chat
The Google Chat API lets you build Chat apps to integrate your services with Google Chat and manage Chat resources such as spaces, members, and messages.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-chat/
- Licenses: Apache-2.0
- Latest release: 1.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.593Z (5 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 451,348 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.128%
- Downloads: 15.385%
- Maintainers (1)
gem.coop: google-cloud-billing
Allows developers to manage billing for their Google Cloud Platform projects programmatically.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-billing/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.404Z (5 days ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 37,255 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.675%
- Downloads: 20.025%
- Maintainers (1)
rubygems.org: google-analytics-data
The Google Analytics Data API provides programmatic methods to access report data in Google Analytics 4 (GA4) properties. Google Analytics 4 helps you understand how people use your web, iOS, or Android app.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-analytics-data/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.242Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 3
- Downloads: 953,245 Total
- Docker Downloads: 31
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 7.83%
- Downloads: 8.51%
- Dependent repos count: 12.699%
- Dependent packages count: 15.576%
- Maintainers (1)
rubygems.org: google-cloud-automl
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-automl/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.741Z (5 days ago)
- Versions: 28
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 321,883 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 5.153%
- Average: 8.978%
- Dependent packages count: 15.576%
- Dependent repos count: 21.793%
- Maintainers (1)
gem.coop: google-cloud-notebooks
AI Platform Notebooks makes it easy to manage JupyterLab instances through a protected, publicly available notebook instance URL. A JupyterLab instance is a Deep Learning virtual machine instance with the latest machine learning and data science libraries pre-installed.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-notebooks/
- Licenses: Apache-2.0
- Latest release: 3.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:15.588Z (5 days ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,559 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 10.284%
- Downloads: 30.852%
- Maintainers (1)
rubygems.org: google-cloud-build
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-build/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.554Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 109,049 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 10.424%
- Downloads: 12.382%
- Dependent packages count: 15.576%
- Dependent repos count: 21.793%
- Maintainers (1)
gem.coop: google-cloud-memcache
Google Cloud Memorystore for Memcached API is used for creating and managing Memcached instances in GCP.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-memcache/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:14.854Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,292 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 10.545%
- Downloads: 31.635%
- Maintainers (1)
rubygems.org: google-cloud-functions
The Cloud Functions API manages lightweight user-provided functions executed in response to events.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-functions/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.211Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 1
- Downloads: 141,662 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 10.813%
- Downloads: 14.329%
- Dependent packages count: 15.576%
- Dependent repos count: 21.793%
- Maintainers (1)
gem.coop: google-cloud-domains
The Cloud Domains API provides registration, management and configuration of domain names.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-domains/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:47:24.847Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,307 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.304%
- Downloads: 36.912%
- Maintainers (1)
gem.coop: 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:13.320Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 24,203 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.328%
- Downloads: 36.985%
- Maintainers (1)
gem.coop: google-cloud-iap
IAP lets you establish a central authorization layer for applications accessed by HTTPS, so you can use an application-level access control model instead of relying on network-level firewalls.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-iap/
- Licenses: Apache-2.0
- Latest release: 1.7.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:13.315Z (5 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,104 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.83%
- Downloads: 38.489%
- Maintainers (1)
gem.coop: google-cloud-metastore
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-metastore/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:14.843Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,552 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.962%
- Downloads: 38.885%
- Maintainers (1)
gem.coop: google-area120-tables
Using the Area 120 Tables API, you can query for tables, and update/create/delete rows within tables programmatically.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-area120-tables/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.402Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,336 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 13.34%
- Downloads: 40.02%
- 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:25.116Z (5 days ago)
- Versions: 25
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 18,231 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-compute
google-cloud-compute is the official client library for the Google Cloud Compute API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-compute/
- Licenses: Apache-2.0
- Latest release: 1.19.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:20:31.180Z (5 days ago)
- Versions: 29
- Dependent Packages: 1
- Dependent Repositories: 1
- Downloads: 171,031 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Average: 14.06%
- Dependent repos count: 21.793%
- Downloads: 38.488%
- Maintainers (1)
gem.coop: google-cloud-datastream
Datastream is a serverless and easy-to-use change data capture (CDC) and replication service. It allows you to synchronize data across heterogeneous databases and applications reliably, and with minimal latency and downtime.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-datastream/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.858Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,662 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 14.161%
- Downloads: 42.484%
- Maintainers (1)
rubygems.org: google-cloud-channel
You can use Channel Services to manage your relationships with your partners and your customers. Channel Services include a console and APIs to view and provision links between distributors and resellers, customers and entitlements.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-channel/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.720Z (5 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 138,428 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Downloads: 10.143%
- Average: 14.983%
- Dependent packages count: 15.706%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-cloud-filestore
Filestore instances are fully managed NFS file servers on Google Cloud for use with applications running on Compute Engine virtual machines (VMs) instances or Google Kubernetes Engine clusters.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-filestore/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.856Z (5 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,459 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 15.075%
- Downloads: 45.225%
- Maintainers (1)
gem.coop: google-cloud-deploy
Google Cloud Deploy is a managed service that automates delivery of your applications to a series of target environments in a defined promotion sequence.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-deploy/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.859Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10,879 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 16.927%
- Downloads: 50.781%
- Maintainers (1)
gem.coop: google-cloud-eventarc
Eventarc lets you asynchronously deliver events from Google services, SaaS, and your own apps using loosely coupled services that react to state changes. Eventarc requires no infrastructure management ??? you can optimize productivity and costs while building a modern, event-driven solution.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-eventarc/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.845Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,597 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 16.979%
- Downloads: 50.936%
- 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.844Z (5 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,693 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 17.387%
- Downloads: 52.16%
- Maintainers (1)
rubygems.org: google-cloud-billing
Allows developers to manage billing for their Google Cloud Platform projects programmatically.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-billing/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.838Z (5 days ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 37,255 Total
-
Rankings:
- Forks count: 0.885%
- Stargazers count: 1.457%
- Dependent packages count: 15.706%
- Average: 17.717%
- Downloads: 23.756%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-analytics-admin
The Analytics Admin API allows for programmatic access to the Google Analytics App+Web configuration data. You can use the Google Analytics Admin API to manage accounts and App+Web properties.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-analytics-admin/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.659Z (5 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 200,009 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 18.231%
- Downloads: 26.386%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-apps-meet
Create and manage meetings in Google Meet.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-meet/
- Licenses: Apache-2.0
- Latest release: 1.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.401Z (5 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,405 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 18.825%
- Downloads: 56.476%
- Maintainers (1)
gem.coop: google-cloud-optimization
Cloud Optimization API provides a portfolio of solvers to address common optimization use cases starting with optimal route planning for vehicle fleets.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-optimization/
- Licenses: Apache-2.0
- Latest release: 1.5.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:15.588Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,594 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 18.915%
- Downloads: 56.746%
- Maintainers (1)
gem.coop: google-shopping-merchant-accounts-v1beta
Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-accounts-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-accounts instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-accounts-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.13.1 (published 2 months ago)
- Last Synced: 2026-06-11T01:16:42.214Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 11,853 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 19.327%
- Downloads: 57.98%
- Maintainers (1)
gem.coop: google-cloud-bigquery-data_policies-v1beta1
The Data Policy Service provides APIs for managing the BigQuery label-policy bindings. Note that google-cloud-bigquery-data_policies-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigquery-data_policies 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_policies-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.10.0 (published 3 months ago)
- Last Synced: 2026-06-11T03:33:06.632Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 8,709 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 19.869%
- Downloads: 59.608%
- Maintainers (1)
rubygems.org: google-cloud-video-transcoder
The Transcoder API allows you to convert video files and package them for optimized delivery to web, mobile and connected TVs.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-video-transcoder/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:24.580Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 69,673 Total
-
Rankings:
- Forks count: 0.869%
- Stargazers count: 1.399%
- Dependent packages count: 15.706%
- Average: 20.514%
- Downloads: 37.815%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-cloud-memcache
Google Cloud Memorystore for Memcached API is used for creating and managing Memcached instances in GCP.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-memcache/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:24.364Z (5 days ago)
- Versions: 19
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 20,292 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 20.791%
- Downloads: 39.185%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-cloud-notebooks
AI Platform Notebooks makes it easy to manage JupyterLab instances through a protected, publicly available notebook instance URL. A JupyterLab instance is a Deep Learning virtual machine instance with the latest machine learning and data science libraries pre-installed.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-notebooks/
- Licenses: Apache-2.0
- Latest release: 3.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:20.259Z (5 days ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 22,559 Total
-
Rankings:
- Forks count: 0.885%
- Stargazers count: 1.457%
- Dependent packages count: 15.706%
- Average: 20.841%
- Downloads: 39.377%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-cloud-bigquery-reservation
The BigQuery Reservation API provides the mechanisms by which enterprise users can provision and manage dedicated resources such as slots and BigQuery BI Engine memory allocations.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-reservation/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:24.538Z (5 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 29,157 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 21.193%
- Downloads: 40.9%
- Dependent repos count: 46.782%
- Maintainers (1)
gem.coop: google-cloud-batch
Google Cloud Batch is a fully managed service used by scientists, VFX artists, developers to easily and efficiently run batch workloads on Google Cloud. This service manages provisioning of resources to satisfy the requirements of the batch jobs for a variety of workloads including ML, HPC, VFX rendering, transcoding, genomics and others.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-batch/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.025Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,386 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 22.289%
- Downloads: 66.868%
- Maintainers (1)
rubygems.org: google-cloud-eventarc
Eventarc lets you asynchronously deliver events from Google services, SaaS, and your own apps using loosely coupled services that react to state changes. Eventarc requires no infrastructure management ??? you can optimize productivity and costs while building a modern, event-driven solution.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-eventarc/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.858Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,597 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 22.433%
- Dependent repos count: 46.782%
- Downloads: 47.395%
- Maintainers (1)
rubygems.org: google-cloud-domains
The Cloud Domains API provides registration, management and configuration of domain names.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-domains/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:46:12.429Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,307 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 22.584%
- Dependent repos count: 46.782%
- Downloads: 48.15%
- Maintainers (1)
rubygems.org: 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.265Z (5 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,693 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 22.777%
- Dependent repos count: 46.782%
- Downloads: 49.114%
- Maintainers (1)
rubygems.org: google-cloud-dataflow
Dataflow is a managed service for executing a wide variety of data processing patterns.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataflow/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.209Z (5 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 148,353 Total
-
Rankings:
- Forks count: 1.026%
- Stargazers count: 1.419%
- Dependent packages count: 15.706%
- Average: 22.919%
- Dependent repos count: 46.782%
- Downloads: 49.664%
- Maintainers (1)
rubygems.org: google-area120-tables
Using the Area 120 Tables API, you can query for tables, and update/create/delete rows within tables programmatically.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-area120-tables/
- Licenses: Apache-2.0
- Latest release: 0.9.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.836Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,336 Total
-
Rankings:
- Forks count: 1.026%
- Stargazers count: 1.507%
- Dependent packages count: 15.706%
- Average: 23.184%
- Dependent repos count: 46.782%
- Downloads: 50.898%
- Maintainers (1)
rubygems.org: google-cloud-metastore
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.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-metastore/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:20.361Z (5 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,552 Total
-
Rankings:
- Forks count: 0.869%
- Stargazers count: 1.399%
- Dependent packages count: 15.706%
- Average: 23.2%
- Dependent repos count: 46.782%
- Downloads: 51.243%
- Maintainers (1)
gem.coop: google-cloud-netapp
Google Cloud NetApp Volumes is a fully-managed, cloud-based data storage service that provides advanced data management capabilities and highly scalable performance with global availability.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-netapp/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:15.589Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,453 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.414%
- Downloads: 79.243%
- Maintainers (1)
rubygems.org: google-cloud-filestore
Filestore instances are fully managed NFS file servers on Google Cloud for use with applications running on Compute Engine virtual machines (VMs) instances or Google Kubernetes Engine clusters.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-filestore/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.790Z (5 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,459 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 26.617%
- Dependent repos count: 46.782%
- Downloads: 68.316%
- Maintainers (1)
gem.coop: google-cloud-dataform
Dataform is a service for data analysts to develop, test, version control, and schedule complex SQL workflows for data transformation in BigQuery.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataform/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.857Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,622 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.763%
- Downloads: 80.29%
- Maintainers (1)
rubygems.org: google-cloud-iap
IAP lets you establish a central authorization layer for applications accessed by HTTPS, so you can use an application-level access control model instead of relying on network-level firewalls.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-iap/
- Licenses: Apache-2.0
- Latest release: 1.7.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:23.759Z (5 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 21,104 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 27.576%
- Dependent repos count: 46.782%
- Downloads: 72.818%
- Maintainers (1)
rubygems.org: google-cloud-datastream
Datastream is a serverless and easy-to-use change data capture (CDC) and replication service. It allows you to synchronize data across heterogeneous databases and applications reliably, and with minimal latency and downtime.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-datastream/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.150Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 26,662 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 28.248%
- Dependent repos count: 46.782%
- Downloads: 76.469%
- Maintainers (1)
rubygems.org: 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.921Z (5 days ago)
- Versions: 20
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 794,499 Total
-
Rankings:
- Forks count: 0.869%
- Stargazers count: 1.399%
- Dependent packages count: 15.706%
- Average: 28.786%
- Dependent repos count: 46.782%
- Downloads: 79.174%
- Maintainers (1)
gem.coop: google-cloud-backupdr
google-cloud-backupdr is the official client library for the Backup and DR Service API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-backupdr/
- Licenses: Apache-2.0
- Latest release: 2.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.583Z (5 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,030 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 29.166%
- Downloads: 87.498%
- Maintainers (1)
gem.coop: google-cloud-connectors
Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-connectors/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.596Z (5 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,928 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 29.765%
- Downloads: 89.296%
- Maintainers (1)
rubygems.org: google-cloud-deploy
Google Cloud Deploy is a managed service that automates delivery of your applications to a series of target environments in a defined promotion sequence.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-deploy/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.941Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 10,879 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 30.434%
- Dependent repos count: 46.782%
- Downloads: 87.108%
- 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.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.543Z (5 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 24,203 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)
rubygems.org: google-cloud-run-client
Cloud Run deploys and manages user provided container images that scale automatically based on incoming requests.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-run-client/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:24.770Z (5 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 77,307 Total
-
Rankings:
- Forks count: 0.908%
- Stargazers count: 1.618%
- Dependent packages count: 15.706%
- Average: 31.185%
- Dependent repos count: 46.779%
- Downloads: 90.913%
- Maintainers (1)
gem.coop: google-cloud-memorystore
google-cloud-memorystore is the official client library for the Memorystore API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-memorystore/
- Licenses: Apache-2.0
- Latest release: 1.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:14.845Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,961 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 31.694%
- Downloads: 95.081%
- Maintainers (1)
rubygems.org: google-cloud-optimization
Cloud Optimization API provides a portfolio of solvers to address common optimization use cases starting with optimal route planning for vehicle fleets.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-optimization/
- Licenses: Apache-2.0
- Latest release: 1.5.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:21.140Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,594 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 32.489%
- Dependent repos count: 46.782%
- Downloads: 97.382%
- Maintainers (1)
rubygems.org: google-cloud-batch
Google Cloud Batch is a fully managed service used by scientists, VFX artists, developers to easily and efficiently run batch workloads on Google Cloud. This service manages provisioning of resources to satisfy the requirements of the batch jobs for a variety of workloads including ML, HPC, VFX rendering, transcoding, genomics and others.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-batch/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.488Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,386 Total
-
Rankings:
- Forks count: 1.122%
- Stargazers count: 1.63%
- Dependent packages count: 15.706%
- Average: 32.587%
- Dependent repos count: 46.779%
- Downloads: 97.7%
- Maintainers (1)
gem.coop: google-cloud-chronicle
The Google Cloud Security Operations API (Chronicle API) provides endpoints that help analysts investigate and mitigate security threats throughout their lifecycle.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-chronicle/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.423Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,867 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.638%
- Downloads: 97.915%
- Maintainers (1)
rubygems.org: google-cloud-dataform
Dataform is a service for data analysts to develop, test, version control, and schedule complex SQL workflows for data transformation in BigQuery.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataform/
- Licenses: Apache-2.0
- Latest release: 0.8.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.387Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,622 Total
-
Rankings:
- Forks count: 0.932%
- Stargazers count: 1.427%
- Dependent packages count: 15.706%
- Average: 32.65%
- Dependent repos count: 46.779%
- Downloads: 98.408%
- Maintainers (1)
gem.coop: google-cloud-lustre
google-cloud-lustre is the official client library for the Google Cloud Managed Lustre API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-lustre/
- Licenses: Apache-2.0
- Latest release: 0.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:14.854Z (5 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,283 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.724%
- Downloads: 98.172%
- Maintainers (1)
rubygems.org: google-cloud-vmware_engine
Google Cloud VMware Engine is a fully managed service that lets you run the VMware platform in Google Cloud. VMware Engine provides you with VMware operational continuity so you can benefit from a cloud consumption model and lower your total cost of ownership. VMware Engine also offers on-demand provisioning, pay-as-you-grow, and capacity optimization.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-vmware_engine/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:24.597Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,472 Total
-
Rankings:
- Forks count: 0.932%
- Stargazers count: 1.427%
- Dependent packages count: 15.706%
- Average: 32.751%
- Dependent repos count: 46.779%
- Downloads: 98.912%
- Maintainers (1)
gem.coop: google-cloud-ces
google-cloud-ces is the official client library for the Gemini Enterprise for Customer Experience API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-ces/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:33:12.036Z (5 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 463 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.228%
- Downloads: 99.683%
- Maintainers (1)
rubygems.org: google-cloud-ces
google-cloud-ces is the official client library for the Gemini Enterprise for Customer Experience API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-ces/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.870Z (5 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 463 Total
-
Rankings:
- Dependent packages count: 13.891%
- Dependent repos count: 42.545%
- Average: 49.643%
- Downloads: 92.495%
- Maintainers (1)
rubygems.org: google-iam-v3beta
Manages identity and access control for Google Cloud resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls. Enabling this API also enables the IAM Service Account Credentials API (iamcredentials.googleapis.com). However, disabling this API doesn't disable the IAM Service Account Credentials API. Note that google-iam-v3beta is a version-specific client library. For most uses, we recommend installing the main client library google-iam instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-iam-v3beta/
- Licenses: Apache-2.0
- Latest release: 0.7.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:25.656Z (5 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,282 Total
-
Rankings:
- Dependent packages count: 14.399%
- Dependent repos count: 44.107%
- Average: 50.423%
- Downloads: 92.762%
- Maintainers (1)
rubygems.org: google-cloud-chronicle
The Google Cloud Security Operations API (Chronicle API) provides endpoints that help analysts investigate and mitigate security threats throughout their lifecycle.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-chronicle/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.590Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,867 Total
-
Rankings:
- Dependent packages count: 14.404%
- Dependent repos count: 44.122%
- Average: 50.425%
- Downloads: 92.749%
- Maintainers (1)
rubygems.org: google-cloud-lustre
google-cloud-lustre is the official client library for the Google Cloud Managed Lustre API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-lustre/
- Licenses: Apache-2.0
- Latest release: 0.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:20.028Z (5 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,283 Total
-
Rankings:
- Dependent packages count: 14.413%
- Dependent repos count: 44.151%
- Average: 50.44%
- Downloads: 92.754%
- Maintainers (1)
rubygems.org: google-cloud-memorystore
google-cloud-memorystore is the official client library for the Memorystore API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-memorystore/
- Licenses: Apache-2.0
- Latest release: 1.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:23.992Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,961 Total
-
Rankings:
- Dependent packages count: 14.566%
- Dependent repos count: 44.616%
- Average: 50.66%
- Downloads: 92.797%
- Maintainers (1)
rubygems.org: google-cloud-connectors
Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-connectors/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.940Z (5 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,928 Total
-
Rankings:
- Dependent packages count: 14.774%
- Dependent repos count: 45.256%
- Average: 50.935%
- Downloads: 92.775%
- Maintainers (1)
rubygems.org: google-shopping-merchant-lfp
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-lfp/
- Licenses: Apache-2.0
- Latest release: 0.4.0 (published 3 months ago)
- Last Synced: 2026-06-11T02:45:45.086Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,169 Total
-
Rankings:
- Dependent packages count: 14.62%
- Dependent repos count: 45.35%
- Average: 51.888%
- Downloads: 95.695%
- Maintainers (1)
rubygems.org: google-cloud-backupdr
google-cloud-backupdr is the official client library for the Backup and DR Service API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-backupdr/
- Licenses: Apache-2.0
- Latest release: 2.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.720Z (5 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,030 Total
-
Rankings:
- Dependent packages count: 14.627%
- Dependent repos count: 45.37%
- Average: 52.044%
- Downloads: 96.136%
- Maintainers (1)
rubygems.org: google-apps-chat
The Google Chat API lets you build Chat apps to integrate your services with Google Chat and manage Chat resources such as spaces, members, and messages.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-chat/
- Licenses: Apache-2.0
- Latest release: 1.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:19.027Z (5 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 451,348 Total
-
Rankings:
- Dependent packages count: 15.438%
- Dependent repos count: 47.89%
- Average: 53.976%
- Downloads: 98.6%
- Maintainers (1)
rubygems.org: google-cloud-netapp
Google Cloud NetApp Volumes is a fully-managed, cloud-based data storage service that provides advanced data management capabilities and highly scalable performance with global availability.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-netapp/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:24.853Z (5 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,453 Total
-
Rankings:
- Dependent packages count: 15.646%
- Dependent repos count: 48.502%
- Average: 54.541%
- Downloads: 99.477%
- Maintainers (1)
rubygems.org: google-cloud-parallelstore-v1beta
google-cloud-parallelstore-v1beta is the official client library for the Parallelstore V1BETA API. Note that google-cloud-parallelstore-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-parallelstore instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-parallelstore-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.14.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:25.362Z (5 days ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,978 Total
-
Rankings:
- Dependent packages count: 15.706%
- Dependent repos count: 48.724%
- Average: 54.579%
- Downloads: 99.309%
- Maintainers (1)
rubygems.org: google-apps-events-subscriptions
The Google Workspace Events API lets you subscribe to events and manage change notifications across Google Workspace applications.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-events-subscriptions/
- Licenses: Apache-2.0
- Latest release: 1.2.0 (published 3 months ago)
- Last Synced: 2026-06-11T04:01:56.862Z (5 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,805 Total
-
Rankings:
- Dependent packages count: 15.706%
- Dependent repos count: 48.724%
- Average: 54.579%
- Downloads: 99.309%
- Maintainers (1)
rubygems.org: google-cloud-parallelstore
google-cloud-parallelstore is the official client library for the Parallelstore API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-parallelstore/
- Licenses: Apache-2.0
- Latest release: 2.2.0 (published 5 days ago)
- Last Synced: 2026-06-11T05:01:24.543Z (5 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,624 Total
-
Rankings:
- Dependent packages count: 15.706%
- Dependent repos count: 48.724%
- Average: 54.582%
- Downloads: 99.316%
- Maintainers (1)
rubygems.org: google-apps-meet
Create and manage meetings in Google Meet.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-meet/
- Licenses: Apache-2.0
- Latest release: 1.3.0 (published 5 days ago)
- Last Synced: 2026-06-11T04:31:18.834Z (5 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 14,405 Total
-
Rankings:
- Dependent packages count: 15.782%
- Dependent repos count: 48.959%
- Average: 54.707%
- Downloads: 99.379%
- Maintainers (1)
Dependencies
- actions/checkout v3 composite
- actions/setup-node v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- gcr.io/cloud-devrel-public-resources/storage-testbench latest docker
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- 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-v1alpha >= 0
- 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-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-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-v1beta >= 0
- 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-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-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-v1alpha1 >= 0
- 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-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-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-v1 >= 0
- 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-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-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-v1 >= 0
- 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-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-ai_platform-v1 >= 0
- google-cloud-api_gateway-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-api_gateway-v1 >= 0.1, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-api_gateway-v1 >= 0
- google-cloud-api_keys-v2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-api_keys-v2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-api_keys-v2 >= 0
- google-cloud-apigee_connect-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-apigee_connect-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-apigee_connect-v1 >= 0
- google-cloud-apigee_registry-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-apigee_registry-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-apigee_registry-v1 >= 0
- google-cloud-app_engine-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-app_engine-v1 >= 0.3, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-app_engine-v1 >= 0
- google-cloud-artifact_registry-v1 >= 0
- google-cloud-artifact_registry-v1beta2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-artifact_registry-v1 >= 0.0, < 2.a
- google-cloud-artifact_registry-v1beta2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-artifact_registry-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-artifact_registry-v1beta2 >= 0
- google-cloud-asset-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-asset-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-cloud-bigquery >= 0 development
- google-cloud-pubsub >= 0 development
- google-cloud-storage >= 0 development
- minitest ~> 5.14 development
- rake >= 0 development
- google-cloud-asset >= 0
- google-cloud-asset-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-os_config-v1 > 0.0, < 2.a
- google-identity-access_context_manager-v1 > 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-asset-v1 >= 0
- google-cloud-assured_workloads-v1 >= 0
- google-cloud-assured_workloads-v1beta1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-assured_workloads-v1 >= 0.0, < 2.a
- google-cloud-assured_workloads-v1beta1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-assured_workloads-v1 >= 0
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-assured_workloads-v1beta1 >= 0
- google-cloud-automl-v1 >= 0
- google-cloud-automl-v1beta1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-automl-v1 >= 0.0, < 2.a
- google-cloud-automl-v1beta1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-automl-v1 >= 0
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-automl-v1beta1 >= 0
- google-cloud-bare_metal_solution-v2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bare_metal_solution-v2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bare_metal_solution-v2 >= 0
- google-cloud-batch-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-batch-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-batch-v1 >= 0
- google-cloud-beyond_corp-app_connections-v1 >= 0
- google-cloud-beyond_corp-app_connectors-v1 >= 0
- google-cloud-beyond_corp-app_gateways-v1 >= 0
- google-cloud-beyond_corp-client_connector_services-v1 >= 0
- google-cloud-beyond_corp-client_gateways-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-beyond_corp-app_connections-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-app_connectors-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-app_gateways-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-client_connector_services-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-client_gateways-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_connections-v1 >= 0
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_connectors-v1 >= 0
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_gateways-v1 >= 0
- google-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-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-client_gateways-v1 >= 0
- google-cloud-core >= 0
- google-cloud-errors >= 0
- google-cloud-storage >= 0
- minitest-reporters ~> 1.5.0
- rake >= 0
- autotest-suffix ~> 1.1 development
- google-cloud-data_catalog ~> 1.2 development
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-autotest ~> 1.0 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- yard-doctest ~> 0.1.13 development
- concurrent-ruby ~> 1.0
- google-apis-bigquery_v2 ~> 0.1
- google-cloud-core ~> 1.6
- googleauth >= 0.16.2, < 2.a
- mini_mime ~> 1.0
- google-style ~> 1.25.1 development
- minitest ~> 5.14 development
- rake >= 0 development
- google-cloud-bigquery >= 0
- google-cloud-storage >= 0 development
- google-style ~> 1.25.1 development
- minitest ~> 5.14 development
- minitest-focus ~> 1.1 development
- rake >= 0 development
- google-cloud-bigquery >= 0
- rgeo >= 0
- rgeo-geojson >= 0
- google-cloud-bigquery-analytics_hub-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bigquery-analytics_hub-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bigquery-analytics_hub-v1 >= 0
- google-cloud-bigquery-connection-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bigquery-connection-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bigquery-connection-v1 >= 0
- google-cloud-bigquery-data_exchange-v1beta1 >= 0
Score: 30.55702955383253