Method: URI::Generic#hostname

Defined in:
lib/httpclient/util.rb

#hostnameObject



19
20
21
22
# File 'lib/httpclient/util.rb', line 19

def hostname
  v = self.host
  /\A\[(.*)\]\z/ =~ v ? $1 : v
end