diff options
| author | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-17 13:14:35 +0000 |
|---|---|---|
| committer | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-07-17 13:14:35 +0000 |
| commit | a20dd9dce49633f23746c3eb947fd724b0f254db (patch) | |
| tree | c8b78f54a38a6dedbecc3502e051049b97403d2a /lib/uri | |
| parent | f2b5171cbdb0f7699142c1707de6442963706004 (diff) | |
| download | ruby-a20dd9dce49633f23746c3eb947fd724b0f254db.tar.gz ruby-a20dd9dce49633f23746c3eb947fd724b0f254db.tar.xz ruby-a20dd9dce49633f23746c3eb947fd724b0f254db.zip | |
* lib/uri/ldap.rb: method hierarchical? should be in URI::LDAP.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6662 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/uri')
| -rw-r--r-- | lib/uri/common.rb | 4 | ||||
| -rw-r--r-- | lib/uri/ldap.rb | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/uri/common.rb b/lib/uri/common.rb index f5772084e..1e59c0fa3 100644 --- a/lib/uri/common.rb +++ b/lib/uri/common.rb @@ -214,7 +214,7 @@ module URI # :startdoc: end # REGEXP - module Util + module Util # :nodoc: def make_components_hash(klass, array_hash) tmp = {} if array_hash.kind_of?(Array) && @@ -260,7 +260,7 @@ module URI # String to replaces in. # +unsafe+:: # Regexp that matches all symbols that must be replaced with codes. - # By default uses <tt>REGEXP::SAFE</tt>. + # By default uses <tt>REGEXP::UNSAFE</tt>. # # == Description # diff --git a/lib/uri/ldap.rb b/lib/uri/ldap.rb index e75cdc455..163d2cda2 100644 --- a/lib/uri/ldap.rb +++ b/lib/uri/ldap.rb @@ -180,10 +180,10 @@ module URI set_extensions(val) val end - end - def hierarchical? - false + def hierarchical? + false + end end @@schemes['LDAP'] = LDAP |
