Class: URI::Generic
Instance Method Summary collapse
-
#hostname ⇒ Object
Copied from the MRI source for Ruby 1.9.3 File lib/uri/generic.rb, line 659.
Instance Method Details
#hostname ⇒ Object
Copied from the MRI source for Ruby 1.9.3 File lib/uri/generic.rb, line 659
65 66 67 68 |
# File 'lib/chef/monkey_patches/uri.rb', line 65 def hostname v = self.host /\A\[(.*)\]\z/ =~ v ? $1 : v end |