appendChild

appendChild(arg0) Instance Public methods IXMLDOMNode appendChild append a child node IXMLDOMNode arg0 --- newChild [IN]

hide 2

hide() Instance Public methods

inverse_of

inverse_of(command, args, &block) Instance Public methods Returns the inverse of the given command. For example: recorder.inverse_of(:rename_table, [:old, :new]) # => [:rename_table, [:new, :old]] This method will raise an IrreversibleMigration exception if it cannot invert the command.

perforation_invoke

perforation_invoke() Instance Public methods

insert

str.insert(index, other_str) â str Instance Public methods Inserts other_str before the character at the given index, modifying str. Negative indices count from the end of the string, and insert after the given character. The intent is insert aString so that it starts at the given index. "abcd".insert(0, 'X') #=> "Xabcd" "abcd".insert(3, 'X') #=> "abcXd" "abcd".insert(4, 'X') #=> "abcdX" "abcd".insert(-3, 'X') #=> "abXcd" "abcd".insert(-1, 'X') #=> "a

dir

dir(*args) Instance Public methods Alias for: list

_get_all_subst_keys

_get_all_subst_keys() Class Public methods

caller_orig

caller_orig(lev, n) Instance Public methods Alias for: caller

end_sequence

end_sequence() Instance Public methods Called when a sequence ends.

byteslice

str.byteslice(fixnum) â new_str or nilstr.byteslice(fixnum, fixnum) â new_str or nilstr.byteslice(range) â new_str or nil Instance Public methods Byte ReferenceâIf passed a single Fixnum, returns a substring of one byte at that position. If passed two Fixnum objects, returns a substring starting at the offset given by the first, and a length given by the second. If given a Range, a substring containing bytes at offsets given by the range is returned. In all