Add this line to your application's Gemfile:
gem 'hullio'
And then execute:
$ bundle
Or install it yourself as:
$ gem install hullio
Hull.configure do |c|
c.app_id = "5b472f6b35632446d600181c"
c.app_secret = "co891467hro287h4o2h4o2i34785o23"
c.organization = "example.hullapp.io"
end
In Rails, you can include this in an initializer.
# From its user ID
Hull.as('51fa7afd09e50d11f1000002').get('me')
# From a User in your database, with lazy creation (Check the Identity resolution section here https://www.hull.io/docs/data_lifecycle/ingest/)
identity = { external_id:'1234', email:'[email protected]' }
Hull.as(identity).get('me')
For users
user = Hull.as_user(email: '[email protected]')
user.traits({ name: 'Bob', age: 21 })
user.track('Visited Page', { url: 'http://www.hull.io' })
For accounts
account = Hull.as_account(domain: 'hull.op')
user.traits({ name: 'Hull inc' })
- 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