Omniauth::Tent
Omniauth strategy for Tent.
Installation
Add this line to your application's Gemfile:
gem 'omniauth-tent'
Usage
use OmniAuth::Builder do
provider :tent, options
endAvailable options (see the Tent docs for details)
| Option | Required | Description |
|---|---|---|
| get_app | Yes | Should be a lambda (or anything which responds to call) returning either an existing app attributes hash or nil. The entity URI will be passed in as a single argument. |
| on_app_created | No | Should respond to call. Gets called with Hashie::Mash representation of app when created |
| app | Yes |
name, description, url, redirect_uri, read_types, write_types, notification_types, notification_url, scopes
|
Testing
bundle exec rspec
Contributing
Here are some tasks that need to be done:
- Handle being passed an 'error' param in the callback_phase
- Find bugs and fix them
- Fork it
- 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 new Pull Request