mirror of
https://github.com/omniauth/omniauth.git
synced 2022-11-09 12:31:49 -05:00
Update links in the README to point to the new repo
This commit is contained in:
parent
90350485c8
commit
e335fe40bf
1 changed files with 12 additions and 12 deletions
24
README.md
24
README.md
|
@ -1,21 +1,21 @@
|
|||
# OmniAuth: Standardized Multi-Provider Authentication
|
||||
|
||||
[![Gem Version](http://img.shields.io/gem/v/omniauth.svg)][gem]
|
||||
[![Build Status](http://img.shields.io/travis/intridea/omniauth.svg)][travis]
|
||||
[![Dependency Status](http://img.shields.io/gemnasium/intridea/omniauth.svg)][gemnasium]
|
||||
[![Code Climate](http://img.shields.io/codeclimate/github/intridea/omniauth.svg)][codeclimate]
|
||||
[![Coverage Status](http://img.shields.io/coveralls/intridea/omniauth.svg)][coveralls]
|
||||
[![Build Status](http://img.shields.io/travis/omniauth/omniauth.svg)][travis]
|
||||
[![Dependency Status](http://img.shields.io/gemnasium/omniauth/omniauth.svg)][gemnasium]
|
||||
[![Code Climate](http://img.shields.io/codeclimate/github/omniauth/omniauth.svg)][codeclimate]
|
||||
[![Coverage Status](http://img.shields.io/coveralls/omniauth/omniauth.svg)][coveralls]
|
||||
[![Security](https://hakiri.io/github/omniauth/omniauth/master.svg)](https://hakiri.io/github/omniauth/omniauth/master)
|
||||
|
||||
[gem]: https://rubygems.org/gems/omniauth
|
||||
[travis]: http://travis-ci.org/intridea/omniauth
|
||||
[gemnasium]: https://gemnasium.com/intridea/omniauth
|
||||
[codeclimate]: https://codeclimate.com/github/intridea/omniauth
|
||||
[coveralls]: https://coveralls.io/r/intridea/omniauth
|
||||
[travis]: http://travis-ci.org/omniauth/omniauth
|
||||
[gemnasium]: https://gemnasium.com/omniauth/omniauth
|
||||
[codeclimate]: https://codeclimate.com/github/omniauth/omniauth
|
||||
[coveralls]: https://coveralls.io/r/omniauth/omniauth
|
||||
|
||||
**OmniAuth 1.0 has several breaking changes from version 0.x. You can set
|
||||
the dependency to `~> 0.3.2` if you do not wish to make the more difficult
|
||||
upgrade. See [the wiki](https://github.com/intridea/omniauth/wiki/Upgrading-to-1.0)
|
||||
upgrade. See [the wiki](https://github.com/omniauth/omniauth/wiki/Upgrading-to-1.0)
|
||||
for more information.**
|
||||
|
||||
## An Introduction
|
||||
|
@ -27,7 +27,7 @@ have been created for everything from Facebook to LDAP.
|
|||
|
||||
In order to use OmniAuth in your applications, you will need to leverage
|
||||
one or more strategies. These strategies are generally released
|
||||
individually as RubyGems, and you can see a [community maintained list](https://github.com/intridea/omniauth/wiki/List-of-Strategies)
|
||||
individually as RubyGems, and you can see a [community maintained list](https://github.com/omniauth/omniauth/wiki/List-of-Strategies)
|
||||
on the wiki for this project.
|
||||
|
||||
One strategy, called `Developer`, is included with OmniAuth and provides
|
||||
|
@ -120,7 +120,7 @@ Authentication Hash which will contain information about the just
|
|||
authenticated user including a unique id, the strategy they just used
|
||||
for authentication, and personal details such as name and email address
|
||||
as available. For an in-depth description of what the authentication
|
||||
hash might contain, see the [Auth Hash Schema wiki page](https://github.com/intridea/omniauth/wiki/Auth-Hash-Schema).
|
||||
hash might contain, see the [Auth Hash Schema wiki page](https://github.com/omniauth/omniauth/wiki/Auth-Hash-Schema).
|
||||
|
||||
Note that OmniAuth does not perform any actions beyond setting some
|
||||
environment information on the callback request. It is entirely up to
|
||||
|
@ -137,7 +137,7 @@ OmniAuth.config.logger = Rails.logger
|
|||
```
|
||||
|
||||
## Resources
|
||||
The [OmniAuth Wiki](https://github.com/intridea/omniauth/wiki) has
|
||||
The [OmniAuth Wiki](https://github.com/omniauth/omniauth/wiki) has
|
||||
actively maintained in-depth documentation for OmniAuth. It should be
|
||||
your first stop if you are wondering about a more in-depth look at
|
||||
OmniAuth, how it works, and how to use it.
|
||||
|
|
Loading…
Reference in a new issue