├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── example ├── Gemfile └── config.ru ├── lib ├── omniauth-okta.rb ├── omniauth-okta │ └── version.rb └── omniauth │ └── strategies │ └── okta.rb ├── omniauth-okta.gemspec └── spec ├── omniauth └── strategies │ └── okta_spec.rb └── spec_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/Rakefile -------------------------------------------------------------------------------- /example/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/example/Gemfile -------------------------------------------------------------------------------- /example/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/example/config.ru -------------------------------------------------------------------------------- /lib/omniauth-okta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/lib/omniauth-okta.rb -------------------------------------------------------------------------------- /lib/omniauth-okta/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/lib/omniauth-okta/version.rb -------------------------------------------------------------------------------- /lib/omniauth/strategies/okta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/lib/omniauth/strategies/okta.rb -------------------------------------------------------------------------------- /omniauth-okta.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/omniauth-okta.gemspec -------------------------------------------------------------------------------- /spec/omniauth/strategies/okta_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/spec/omniauth/strategies/okta_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-okta/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------