A Redis storage backend for ruby-openid
Add this line to your application's Gemfile:
gem 'openid-store-redis'
And then execute:
$ bundle
Or install it yourself as:
$ gem install openid-store-redis
Set up OpenID consumer (or provider) using Redis store
redis = Redis.new
store = OpenID::Store::Redis.new(redis)
@consumer = OpenID::Consumer.new(session, store)
If you're using Omniauth
use OmniAuth::Builder do
provider :open_id, :store => OpenID::Store::Redis.new(Redis.new)
end
Redis store defaults to Redis.current
when Redis client is not given as
argument to store.
- 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
© Rally Software Development Corp. Released under MIT license, see LICENSE for details.