token_append

token_append(tag, *args) Instance Public methods

attron

attron(attrs) Instance Public methods Turns off the named attributes attrs without turning any other attributes on or off. See also #attrset

textWindDel2

textWindDel2(w) Instance Public methods

continue

continue(wait=nil) Instance Public methods

get

get(*tags) Instance Public methods

snippet

snippet(text, limit = 100) Instance Public methods The first limit characters of text as HTML

insertBefore

insertBefore(arg0, arg1) Instance Public methods IXMLDOMNode insertBefore insert a child node IXMLDOMNode arg0 --- newChild [IN] VARIANT arg1 --- refChild [IN]

color_pair

color_pair(attrs) Class Public methods Sets the color pair attributes to attrs. This should be equivalent to ::attrset(COLOR_PAIR(attrs)) TODO: validate that equivalency

rjust

str.rjust(integer, padstr=' ') â new_str Instance Public methods If integer is greater than the length of str, returns a new String of length integer with str right justified and padded with padstr; otherwise, returns str. "hello".rjust(4) #=> "hello" "hello".rjust(20) #=> " hello" "hello".rjust(20, '1234') #=> "123412341234123hello"

collection_radio_buttons

collection_radio_buttons(object, method, collection, value_method, text_method, options = {}, html_options = {}, &block) Instance Public methods Returns radio button tags for the collection of existing return values of method for object's class. The value returned from calling method on the instance object will be selected. If calling method returns nil, no selection is made. The :value_method and :text_method parameters are methods to be called on each member of collection. Th