Sha256: f989a5d8cd8fbe517d13cad9b2f0d17db4248ae6dcc4d0c87930cd8fae507016
Contents?: true
Size: 732 Bytes
Versions: 1
Compression:
Stored size: 732 Bytes
Contents
OmniAuth Buffer ================ Work in Progress This gem is an OmniAuth Strategy for the CaseNEX SSO server (http://auth.casenex.com/) which uses OAuth 2.0 Usage ----- Add the strategy to your `Gemfile` alongside OmniAuth: ```ruby gem 'omniauth' gem 'omniauth-casenex' ``` Then integrate the strategy into your middleware: ```ruby use OmniAuth::Builder do provider :casenex, ENV['CASENEX_KEY'], ENV['CASENEX_SECRET'] end ``` In Rails, you'll want to add to the middleware stack: ```ruby Rails.application.config.middleware.use OmniAuth::Builder do provider :casenex, ENV['CASENEX_KEY'], ENV['CASENEX_SECRET'] end ``` For additional information, refer to the [OmniAuth wiki](https://github.com/intridea/omniauth/wiki).
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-casenex-0.1 | README.md |