new

new(rss) Class Public methods

tag_raise

tag_raise(tag, above=None) Instance Public methods def tag_cget(tag, key) case key.to_s when 'text', 'label', 'show', 'data', 'file' tk_call_without_enc(@path, 'tag', 'cget', _get_eval_enc_str(tag), "-#{key}") when 'font', 'kanjifont' #fnt = tk_tcl2ruby(tk_send('tag', 'cget', tag, "-#{key}")) fnt = tk_tcl2ruby(_fromUTF8(tk_send_without_enc('tag','cget',_get_eval_enc_str(tag),'-font'))) unless fnt.kind_of?(TkFont) fnt = tagfontobj(tag, fnt) end

_get_global_var2

_get_global_var2(p1, p2) Instance Public methods

heading

heading() Instance Public methods

extensions=

extensions=(val) Instance Public methods setter for extensions val

find_all_tag

find_all_tag(conditions) Instance Public methods

pubDate=

pubDate=(date) Instance Public methods

not

not(opts, *rest) Instance Public methods Returns a new relation expressing WHERE + NOT condition according to the conditions in the arguments. not accepts conditions as a string, array, or hash. See where for more details on each format. User.where.not("name = 'Jon'") # SELECT * FROM users WHERE NOT (name = 'Jon') User.where.not(["name = ?", "Jon"]) # SELECT * FROM users WHERE NOT (name = 'Jon') User.where.not(name: "Jon") # SELECT * FROM users WHERE name != 'Jon' User.where.not

add_nonce

add_nonce(p1 = v1) Instance Public methods

start_sequence

start_sequence(anchor, tag, implicit, style) Instance Public methods Called when a sequence is started. anchor is the anchor associated with the sequence or nil. tag is the tag associated with the sequence or nil. implicit a boolean indicating whether or not the sequence was implicitly started. style is an integer indicating the list style. See the constants in Psych::Nodes::Sequence for the possible values of style. Example Here is a YAML document that exercises most of the possib