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-apirequire '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'
)Read the docs