0.0
No commit activity in last 3 years
No release in over 3 years
whereIstand Ruby SDK
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

 Project Readme

whereIstand Ruby SDK¶ ↑

The whereIstand Ruby SDK allows developers to interface with whereIstand opinion data through a series of library that encapsulates the whereIstand API service calls and adapt them into objects for your convenience.

Installation¶ ↑

sudo gem install whereistand

Examples¶ ↑

Access the whereIstand API via object-specific service classes in WIS::Client to get whereIstand objects.

# Does an account search that returns AccountResults.
# Refer to source for object structure
results = WIS::Client::Accounts.search("clinton")
puts "Hits: " results.hits
results.accounts.each do |account|
  puts account.name + " - " + account.description
end