Kickboxer is a wrapper around the FullContact API
Add this line to your application's Gemfile:
gem 'kickboxer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install kickboxer
The Full Contact API requires an API key. Register for a free key at https://www.fullcontact.com/sign-up/. Once you receive your key, you can configure Kickboxer to use it via:
Kickboxer.api_key = '01234decafbad'
The following API endpoints are implemented:
- Person
- lookup (by email, phone number, twitter username, or facebook username)
- User (TODO)
- Contact List (TODO)
- Contact (TODO)
- Snapshot (TODO)
- Subscription (TODO)
- Name
- normalize
- deduce
- similarity
- stats
- parser
- Icon (TODO)
- Provisioning (TODO)
- Batch Process (TODO)
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request