InsightExchange Ruby Gem
This is a simple wrapper gem for the InsightExchange REST API.
Installation
Add this line to your application's Gemfile:
gem 'insightexchange'
And then execute:
$ bundle
Or install it yourself as:
$ gem install insightexchange
Usage
Instantiate a new client, providing the API token either through an environment variable or as an argument.
exchange = InsightExchange.new
exchange.publish user.email, 'CookedDinner'
Also, identify users early on in your registration flow to ensure breadth of coverage on the market.
exchange.identify user.email
Please see the InsightExchange documentation for further details.
http://insightexchange.co/for_developers/docs
Contributing
- Fork it ( https://github.com/insightexchange/insightexchange/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request