diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/uri/common.rb | 2 | ||||
-rw-r--r-- | lib/uri/generic.rb | 4 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ Mon Nov 25 14:34:42 2013 Zachary Scott <[email protected]> * ext/bigdecimal/bigdecimal.gemspec: bump BigDecimal to 1.2.3 for @@ -74,7 +74,7 @@ module URI # The constructor accepts a hash as options for parser. # Keys of options are pattern names of URI components # and values of options are pattern strings. - # The constructor generetes set of regexps for parsing URIs. # # You can use the following keys: # @@ -552,7 +552,7 @@ module URI protected :set_password # returns the userinfo +ui+ as user, password - # if properly formated as 'user:password' def split_userinfo(ui) return nil, nil unless ui user, password = ui.split(/:/, 2) @@ -672,7 +672,7 @@ module URI # u.hostname = "::1" # p u.to_s #=> "http://[::1]/bar" # - # If the arugument seems IPv6 address, # it is wrapped by brackets. # def hostname=(v) |