https://github.com/jeremyf/devise-multi_auth
A Devise plugin for exposing multiple authentication providers via omniauth.
https://github.com/jeremyf/devise-multi_auth
Last synced: 3 months ago
JSON representation
A Devise plugin for exposing multiple authentication providers via omniauth.
- Host: GitHub
- URL: https://github.com/jeremyf/devise-multi_auth
- Owner: jeremyf
- License: other
- Created: 2014-02-21T02:02:18.000Z (over 11 years ago)
- Default Branch: trunk
- Last Pushed: 2020-06-13T19:38:02.000Z (about 5 years ago)
- Last Synced: 2025-03-27T00:23:15.272Z (4 months ago)
- Language: Ruby
- Homepage: https://github.com/jeremyf/devise-multi_auth
- Size: 34.2 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Devise::MultiAuth [](https://travis-ci.org/jeremyf/devise-multi_auth) [](http://badge.fury.io/rb/devise-multi_auth)
A [Devise](https://github.com/plataformatec/devise) plugin leveraging [omniauth](https://github.com/intridea/omniauth) to
expose alternate means for authenticating existing users.```gherkin
Scenario: As a Developer
Given that I am using Devise
And that I have an existing user Signup process
When I use Devise::MultiAuth
Then I can expose alternate means of authenticating existing users.
```## Getting Started
Add the following line to your application's Gemfile:
gem 'devise-multi_auth'
And then execute:
```bash
$ bundle
$ rails generate devise:multi_auth:install
```## TODO
At present, this [Rails Engine](http://guides.rubyonrails.org/engines.html) does not expose an obvious means for initiating the connecting between an existing account and an omniauth-enabled account (i.e. login via Github).