SalesforceIQ Ruby SDK

Gem Version Build Status

A full featured native Ruby interface for interacting with the SalesforceIQ(formerly RelateIQ) API.

Status

Badge (click for more info) Explanation
% of methods documented
Code Climate % of methods tested
Code Climate Overall code quality (4.0 is best)
Gemnasium Dependency freshness
MIT license 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