Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 574 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 574 Bytes

Place RubyGem

A RubyGem for interfacing with the Place API

Installation

To install using Bundler:

gem 'place-api', '~> 0.5.5'

To install using gem:

gem install place-api

Basic usage

require 'place'

# set your api key
Place.api_key = 'private_key_6fsMi3GDxXg1XXSluNx1sLEd'

# create an account
account = Place::Account.create(
    :email => 'joe.schmoe@example.com',
    :full_name => 'Joe Schmoe',
    :user_type => 'payer'
)

Documentation

Read the docs