mutex

mutex() Instance Public methods

authenticate

authenticate(auth_type, *args) Instance Public methods Sends an AUTHENTICATE command to authenticate the client. The auth_type parameter is a string that represents the authentication mechanism to be used. Currently Net::IMAP supports authentication mechanisms: LOGIN:: login using cleartext user and password. CRAM-MD5:: login with cleartext user and encrypted password (see [RFC-2195] for a full description). This mechanism requires that the server have the us

stringify_keys

stringify_keys() Instance Public methods Returns a new hash with all keys converted to strings. hash = { name: 'Rob', age: '28' } hash.stringify_keys # => { "name" => "Rob", "age" => "28" }

text_field

text_field(name = "", value = nil, size = 40, maxlength = nil) Instance Public methods Generate a text field Input element, as a String. name is the name of the input field. value is its initial value. size is the size of the input area. maxlength is the maximum length of input accepted. Alternatively, the attributes can be specified as a hash. text_field("name") # <INPUT TYPE="text" NAME="name" SIZE="40"> text_field("name", "value") # <INPUT TYPE="text" NAME="name

open_recurse

open_recurse() Instance Public methods

image_button

image_button(src = "", name = nil, alt = nil) Instance Public methods Generate an Image Button Input element as a string. src is the URL of the image to use for the button. name is the input name. alt is the alternative text for the image. Alternatively, the attributes can be specified as a hash. image_button("url") # <INPUT TYPE="image" SRC="url"> image_button("url", "name", "string") # <INPUT TYPE="image" SRC="url" NAME="name" ALT="string"> image_button("SRC"

trace_callback

trace_callback(elem, op) Instance Public methods

makeToolbars

makeToolbars() Instance Public methods Toolbar button standard vs. tile comparison:

_eval_without_enc

_eval_without_enc(str) Class Public methods

euid=

Process.euid= user Class Public methods Sets the effective user ID for this process. Not available on all platforms.