dataType=

dataType=(arg0) Instance Public methods VOID dataType the data type of the node

move

move(tag, dx, dy) Instance Public methods

find

find() Instance Public methods Iterates over the directory tree in a depth first manner, yielding a Pathname for each file under âthisâ directory. Returns an Enumerator if no block is given. Since it is implemented by the standard library module Find, Find.prune can be used to control the traversal. If self is ., yielded pathnames begin with a filename in the current directory, not ./. See Find.find

eventloop_tkwait

eventloop_tkwait() Instance Public methods

remove_handler

remove_handler(suffix) Class Public methods Remove custom handling of requests for files with suffix

ret_val

ret_val(val) Class Public methods

handle_constants

handle_constants(type, var_name, const_name, definition) Instance Public methods Adds constants. By providing some_value: at the start of the comment you can override the C value of the comment to give a friendly definition. 300: The perfect score in bowling rb_define_const(cFoo, "PERFECT", INT2FIX(300); Will override INT2FIX(300) with the value 300 in the output RDoc. Values may include quotes and escaped colons (:).

cmp

cmp(a, b) Class Public methods Alias for: compare_file

recvfrom_nonblock

udpsocket.recvfrom_nonblock(maxlen) => [mesg, sender_inet_addr]udpsocket.recvfrom_nonblock(maxlen, flags) => [mesg, sender_inet_addr] Instance Public methods Receives up to maxlen bytes from udpsocket using recvfrom(2) after O_NONBLOCK is set for the underlying file descriptor. If maxlen is omitted, its default value is 65536. flags is zero or more of the MSG_ options. The first element of the results, mesg, is the data received. The second element, sender_inet_addr, is an a

post_form

post_form(url, params) Class Public methods Posts HTML form data to the specified URI object. The form data must be provided as a Hash mapping from String to String. Example: { "cmd" => "search", "q" => "ruby", "max" => "50" } This method also does Basic Authentication iff url.user exists. But userinfo for authentication is deprecated (RFC3986). So this feature will be removed. Example: require 'net/http' require 'uri' Net::HTTP.post_form URI('http://www.example.com/sear