load_methods_matching

load_methods_matching(name) Instance Public methods Returns an Array of RI data for methods matching name

accept_list_start

accept_list_start(list) Instance Public methods Prepares the visitor for consuming list

world_readable?

File.world_readable?(file_name) â fixnum or nil Class Public methods If file_name is readable by others, returns an integer representing the file permission bits of file_name. Returns nil otherwise. The meaning of the bits is platform dependent; on Unix systems, see stat(2). file_name can be an IO object. File.world_readable?("/etc/passwd") #=> 420 m = File.world_readable?("/etc/passwd") sprintf("%o", m) #=> "644"

ownerDocument

ownerDocument() Instance Public methods IXMLDOMDocument ownerDocument document that contains the node

drop_table

drop_table() Class Public methods

lock

lock(locks = true) Instance Public methods Specifies locking settings (default to true). For more information on locking, please see ActiveRecord::Locking.

do_GET

do_GET(req, res) Instance Public methods

%

big % other â Numeric Instance Public methods Returns big modulo other. See Numeric#divmod for more information.

to_f

fix.to_f â float Instance Public methods Converts fix to a Float.

new

Socket.new(domain, socktype [, protocol]) => socket Class Public methods Creates a new socket object. domain should be a communications domain such as: :INET, :INET6, :UNIX, etc. socktype should be a socket type such as: :STREAM, :DGRAM, :RAW, etc. protocol is optional and should be a protocol defined in the domain. If protocol is not given, 0 is used internally. Socket.new(:INET, :STREAM) # TCP socket Socket.new(:INET, :DGRAM) # UDP socket Socket.new(:UNIX, :STREAM) # UNIX st