Plain Ruby
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
Usage
Jobs, photos, profiles, and more can be programatically created, edited, and deleted via the Studio Ruby 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.
Updated about 2 years ago