1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00
omniauth--omniauth/oa-more/README.rdoc

23 lines
479 B
Text
Raw Normal View History

2011-01-12 09:44:48 -05:00
= OmniAuth::More
OmniAuth stratgies for authentication providers that do not
fit into one of the other authentication gems.
== Installation
To install omniauth as a suite of gems:
gem install omniauth
To install just the providers in the "more" gem:
gem install oa-more
2011-01-15 15:36:11 -05:00
== OmniAuth Builder
2011-01-12 09:44:48 -05:00
2011-01-15 15:36:11 -05:00
If you want to allow multiple providers, use the OmniAuth Builder:
use OmniAuth::Builder do
provider :flickr, 'api_key', 'secret_key', :scope => 'read'
end