Speakeasy Logo
Skip to Content

Create Ruby SDKs from OpenAPI documents

Ruby SDK overview

The Speakeasy Ruby SDK is designed to be easy to use and debug, and uses modern, object-oriented programming in ruby for a robust and strongly-typed experience.

Some core features of the SDK are:

  • Our custom Crystalline serialization/deserialization library, using the object oriented structure of your api components to provide a totally ruby-native object oriented interface to your api
  • Configure your api interactions at the SDK level or per operation, using simple class constructors and function parameters
  • Initial support for security. This includes complete support for simple security patterns, and built in support for some common OAuth flows and other standard security mechanisms.
  • SDK Hooks to allow custom behaviour at various stages of the request response cycle.

Flexible Type Safety

Type safety in ruby is a controversial topics, with no typing approach being universally accepted by the community. Therefore instead of making an executive decision, you can specify your preferred typingStrat in your gen.yaml file.

No Type Safety

If you want Speakeasy to generate an SDK that does not include any typing directives, specifying a typingStrat of ‘none’.

Please note that even in this mode, the Crystalline serialization/deserialization library will necessarily do some type checking as it’s processing requests and responses.

Sorbet Mode

If, however, you prefer for Speakeasy to generate an SDK that includes thorough type checking, specify a typingStrat of sorbet.

In this mode, all methods and classes, etc will be annotated with the corresponding sig directives. In addition, sorbet will be added as a dependency for your project, and at compilation, a full static typecheck will be run.

External libraries

The Speakeasy ruby SDK seeks to support the majority of the OpenAPI Specification features, and as such, supports some features that aren’t contained in the ruby standard library.

Speakeasy fills the gaps using some external dependencies, which are detailed below.

HTTP

For rich support of HTTP processing, retries, form handling, etc. we take advantage of the excellent Faraday  library, along with two of it’s companion libraries Faraday Retry  and Faraday Multipart .

Base64

Since Ruby 3, the stdlib no longer includes base64 functionality, so we require this related package.

Linting With Rubocop

We include rubocop as a development dependency, and ensure that all of our builds pass a lot of the linter checks.

Tests

Mini Test  is included with the SDK for running tests. However, no tests are created for the SDK automatically.

Ruby SDK package structure

  • openapi.gemspec
  • Rakefile
  • Gemfile

Ruby SDK data types and classes

The Speakeasy Ruby SDK uses native types wherever possible:

  • String
  • Date
  • DateTime
  • Integer
  • Float
  • TrueClass & FalseClass

SDK Components are generated as ruby classes, and use a simple DSL to publicly declare the fields and types of fields as found in the sdk.

Parameters

When configured, Speakeasy will include up to a specified number of parameters directly in the function signatures, rather than providing the list of parameters as an object to be passed to the operation methods.

The maximum number of parameters to be placed in the method signature is set in the maxMethodParams option in the gen.yaml file. If maxMethodParams is not set or is set to 0, no method parameters will be added.

Errors

The Speakeasy ruby SDK raises exceptions using the appropriate error class as defined in the sdk specification. Wrap requests in a begin block to handle the error in the response.

User agent strings

The ruby SDK includes a user agent  string in all requests, which can be leveraged to track SDK usage amongst broader API usage. The format is as follows:

  • SDKVersion is the version of the SDK defined in gen.yaml and released.
  • GenVersion is the version of the Speakeasy generator.
  • DocVersion is the version of the OpenAPI document.
  • PackageName is the name of the package defined in gen.yaml.

Feature examples

Let’s take a look at how OpenAPI features are mapped to ruby code. We’ll use snippets from the Swagger PetStore 3.1  OpenAPI document, openapi.yaml. If you’re not familiar with the example, it provides operations for managing users, customers, pets, and orders for pets in a hypothetical pet store.

Tags

Each tag in the OpenAPI document becomes a sub-sdk, captured in it’s own file, containing all tagged operations, such as pet.rb, store.rb, and user.rb for:

Security

The Swagger Petstore OpenAPI document uses API key security and OAuth 2.0:

The ruby SDK creates a security class you can call with either scheme:

The implicit flow is the only OAuth flow currently supported.

Enums

Speakeasy uses sorbet T::Enum enums, if sorbet is the typing strategy:

If you are not using sorbet, Crystalline provides a suitable mixin:

Typed parameters

Consider the following example of an array of strings in openapi.yaml:

The ruby SDK provides sorbet types in a signature block.

You can use oneOf in an OpenAPI document like this:

The age property will be typed as a union in ruby:

Last updated on