A basic ruby client to access the Trooly service
Add this line to your Gemfile:
gem 'trooly-ruby-sdk', git: 'https://github.com/ac21/trooly-ruby-sdk'
And then execute:
$ bundle install
require "trooly"
Trooly.configure do |config|
config.clientid = 'clientid'
config.api_key = 'api_key'
config.opts = {logger: ::Logger.new(STDOUT), logging: {bodies: true, headers: true}} # optional
config.use_mock = true # when true, returns a desterministic result with no network traffic
end
client = Trooly.client
client.verify
=> true # if clientid and api_key are valid
client.user.submit(
:user => {
:userid => 'troolytest01',
:names => ['John Smith'],
:emails => ['[email protected]', '[email protected]'],
:phones => ['888-555-1212'],
:dobs => ['1972-01-01'],
:ip_addresses => ['1.1.1.1'],
:facebook_tokens => ['token'],
:addresses => [
{
:street => '123 N Main St',
:city => 'Palo Alto',
:state => 'CA',
:zipcode => '98000',
:country =< 'US'
}
],
:address_strings => ['123 N Main St, Palo Alto, CA 98000']
},
:callback => nil,
:callback_token => nil,
)
# => true
client.user.find(userid)
# => <Struct User...>
After checking out the repo, run make setup
to install dependencies. Then, run make specs
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run make install
.
To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/ac21/trooly-ruby-sdk. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.