name

name() Instance Public methods

kanji_metrics_hash_displayof

kanji_metrics_hash_displayof(win, option=nil) Instance Public methods

add_html

add_html(tag, name) Instance Public methods Add to the sequences recognized as general markup.

delete_namespace

delete_namespace(namespace="xmlns") Instance Public methods Removes a namespace from this node. This only works if the namespace is actually declared in this node. If no argument is passed, deletes the default namespace. Evaluates to: this element doc = Document.new "<a xmlns:foo='bar' xmlns='twiddle'/>" doc.root.delete_namespace puts doc # -> <a xmlns:foo='bar'/> doc.root.delete_namespace 'foo' puts doc # -> <a/>

child_site

child_site() Instance Public methods

latin_metrics_hash_displayof

latin_metrics_hash_displayof(win, option=nil) Instance Public methods

current_configinfo 2

current_configinfo(slot=nil) Instance Public methods

invoke

invoke(*args) Instance Public methods Invoke the task if it is needed. Prerequisites are invoked first.

reset!

reset!() Instance Public methods Reset the current session. This is useful for testing multiple sessions in a single test case.

pipe

IO.pipe â [read_io, write_io]IO.pipe(ext_enc) â [read_io, write_io]IO.pipe("ext_enc:int_enc" [, opt]) â [read_io, write_io]IO.pipe(ext_enc, int_enc [, opt]) â [read_io, write_io]IO.pipe(...) {|read_io, write_io| ... } Class Public methods Creates a pair of pipe endpoints (connected to each other) and returns them as a two-element array of IO objects: [ read_io, write_io ]. If a block is given, the block is called and returns th