A RubyGem for interfacing with the Place API
To install using Bundler:
gem 'place-api', '~> 0.5.5'
To install using gem:
gem install place-api
require 'place'
# set your api key
Place.api_key = 'private_key_6fsMi3GDxXg1XXSluNx1sLEd'
# create an account
account = Place::Account.create(
:email => '[email protected]',
:full_name => 'Joe Schmoe',
:user_type => 'payer'
)
Read the docs