├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Dockerfile ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── config.ru ├── example ├── Procfile ├── nginx-site.conf ├── nginx.conf └── test_backend.rb ├── lib ├── nginx_omniauth_adapter.rb └── nginx_omniauth_adapter │ ├── app.rb │ └── version.rb ├── nginx_omniauth_adapter.gemspec ├── script ├── console └── setup └── spec ├── integration_spec.rb └── spec_helper.rb /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/Rakefile -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/config.ru -------------------------------------------------------------------------------- /example/Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/example/Procfile -------------------------------------------------------------------------------- /example/nginx-site.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/example/nginx-site.conf -------------------------------------------------------------------------------- /example/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/example/nginx.conf -------------------------------------------------------------------------------- /example/test_backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/example/test_backend.rb -------------------------------------------------------------------------------- /lib/nginx_omniauth_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/lib/nginx_omniauth_adapter.rb -------------------------------------------------------------------------------- /lib/nginx_omniauth_adapter/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/lib/nginx_omniauth_adapter/app.rb -------------------------------------------------------------------------------- /lib/nginx_omniauth_adapter/version.rb: -------------------------------------------------------------------------------- 1 | module NginxOmniauthAdapter 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /nginx_omniauth_adapter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/nginx_omniauth_adapter.gemspec -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/script/console -------------------------------------------------------------------------------- /script/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/script/setup -------------------------------------------------------------------------------- /spec/integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/spec/integration_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorah/nginx_omniauth_adapter/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------