fetch_path

fetch_path(uri, mtime = nil, head = false) Instance Public methods Downloads uri and returns it as a String.

display_errors

display_errors() Instance Protected methods

item_index

item_index(item) Instance Public methods

lastChild

lastChild() Instance Public methods IXMLDOMNode lastChild first child of the node

getaddrinfo

Socket.getaddrinfo(nodename, servname[, family[, socktype[, protocol[, flags[, reverse_lookup]]]]]) => array Class Public methods Obtains address information for nodename:servname. family should be an address family such as: :INET, :INET6, :UNIX, etc. socktype should be a socket type such as: :STREAM, :DGRAM, :RAW, etc. protocol should be a protocol defined in the family, and defaults to 0 for the family. flags should be bitwise OR of Socket::AI_* constants. Socket.getaddrinfo(

getsockopt

getsockopt(level, optname) Instance Public methods

set_mark

set_mark(mark, index) Instance Public methods Alias for: mark_set

addch

addch(ch) Class Public methods Add a character ch, with attributes, then advance the cursor. see also the system manual for curs_addch(3)

to_s

to_s(format = :default) Instance Public methods Also aliased as: to_default_s

get_response

get_response(uri_or_host, path = nil, port = nil, &block) Class Public methods Sends a GET request to the target and returns the HTTP response as a Net::HTTPResponse object. The target can either be specified as (uri), or as (host, path, port = 80); so: res = Net::HTTP.get_response(URI('http://www.example.com/index.html')) print res.body or: res = Net::HTTP.get_response('www.example.com', '/index.html') print res.body