Class: URI::Generic

Inherits:
Object show all
Defined in:
lib/chef/monkey_patches/uri.rb

Instance Method Summary collapse

Instance Method Details

#hostnameObject

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