clear_widgets

clear_widgets(*args) Class Public methods

xml

xml() Instance Public methods BSTR xml return the XML source for the node and each of its descendants

end_of_week

end_of_week(start_day = Date.beginning_of_week) Instance Public methods Returns a new date/time representing the end of this week on the given day. Week is assumed to start on start_day, default is Date.beginning_of_week or config.beginning_of_week when set. DateTime objects have their time set to 23:59:59. at_end_of_week

ask_for_password

ask_for_password(*args) Instance Public methods

new_safe_slave

new_safe_slave(safe=4, keys={}, &blk) Class Public methods Also aliased as: new_safeTk

putc

ios.putc(obj) â obj Instance Public methods If obj is Numeric, write the character whose code is the least-significant byte of obj, otherwise write the first byte of the string representation of obj to ios. Note: This method is not safe for use with multi-byte characters as it will truncate them. $stdout.putc "A" $stdout.putc 65 produces: AA

set_eventloop_weight

set_eventloop_weight(loop_max, no_event_tick) Class Public methods

remove_reference

remove_reference(table_name, ref_name, options = {}) Instance Public methods Removes the reference(s). Also removes a type column if one exists. remove_reference, remove_references and remove_belongs_to are acceptable. Remove the reference remove_reference(:products, :user, index: true) Remove polymorphic reference remove_reference(:products, :supplier, polymorphic: true) remove_belongs_to

simple_selector

simple_selector(statement, values, can_negate = true) Instance Protected methods Creates a simple selector given the statement and array of substitution values. Returns a hash with the values tag_name, attributes, pseudo (classes) and negation. Called the first time with can_negate true to allow negation. Called a second time with false since negation cannot be negated.

handle_directive

handle_directive(prefix, directive, param, code_object = nil, encoding = nil) Instance Public methods Performs the actions described by directive and its parameter param. code_object is used for directives that operate on a class or module. prefix is used to ensure the replacement for handled directives is correct. encoding is used for the include directive. For a list of directives in RDoc see RDoc::Markup.