# Ruby Client for the <%= gem.title %> API <%= gem.summary %> <%= gem.description %> <%= gem.homepage %> ## Installation ``` $ gem install <%= gem.name %> ``` ## Quick Start ```ruby require "<%= gem.entrypoint_require %>" <%- service = gem.first_non_common_service -%> <%- method = service&.methods.first -%> <%- if service && method -%> client = <%= service.create_client_call %> request = my_create_request response = client.<%= method.name %> request <%- end -%> ``` ## Supported Ruby Versions This library is supported on Ruby 2.4+. Google provides official support for Ruby versions that are actively supported by Ruby Core—that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.4 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.