diff options
Diffstat (limited to 'lib/uri/ldaps.rb')
| -rw-r--r-- | lib/uri/ldaps.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/uri/ldaps.rb b/lib/uri/ldaps.rb index 42bbfe86ba..58228f5894 100644 --- a/lib/uri/ldaps.rb +++ b/lib/uri/ldaps.rb @@ -1,3 +1,4 @@ +# frozen_string_literal: false # = uri/ldap.rb # # License:: You can redistribute it and/or modify it under the same term as Ruby. @@ -5,7 +6,7 @@ # See URI for general documentation # -require 'uri/ldap' +require_relative 'ldap' module URI @@ -16,5 +17,6 @@ module URI # A Default port of 636 for URI::LDAPS DEFAULT_PORT = 636 end - @@schemes['LDAPS'] = LDAPS + + register_scheme 'LDAPS', LDAPS end |
