0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Omniauth Strategy for Tent
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Build Status

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
end

Available 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
  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request