removeChild

removeChild(arg0) Instance Public methods IXMLDOMNode removeChild remove a child node IXMLDOMNode arg0 --- childNode [IN]

search

search(container, keys={}) Class Public methods

add_authenticator

add_authenticator(auth_type, authenticator) Class Public methods Adds an authenticator for #authenticate. auth_type is the type of authentication this authenticator supports (for instance, âLOGINâ). The authenticator is an object which defines a process() method to handle authentication with the server. See Net::IMAP::LoginAuthenticator, Net::IMAP::CramMD5Authenticator, and Net::IMAP::DigestMD5Authenticator for examples. If auth_type refers to an existing authenticator, it will

new

new(value) Class Public methods

escape

escape(*arg) Instance Public methods Synopsis URI.escape(str [, unsafe]) Args str String to replaces in. unsafe Regexp that matches all symbols that must be replaced with codes. By default uses REGEXP::UNSAFE. When this argument is a String, it represents a character set. Description Escapes the string, replacing all unsafe characters with codes. Usage require 'uri' enc_uri = URI.escape("http://example.com/?a=\11\15") p enc_uri # => "http://example.com/?a=%09%0D" p U

eventloop_wait

eventloop_wait(check_root = false) Instance Public methods

receive

receive(raw_mail) Class Public methods Receives a raw email, parses it into an email object, decodes it, instantiates a new mailer, and passes the email object to the mailer object's receive method. If you want your mailer to be able to process incoming messages, you'll need to implement a receive method that accepts the raw email string as a parameter: class MyMailer < ActionMailer::Base def receive(mail) # ... end end

gmtime

time.gmtime â time Instance Public methods Converts time to UTC (GMT), modifying the receiver. t = Time.now #=> 2007-11-19 08:18:31 -0600 t.gmt? #=> false t.gmtime #=> 2007-11-19 14:18:31 UTC t.gmt? #=> true t = Time.now #=> 2007-11-19 08:18:51 -0600 t.utc? #=> false t.utc #=> 2007-11-19 14:18:51 UTC t.utc? #=> true

log

log(level, data) Instance Public methods Same as WEBrick::BasicLog#log

attribute_method?

attribute_method?(attr_name) Instance Protected methods