├── .aiignore ├── .devcontainer └── devcontainer.json ├── .env.local.example ├── .envrc ├── .git-hooks ├── commit-msg ├── commit-subjects-goalie.txt ├── footer-template.erb.txt └── prepare-commit-msg ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ancient.yml │ ├── auto-assign.yml │ ├── codeql-analysis.yml │ ├── coverage.yml │ ├── current.yml │ ├── dep-heads.yml │ ├── dependency-review.yml │ ├── heads.yml │ ├── jruby.yml │ ├── legacy.yml │ ├── license-eye.yml │ ├── locked_deps.yml │ ├── style.yml │ ├── supported.yml │ ├── truffle.yml │ ├── unlocked_deps.yml │ └── unsupported.yml ├── .gitignore ├── .gitlab-ci.yml ├── .idea ├── .gitignore ├── GitLink.xml ├── copilot.data.migration.agent.xml ├── copilot.data.migration.ask.xml ├── copilot.data.migration.ask2agent.xml ├── copilot.data.migration.edit.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .junie ├── guidelines-rbs.md └── guidelines.md ├── .licenserc.yaml ├── .qlty └── qlty.toml ├── .rspec ├── .rubocop.yml ├── .rubocop_gradual.lock ├── .rubocop_rspec.yml ├── .simplecov ├── .tool-versions ├── .yard_gfm_support.rb ├── .yardignore ├── .yardopts ├── Appraisal.root.gemfile ├── Appraisals ├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.md ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── README.md ├── REEK ├── RUBOCOP.md ├── Rakefile ├── SECURITY.md ├── bin ├── _guard-core ├── appraisal ├── bundle-audit ├── bundler-audit ├── code_climate_reek ├── coderay ├── erb ├── gem_checksums ├── guard ├── htmldiff ├── irb ├── kettle-changelog ├── kettle-commit-msg ├── kettle-dev-setup ├── kettle-dvcs ├── kettle-pre-release ├── kettle-readme-backers ├── kettle-release ├── kramdown ├── ldiff ├── listen ├── nokogiri ├── pry ├── racc ├── rackup ├── rake ├── rbs ├── rdbg ├── rdoc ├── reek ├── ri ├── rspec ├── rubocop ├── rubocop-gradual ├── ruby-parse ├── ruby-rewrite ├── setup ├── standardrb ├── thor ├── yaml-convert ├── yard ├── yard-junk ├── yardoc └── yri ├── certs └── pboling.pem ├── checksums ├── omniauth-ldap-2.3.1.gem.sha256 ├── omniauth-ldap-2.3.1.gem.sha512 ├── omniauth-ldap-2.3.2.gem.sha256 ├── omniauth-ldap-2.3.2.gem.sha512 ├── omniauth-ldap-2.3.3.gem.sha256 └── omniauth-ldap-2.3.3.gem.sha512 ├── docs ├── OmniAuth.html ├── OmniAuth │ ├── LDAP.html │ ├── LDAP │ │ ├── Adaptor.html │ │ ├── Adaptor │ │ │ ├── AuthenticationError.html │ │ │ ├── ConfigurationError.html │ │ │ ├── ConnectionError.html │ │ │ └── LdapError.html │ │ └── Version.html │ ├── Strategies.html │ └── Strategies │ │ └── LDAP.html ├── _index.html ├── class_list.html ├── css │ ├── common.css │ ├── full_list.css │ └── style.css ├── file.CHANGELOG.html ├── file.CITATION.html ├── file.CODE_OF_CONDUCT.html ├── file.CONTRIBUTING.html ├── file.FUNDING.html ├── file.LICENSE.html ├── file.README.html ├── file.REEK.html ├── file.RUBOCOP.html ├── file.SECURITY.html ├── file.adaptor.html ├── file.ldap.html ├── file.net-ldap.html ├── file.net-ntlm.html ├── file.omniauth-ldap-2.3.1.gem.html ├── file.omniauth-ldap-2.3.2.gem.html ├── file.omniauth-ldap.html ├── file.sasl.html ├── file.version.html ├── file_list.html ├── frames.html ├── index.html ├── js │ ├── app.js │ ├── full_list.js │ └── jquery.js ├── method_list.html └── top-level-namespace.html ├── gemfiles ├── audit.gemfile ├── coverage.gemfile ├── current.gemfile ├── dep_heads.gemfile ├── head.gemfile ├── modular │ ├── coverage.gemfile │ ├── debug.gemfile │ ├── documentation.gemfile │ ├── erb │ │ ├── r2.3 │ │ │ └── default.gemfile │ │ ├── r2.6 │ │ │ └── v2.2.gemfile │ │ ├── r2 │ │ │ └── v3.0.gemfile │ │ ├── r3.1 │ │ │ └── v4.0.gemfile │ │ ├── r3 │ │ │ └── v5.0.gemfile │ │ └── vHEAD.gemfile │ ├── logger │ │ ├── r2.4 │ │ │ └── v1.5.3.gemfile │ │ ├── r2 │ │ │ └── v1.5.gemfile │ │ ├── r3 │ │ │ └── v1.7.gemfile │ │ └── vHEAD.gemfile │ ├── mutex_m │ │ ├── r2.4 │ │ │ └── v0.1.gemfile │ │ ├── r2 │ │ │ └── v0.3.gemfile │ │ ├── r3 │ │ │ └── v0.3.gemfile │ │ └── vHEAD.gemfile │ ├── omniauth │ │ ├── r2 │ │ │ ├── v1.0.gemfile │ │ │ ├── v1.1.gemfile │ │ │ ├── v1.2.gemfile │ │ │ ├── v1.3.gemfile │ │ │ ├── v1.4.gemfile │ │ │ ├── v1.5.gemfile │ │ │ ├── v1.6.gemfile │ │ │ ├── v1.7.gemfile │ │ │ ├── v1.8.gemfile │ │ │ ├── v1.9.gemfile │ │ │ ├── v2.0.gemfile │ │ │ └── v2.1.gemfile │ │ ├── r3 │ │ │ └── v2.1.gemfile │ │ └── vHEAD.gemfile │ ├── optional.gemfile │ ├── rack │ │ ├── r2.1 │ │ │ ├── v1.0.gemfile │ │ │ ├── v1.1.gemfile │ │ │ ├── v1.2.gemfile │ │ │ ├── v1.3.gemfile │ │ │ ├── v1.4.gemfile │ │ │ ├── v1.5.gemfile │ │ │ └── v1.6.gemfile │ │ ├── r2.3 │ │ │ ├── v2.0.gemfile │ │ │ ├── v2.1.gemfile │ │ │ └── v2.2.gemfile │ │ ├── r2 │ │ │ ├── v2.2.gemfile │ │ │ └── v3.2.gemfile │ │ ├── r3 │ │ │ └── v3.2.gemfile │ │ └── vHEAD.gemfile │ ├── runtime_heads.gemfile │ ├── stringio │ │ ├── r2.4 │ │ │ └── v0.0.2.gemfile │ │ ├── r2 │ │ │ └── v3.0.gemfile │ │ ├── r3 │ │ │ └── v3.0.gemfile │ │ └── vHEAD.gemfile │ ├── style.gemfile │ ├── x_std_libs.gemfile │ └── x_std_libs │ │ ├── r2.3 │ │ └── libs.gemfile │ │ ├── r2.4 │ │ └── libs.gemfile │ │ ├── r2.6 │ │ └── libs.gemfile │ │ ├── r2 │ │ └── libs.gemfile │ │ ├── r3.1 │ │ └── libs.gemfile │ │ ├── r3 │ │ └── libs.gemfile │ │ └── vHEAD.gemfile ├── ruby_2_3_omni_v1.0.gemfile ├── ruby_2_3_omni_v1.1.gemfile ├── ruby_2_3_omni_v1.2.gemfile ├── ruby_2_3_omni_v1.3.gemfile ├── ruby_2_3_omni_v1.4.gemfile ├── ruby_2_3_omni_v1.5.gemfile ├── ruby_2_3_omni_v1.6.gemfile ├── ruby_2_3_omni_v1.7.gemfile ├── ruby_2_3_omni_v1.8.gemfile ├── ruby_2_4.gemfile ├── ruby_2_5.gemfile ├── ruby_2_6.gemfile ├── ruby_2_7.gemfile ├── ruby_3_0.gemfile ├── ruby_3_1.gemfile ├── ruby_3_2.gemfile ├── ruby_3_3.gemfile ├── style.gemfile └── unlocked_deps.gemfile ├── lib ├── omniauth-ldap.rb ├── omniauth-ldap │ ├── adaptor.rb │ └── version.rb └── omniauth │ └── strategies │ └── ldap.rb ├── omniauth-ldap.gemspec ├── sig ├── omniauth-ldap.rbs ├── omniauth │ ├── ldap │ │ ├── adaptor.rbs │ │ └── version.rbs │ └── strategies │ │ └── ldap.rbs └── rbs │ ├── net-ldap.rbs │ ├── net-ntlm.rbs │ └── sasl.rbs └── spec ├── config ├── debug.rb ├── omniauth.rb ├── rspec │ └── rack_test.rb └── vcr.rb ├── integration ├── middleware_spec.rb └── roda_integration_spec.rb ├── omniauth-ldap └── adaptor_spec.rb ├── omniauth ├── adaptor_spec.rb └── strategies │ └── ldap_spec.rb ├── sample └── roda_app.rb └── spec_helper.rb /.aiignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.aiignore -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.local.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.env.local.example -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.envrc -------------------------------------------------------------------------------- /.git-hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.git-hooks/commit-msg -------------------------------------------------------------------------------- /.git-hooks/commit-subjects-goalie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.git-hooks/commit-subjects-goalie.txt -------------------------------------------------------------------------------- /.git-hooks/footer-template.erb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.git-hooks/footer-template.erb.txt -------------------------------------------------------------------------------- /.git-hooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.git-hooks/prepare-commit-msg -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ancient.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/ancient.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/auto-assign.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/current.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/current.yml -------------------------------------------------------------------------------- /.github/workflows/dep-heads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/dep-heads.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/heads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/heads.yml -------------------------------------------------------------------------------- /.github/workflows/jruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/jruby.yml -------------------------------------------------------------------------------- /.github/workflows/legacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/legacy.yml -------------------------------------------------------------------------------- /.github/workflows/license-eye.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/license-eye.yml -------------------------------------------------------------------------------- /.github/workflows/locked_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/locked_deps.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/supported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/supported.yml -------------------------------------------------------------------------------- /.github/workflows/truffle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/truffle.yml -------------------------------------------------------------------------------- /.github/workflows/unlocked_deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/unlocked_deps.yml -------------------------------------------------------------------------------- /.github/workflows/unsupported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.github/workflows/unsupported.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/GitLink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/GitLink.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/copilot.data.migration.agent.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.ask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/copilot.data.migration.ask.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.ask2agent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/copilot.data.migration.ask2agent.xml -------------------------------------------------------------------------------- /.idea/copilot.data.migration.edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/copilot.data.migration.edit.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.junie/guidelines-rbs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.junie/guidelines-rbs.md -------------------------------------------------------------------------------- /.junie/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.junie/guidelines.md -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /.qlty/qlty.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.qlty/qlty.toml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.rspec -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_gradual.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.rubocop_gradual.lock -------------------------------------------------------------------------------- /.rubocop_rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.rubocop_rspec.yml -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.simplecov -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.4.7 2 | -------------------------------------------------------------------------------- /.yard_gfm_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.yard_gfm_support.rb -------------------------------------------------------------------------------- /.yardignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.yardignore -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/.yardopts -------------------------------------------------------------------------------- /Appraisal.root.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Appraisal.root.gemfile -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FUNDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/FUNDING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/README.md -------------------------------------------------------------------------------- /REEK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RUBOCOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/RUBOCOP.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/_guard-core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/_guard-core -------------------------------------------------------------------------------- /bin/appraisal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/appraisal -------------------------------------------------------------------------------- /bin/bundle-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/bundle-audit -------------------------------------------------------------------------------- /bin/bundler-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/bundler-audit -------------------------------------------------------------------------------- /bin/code_climate_reek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/code_climate_reek -------------------------------------------------------------------------------- /bin/coderay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/coderay -------------------------------------------------------------------------------- /bin/erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/erb -------------------------------------------------------------------------------- /bin/gem_checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/gem_checksums -------------------------------------------------------------------------------- /bin/guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/guard -------------------------------------------------------------------------------- /bin/htmldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/htmldiff -------------------------------------------------------------------------------- /bin/irb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/irb -------------------------------------------------------------------------------- /bin/kettle-changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-changelog -------------------------------------------------------------------------------- /bin/kettle-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-commit-msg -------------------------------------------------------------------------------- /bin/kettle-dev-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-dev-setup -------------------------------------------------------------------------------- /bin/kettle-dvcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-dvcs -------------------------------------------------------------------------------- /bin/kettle-pre-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-pre-release -------------------------------------------------------------------------------- /bin/kettle-readme-backers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-readme-backers -------------------------------------------------------------------------------- /bin/kettle-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kettle-release -------------------------------------------------------------------------------- /bin/kramdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/kramdown -------------------------------------------------------------------------------- /bin/ldiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/ldiff -------------------------------------------------------------------------------- /bin/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/listen -------------------------------------------------------------------------------- /bin/nokogiri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/nokogiri -------------------------------------------------------------------------------- /bin/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/pry -------------------------------------------------------------------------------- /bin/racc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/racc -------------------------------------------------------------------------------- /bin/rackup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rackup -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rbs -------------------------------------------------------------------------------- /bin/rdbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rdbg -------------------------------------------------------------------------------- /bin/rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rdoc -------------------------------------------------------------------------------- /bin/reek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/reek -------------------------------------------------------------------------------- /bin/ri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/ri -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/rubocop-gradual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/rubocop-gradual -------------------------------------------------------------------------------- /bin/ruby-parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/ruby-parse -------------------------------------------------------------------------------- /bin/ruby-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/ruby-rewrite -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/standardrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/standardrb -------------------------------------------------------------------------------- /bin/thor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/thor -------------------------------------------------------------------------------- /bin/yaml-convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/yaml-convert -------------------------------------------------------------------------------- /bin/yard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/yard -------------------------------------------------------------------------------- /bin/yard-junk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/yard-junk -------------------------------------------------------------------------------- /bin/yardoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/yardoc -------------------------------------------------------------------------------- /bin/yri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/bin/yri -------------------------------------------------------------------------------- /certs/pboling.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/certs/pboling.pem -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.1.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.1.gem.sha256 -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.1.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.1.gem.sha512 -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.2.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.2.gem.sha256 -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.2.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.2.gem.sha512 -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.3.gem.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.3.gem.sha256 -------------------------------------------------------------------------------- /checksums/omniauth-ldap-2.3.3.gem.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/checksums/omniauth-ldap-2.3.3.gem.sha512 -------------------------------------------------------------------------------- /docs/OmniAuth.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/OmniAuth/LDAP.html -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Adaptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/OmniAuth/LDAP/Adaptor.html -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Adaptor/AuthenticationError.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Adaptor/ConfigurationError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/OmniAuth/LDAP/Adaptor/ConfigurationError.html -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Adaptor/ConnectionError.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Adaptor/LdapError.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/LDAP/Version.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/Strategies.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/OmniAuth/Strategies/LDAP.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/_index.html -------------------------------------------------------------------------------- /docs/class_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/class_list.html -------------------------------------------------------------------------------- /docs/css/common.css: -------------------------------------------------------------------------------- 1 | /* Override this file with custom rules */ -------------------------------------------------------------------------------- /docs/css/full_list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/css/full_list.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/file.CHANGELOG.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.CHANGELOG.html -------------------------------------------------------------------------------- /docs/file.CITATION.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.CITATION.html -------------------------------------------------------------------------------- /docs/file.CODE_OF_CONDUCT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.CODE_OF_CONDUCT.html -------------------------------------------------------------------------------- /docs/file.CONTRIBUTING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.CONTRIBUTING.html -------------------------------------------------------------------------------- /docs/file.FUNDING.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.FUNDING.html -------------------------------------------------------------------------------- /docs/file.LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.LICENSE.html -------------------------------------------------------------------------------- /docs/file.README.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.REEK.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.RUBOCOP.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.SECURITY.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.adaptor.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.ldap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.ldap.html -------------------------------------------------------------------------------- /docs/file.net-ldap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.net-ldap.html -------------------------------------------------------------------------------- /docs/file.net-ntlm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.net-ntlm.html -------------------------------------------------------------------------------- /docs/file.omniauth-ldap-2.3.1.gem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.omniauth-ldap-2.3.1.gem.html -------------------------------------------------------------------------------- /docs/file.omniauth-ldap-2.3.2.gem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.omniauth-ldap-2.3.2.gem.html -------------------------------------------------------------------------------- /docs/file.omniauth-ldap.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/file.sasl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.sasl.html -------------------------------------------------------------------------------- /docs/file.version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file.version.html -------------------------------------------------------------------------------- /docs/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/file_list.html -------------------------------------------------------------------------------- /docs/frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/frames.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/js/app.js -------------------------------------------------------------------------------- /docs/js/full_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/js/full_list.js -------------------------------------------------------------------------------- /docs/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/js/jquery.js -------------------------------------------------------------------------------- /docs/method_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/method_list.html -------------------------------------------------------------------------------- /docs/top-level-namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/docs/top-level-namespace.html -------------------------------------------------------------------------------- /gemfiles/audit.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/audit.gemfile -------------------------------------------------------------------------------- /gemfiles/coverage.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/coverage.gemfile -------------------------------------------------------------------------------- /gemfiles/current.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/current.gemfile -------------------------------------------------------------------------------- /gemfiles/dep_heads.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/dep_heads.gemfile -------------------------------------------------------------------------------- /gemfiles/head.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/head.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/coverage.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/coverage.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/debug.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/debug.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/documentation.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/documentation.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/erb/r2.3/default.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/erb/r2.3/default.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/erb/r2.6/v2.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/erb/r2.6/v2.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/erb/r2/v3.0.gemfile: -------------------------------------------------------------------------------- 1 | gem "erb", "~> 3.0" # ruby >= 2.7.0 2 | -------------------------------------------------------------------------------- /gemfiles/modular/erb/r3.1/v4.0.gemfile: -------------------------------------------------------------------------------- 1 | # last version compatible with Ruby 3.1 2 | gem "erb", "~> 4.0" # ruby >= 2.7.0 3 | -------------------------------------------------------------------------------- /gemfiles/modular/erb/r3/v5.0.gemfile: -------------------------------------------------------------------------------- 1 | gem "erb", "~> 5.0" # ruby >= 3.2.0 2 | -------------------------------------------------------------------------------- /gemfiles/modular/erb/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/erb/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/logger/r2.4/v1.5.3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/logger/r2.4/v1.5.3.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/logger/r2/v1.5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/logger/r2/v1.5.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/logger/r3/v1.7.gemfile: -------------------------------------------------------------------------------- 1 | # Ruby >= 2.5.0 2 | gem "logger", "~> 1.7" 3 | -------------------------------------------------------------------------------- /gemfiles/modular/logger/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/logger/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/mutex_m/r2.4/v0.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/mutex_m/r2.4/v0.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/mutex_m/r2/v0.3.gemfile: -------------------------------------------------------------------------------- 1 | # Ruby >= 2.5 2 | gem "mutex_m", "~> 0.2" 3 | -------------------------------------------------------------------------------- /gemfiles/modular/mutex_m/r3/v0.3.gemfile: -------------------------------------------------------------------------------- 1 | # Ruby >= 2.5 2 | gem "mutex_m", "~> 0.2" 3 | -------------------------------------------------------------------------------- /gemfiles/modular/mutex_m/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/mutex_m/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.3.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.4.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.5.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.6.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.7.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.8.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.8.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v1.9.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v1.9.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v2.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v2.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r2/v2.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r2/v2.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/r3/v2.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/r3/v2.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/omniauth/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/omniauth/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/optional.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/optional.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.3.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.4.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.5.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.1/v1.6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.1/v1.6.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.3/v2.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.3/v2.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.3/v2.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.3/v2.1.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2.3/v2.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2.3/v2.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2/v2.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2/v2.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r2/v3.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r2/v3.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/r3/v3.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/r3/v3.2.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/rack/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/rack/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/runtime_heads.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/runtime_heads.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/stringio/r2.4/v0.0.2.gemfile: -------------------------------------------------------------------------------- 1 | # !!WARNING!! 2 | # NOT SEMVER 3 | # Last version to support Ruby <= 2.5 4 | gem "stringio", ">= 0.0.2" 5 | -------------------------------------------------------------------------------- /gemfiles/modular/stringio/r2/v3.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/stringio/r2/v3.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/stringio/r3/v3.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/stringio/r3/v3.0.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/stringio/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/stringio/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/style.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/style.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r2.3/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r2.3/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r2.4/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r2.4/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r2.6/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r2.6/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r2/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r2/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r3.1/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r3.1/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/r3/libs.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/r3/libs.gemfile -------------------------------------------------------------------------------- /gemfiles/modular/x_std_libs/vHEAD.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/modular/x_std_libs/vHEAD.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.0.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.1.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.2.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.3.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.4.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.5.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.6.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.7.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_3_omni_v1.8.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_3_omni_v1.8.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_4.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_4.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_5.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_5.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_6.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_6.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_2_7.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_2_7.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_3_0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_3_0.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_3_1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_3_1.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_3_2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_3_2.gemfile -------------------------------------------------------------------------------- /gemfiles/ruby_3_3.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/ruby_3_3.gemfile -------------------------------------------------------------------------------- /gemfiles/style.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/style.gemfile -------------------------------------------------------------------------------- /gemfiles/unlocked_deps.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/gemfiles/unlocked_deps.gemfile -------------------------------------------------------------------------------- /lib/omniauth-ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/lib/omniauth-ldap.rb -------------------------------------------------------------------------------- /lib/omniauth-ldap/adaptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/lib/omniauth-ldap/adaptor.rb -------------------------------------------------------------------------------- /lib/omniauth-ldap/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/lib/omniauth-ldap/version.rb -------------------------------------------------------------------------------- /lib/omniauth/strategies/ldap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/lib/omniauth/strategies/ldap.rb -------------------------------------------------------------------------------- /omniauth-ldap.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/omniauth-ldap.gemspec -------------------------------------------------------------------------------- /sig/omniauth-ldap.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/omniauth-ldap.rbs -------------------------------------------------------------------------------- /sig/omniauth/ldap/adaptor.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/omniauth/ldap/adaptor.rbs -------------------------------------------------------------------------------- /sig/omniauth/ldap/version.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/omniauth/ldap/version.rbs -------------------------------------------------------------------------------- /sig/omniauth/strategies/ldap.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/omniauth/strategies/ldap.rbs -------------------------------------------------------------------------------- /sig/rbs/net-ldap.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/rbs/net-ldap.rbs -------------------------------------------------------------------------------- /sig/rbs/net-ntlm.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/rbs/net-ntlm.rbs -------------------------------------------------------------------------------- /sig/rbs/sasl.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/sig/rbs/sasl.rbs -------------------------------------------------------------------------------- /spec/config/debug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/config/debug.rb -------------------------------------------------------------------------------- /spec/config/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/config/omniauth.rb -------------------------------------------------------------------------------- /spec/config/rspec/rack_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/config/rspec/rack_test.rb -------------------------------------------------------------------------------- /spec/config/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/config/vcr.rb -------------------------------------------------------------------------------- /spec/integration/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/integration/middleware_spec.rb -------------------------------------------------------------------------------- /spec/integration/roda_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/integration/roda_integration_spec.rb -------------------------------------------------------------------------------- /spec/omniauth-ldap/adaptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/omniauth-ldap/adaptor_spec.rb -------------------------------------------------------------------------------- /spec/omniauth/adaptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/omniauth/adaptor_spec.rb -------------------------------------------------------------------------------- /spec/omniauth/strategies/ldap_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/omniauth/strategies/ldap_spec.rb -------------------------------------------------------------------------------- /spec/sample/roda_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/sample/roda_app.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omniauth/omniauth-ldap/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------