columnconfiginfo

columnconfiginfo(master, index, slot=nil) Class Public methods

remove_connection

remove_connection(owner) Instance Public methods Remove the connection for this class. This will close the active connection and the defined connection (if they exist). The result can be used as an argument for #establish_connection, for easily re-establishing the connection.

nodeTypeString

nodeTypeString() Instance Public methods BSTR nodeTypeString the type of node in string form

flash

flash() Instance Public methods Access the contents of the flash. Use flash["notice"] to read a notice you put there or flash["notice"] = "hello" to put a new one.

raw

raw() Instance Public methods Evaluates to true if raw mode is set for this element. This is the case if the context has :raw set to :all or an array containing the name of this element. The evaluation is tested against expanded_name, and so is namespace sensitive.

attribute_method?

attribute_method?(attr_name) Instance Protected methods

mkdir_p

mkdir_p(list, options = {}) Class Public methods Options: mode noop verbose Creates a directory and all its parent directories. For example, FileUtils.mkdir_p '/usr/local/lib/ruby' causes to make following directories, if it does not exist. * /usr * /usr/local * /usr/local/lib * /usr/local/lib/ruby You can pass several directories at a time in a list. mkpath makedirs

create_pie

create_pie(hh, mm, span, color='red') Instance Public methods

find

find(preview) Class Public methods Find a mailer preview by its underscored class name

get_print

get_print(uri_or_host, path = nil, port = nil) Class Public methods Gets the body text from the target and outputs it to $stdout. The target can either be specified as (uri), or as (host, path, port = 80); so: Net::HTTP.get_print URI('http://www.example.com/index.html') or: Net::HTTP.get_print 'www.example.com', '/index.html'