Sha256: 55e8ac8e8fab60f69052defd7d527c4cb658ebd8678bb11d54109f1f890ef799

Contents?: true

Size: 776 Bytes

Versions: 3

Compression:

Stored size: 776 Bytes

Contents

Fellowship One REST API Ruby Client Library
===========================================

**NOTE**: This library is of alpha quality.  It is not meant for use in production apps.  It's definitely not feature complete and it may have bugs.

Introduction
------------
This library is an implementation of the Fellowship One REST API.  Currently we are only fielding requests and handling the OAuth tokens.  The goal is to have a library that works like ActiveResource.

Usage
-----
	require 'f1api'
	
	class Person < FellowshipOneAPI::Base
	end
	
	client.authorize!
	# If using creds in YAML file:
	# client.authorize! "username", "password"
	
	Person.connect client
	
	Person.find(12345)
	Person.find("search", {:searchFor => "Dearing", :include => "communications,addresses"})

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
f1api-0.9.2 README.md
f1api-0.9.1 README.md
f1api-0.9.0 README.md