thewalters-ruby

A Ruby gem for communicating with The Walters API. Documentation

Build Status Dependency Status

Install

Via rubygems.org:

gem install thewalters

Via bundler in a Gemfile:

gem "thewalters"

Accessing the REST API

require 'thewalters'

objects = TheWalters::ArtObject.all
object = TheWalters::ArtObject.find(objects.first.id)

all returns an array of ruby objects, each object has all the API attributes on it. find returns a single ruby object.

See The Walters API at api.thewalters.org/help/index for up-to-date documentation.

Contributing to thewalters-ruby

This is a very immature project, and I need your help! The goal is to have a fully-featured API client available for attendees of ArtBytes 2014.

Things that need to be done

Do's and Don'ts

Copyright © 2014 Jonathan Julian. See LICENSE.txt for further details.