Ruby

Studio SDK for Ruby

Add the Studio gem to your Ruby projects to programmatically upload photos and process jobs in your applications.

Quick Start

Add this line to your application's Gemfile:

gem 'skylab_studio'

And then execute:

$ bundle install
# Or if you don't use bundler:
$ gem install skylab_studio

Further instructions can be found per framework:

Usage

Jobs, photos, profiles, and more can be programmatically created, edited, and deleted via the StudioRuby SDK as so:

require 'rubygems'
require 'skylab_studio'

# Instantiate the client
client = SkylabStudio::Client.new(api_key: 'YOUR API KEY', debug: true)

# Create a new job
client.create_job(job: { profile_id: 123 })

For a list of all available methods, please consult the official gem documentation.

Help / Support

If you run into any issues, please emails us at [email protected]

For bug reports, please open an issue on GitHub.