from_hash

from_hash(object) Class Public methods

mail_to

mail_to(email_address, name = nil, html_options = {}, &block) Instance Public methods Creates a mailto link tag to the specified email_address, which is also used as the name of the link unless name is specified. Additional HTML attributes for the link can be passed in html_options. mail_to has several methods for customizing the email itself by passing special keys to html_options. Options :subject - Preset the subject line of the email. :body - Preset the body of the email

previousSibling

previousSibling() Instance Public methods IXMLDOMNode previousSibling left sibling of the node

eof?

ARGF.eof? â true or false Instance Public methods Returns true if the current file in ARGF is at end of file, i.e. it has no data to read. The stream must be opened for reading or an IOError will be raised. $ echo "eof" | ruby argf.rb ARGF.eof? #=> false 3.times { ARGF.readchar } ARGF.eof? #=> false ARGF.readchar #=> "\n" ARGF.eof? #=> true

names

names(pat=None) Class Public methods

tag_bind_remove

tag_bind_remove(tag, seq) Instance Public methods Also aliased as: tagbind_remove

__invoke__

__invoke__(*cmds) Instance Public methods Alias for: _invoke

add

add(path, options = {}) Instance Public methods

bind_remove

bind_remove(context) Instance Public methods

ancestors

ancestors() Instance Public methods Ancestors list for this ClassModule: the list of included modules (classes will add their superclass if any). Returns the included classes or modules, not the includes themselves. The returned values are either String or RDoc::NormalModule instances (see RDoc::Include#module). The values are returned in reverse order of their inclusion, which is the order suitable for searching methods/attributes in the ancestors. The superclass, if any, comes la