info

info(win) Class Public methods

controller_path=

controller_path=(path) Instance Public methods

group

group(*args) Instance Public methods Allows to specify a group attribute: User.group(:name) => SELECT "users".* FROM "users" GROUP BY name Returns an array with distinct records based on the group attribute: User.select([:id, :name]) => [#<User id: 1, name: "Oscar">, #<User id: 2, name: "Oscar">, #<User id: 3, name: "Foo"> User.group(:name) => [#<User id: 3, name: "Foo", ...>, #<User id: 2, name: "Oscar", ...>] User.group('name AS grouped_na

get_owner 2

get_owner(sel=nil) Instance Public methods

modified?

modified?() Instance Public methods

find

find(file , paths = $:) Instance Public methods

attributes

attributes() Instance Public methods IXMLDOMNamedNodeMap attributes the collection of the node's attributes

spans

spans() Instance Public methods def set(*pairs) # idx, val, idx, val, ⦠OR [idx, val], [idx, val], ⦠if pairs[0].kind_of?(Array) # [idx, val], [idx, val], ... args = [] pairs.each{|idx, val| args << tagid(idx) << val } tk_send('set', *args) else # idx, val, idx, val, ... args = [] 0.step(pairs.size-1, 2){|i| args << tagid(pairs[i]) args << pairs[i+1] } tk_send('set', *args) end self end def #set_row(*pairs) if pairs[0].kind_of?(

eql?

eql?(other) Instance Public methods Alias for: ==

add_handler

add_handler(prefix, obj_or_signature=nil, help=nil, &block) Instance Public methods Adds aBlock to the list of handlers, with name as the name of the method. Parameters signature and help are used by the Introspection method if specified, where signature is either an Array containing strings each representing a type of it's signature (the first is the return value) or an Array of Arrays if the method has multiple signatures. Value type-names are âint, boolean, double, string, T