├── .github └── workflows │ ├── ancient.yml │ ├── ci.yml │ ├── coverage.yml │ └── legacy.yml ├── .gitignore ├── .rspec ├── .simplecov ├── .tool-versions ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── gemfiles ├── ancient.gemfile ├── contexts │ ├── coverage.gemfile │ ├── debug.gemfile │ ├── style.gemfile │ └── testing.gemfile ├── coverage.gemfile ├── legacy.gemfile ├── style.gemfile └── vanilla.gemfile ├── lib └── omniauth │ ├── jwt.rb │ ├── jwt │ └── version.rb │ └── strategies │ └── jwt.rb ├── omniauth-jwt2.gemspec └── spec ├── lib └── omniauth │ └── strategies │ └── jwt_spec.rb ├── spec_helper.rb └── support ├── hash.rb └── next_instance_of.rb /.github/workflows/ancient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.github/workflows/ancient.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.github/workflows/legacy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format progress 3 | -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/.simplecov -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 2.3.8 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/Rakefile -------------------------------------------------------------------------------- /gemfiles/ancient.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/ancient.gemfile -------------------------------------------------------------------------------- /gemfiles/contexts/coverage.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/contexts/coverage.gemfile -------------------------------------------------------------------------------- /gemfiles/contexts/debug.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/contexts/debug.gemfile -------------------------------------------------------------------------------- /gemfiles/contexts/style.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/contexts/style.gemfile -------------------------------------------------------------------------------- /gemfiles/contexts/testing.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/contexts/testing.gemfile -------------------------------------------------------------------------------- /gemfiles/coverage.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/coverage.gemfile -------------------------------------------------------------------------------- /gemfiles/legacy.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/legacy.gemfile -------------------------------------------------------------------------------- /gemfiles/style.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/style.gemfile -------------------------------------------------------------------------------- /gemfiles/vanilla.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/gemfiles/vanilla.gemfile -------------------------------------------------------------------------------- /lib/omniauth/jwt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/lib/omniauth/jwt.rb -------------------------------------------------------------------------------- /lib/omniauth/jwt/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/lib/omniauth/jwt/version.rb -------------------------------------------------------------------------------- /lib/omniauth/strategies/jwt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/lib/omniauth/strategies/jwt.rb -------------------------------------------------------------------------------- /omniauth-jwt2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/omniauth-jwt2.gemspec -------------------------------------------------------------------------------- /spec/lib/omniauth/strategies/jwt_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/spec/lib/omniauth/strategies/jwt_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/spec/support/hash.rb -------------------------------------------------------------------------------- /spec/support/next_instance_of.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-jwt/HEAD/spec/support/next_instance_of.rb --------------------------------------------------------------------------------