├── README.md ├── Rakefile ├── lib ├── ca-bundle.crt └── gapps_openid.rb └── test ├── fixtures.rb ├── fixtures ├── broken-chain.xml ├── google-site-xrds.xml ├── malformed-cert.xml └── missing-signature.xml ├── test_discovery.rb └── test_simplesign.rb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/ca-bundle.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/lib/ca-bundle.crt -------------------------------------------------------------------------------- /lib/gapps_openid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/lib/gapps_openid.rb -------------------------------------------------------------------------------- /test/fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/fixtures.rb -------------------------------------------------------------------------------- /test/fixtures/broken-chain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/fixtures/broken-chain.xml -------------------------------------------------------------------------------- /test/fixtures/google-site-xrds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/fixtures/google-site-xrds.xml -------------------------------------------------------------------------------- /test/fixtures/malformed-cert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/fixtures/malformed-cert.xml -------------------------------------------------------------------------------- /test/fixtures/missing-signature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/fixtures/missing-signature.xml -------------------------------------------------------------------------------- /test/test_discovery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/test_discovery.rb -------------------------------------------------------------------------------- /test/test_simplesign.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/ruby-openid-apps-discovery/HEAD/test/test_simplesign.rb --------------------------------------------------------------------------------