YieldStar Client
Client adapter for the YieldStar AppExchange web service.
Installation
The YieldStar adapter is available on Rubygems and can be installed via:
gem install 'yield_star_client'
Configuration
You will probably only need to configure the username and password for connecting to the remote service:
YieldStarClient.configure do |config|
config.username = 'my_user'
config.password = 'my_pass'
end
Sensible defaults are provided for other configuration options. TODO: link to the docs for the rest of the config.
Examples
TODO: More thorough usage examples.
client = YieldStarClient::Client.new
client.get_properties('my_client_name')
TODO: Link to docs for more info.