Fix up Rubinius specific library specs.
[rbx.git] / lib / uri / ldaps.rb
blob6da333150f2da9748e324e4840ba04876e964d04
1 require 'uri/ldap'
3 module URI
5   # The default port for LDAPS URIs is 636, and the scheme is 'ldaps:' rather
6   # than 'ldap:'. Other than that, LDAPS URIs are identical to LDAP URIs;
7   # see URI::LDAP.
8   class LDAPS < LDAP
9     DEFAULT_PORT = 636
10   end
11   @@schemes['LDAPS'] = LDAPS
12 end