extensions

extensions() Instance Public methods A list of extensions, to be filled in by adapters that support them. At the moment only postgresql does.

print

ios.print() â nilios.print(obj, ...) â nil Instance Public methods Writes the given object(s) to ios. The stream must be opened for writing. If the output field separator ($,) is not nil, it will be inserted between each object. If the output record separator ($\) is not nil, it will be appended to the output. If no arguments are given, prints $_. Objects that aren't strings will be converted by calling their to_s method. With no argument, prints the contents of th

ret_val

ret_val(val) Class Public methods

dlineinfo

dlineinfo(index) Instance Public methods

cycle

enum.cycle(n=nil) { |obj| block } â nilenum.cycle(n=nil) â an_enumerator Instance Public methods Calls block for each element of enum repeatedly n times or forever if none or nil is given. If a non-positive number is given or the collection is empty, does nothing. Returns nil if the loop has finished without getting interrupted. #cycle saves elements in an internal array so changes to enum after the first pass have no effect. If no block is given, an enumerat

set_canvas

set_canvas(win) Instance Public methods

controller_path=

controller_path=(path) Instance Public methods

have_required_values?

have_required_values?() Instance Public methods

documentation_page

documentation_page(store, generator, path, req, res) Instance Public methods Fills in res with the class, module or page for req from store. path is relative to the mount_path and is used to determine the class, module or page name (/RDoc/Servlet.html becomes RDoc::Servlet). generator is used to create the page.

method_missing

method_missing(event, *args) Instance Public methods