SalesforceIQ Ruby SDK
A full featured native Ruby interface for interacting with the SalesforceIQ(formerly RelateIQ) API.
Status
| Badge (click for more info) | Explanation |
|---|---|
| % of methods documented | |
| % of methods tested | |
| Overall code quality (4.0 is best) | |
| Dependency freshness | |
| What can you use this for? |
Code Examples
require 'riq'
RIQ.init(ENV['RIQ_API_KEY'], ENV['RIQ_API_SECRET'])
# Contacts
RIQ.contacts.each do |c|
# do something
puts c.name
end
# => Bruce Wayne
# => Malcolm Reynolds
# => Michael Bluth
# => Tony Stark
...
# Etc
Testing
Copy .env.example to .env and edit to add your SalesforceIQ account credentials. Then run the Rake task:
rake test