<=>

<=>( other ) Instance Public methods other a String or a Text returns the result of (to_s <=> arg.to_s)

maxsize

maxsize(win, *args) Class Public methods def ::manage(win, use_id = nil) # Tcl/Tk 8.5+ feature # -------------------------------------------------------------- # In the future release, I want to support to embed the 'win' # into the container which has window-id 'use-id'. # It may give users frexibility on controlling their GUI. # However, it may be difficult for current Tcl/Tk (Tcl/Tk8.5.1), # because it seems to require to modify Tcl/Tk's source code. # --------------------------

win_platform?

win_platform?() Class Public methods Is this a windows platform?

[]=

[]=( variable_name, value ) Instance Public methods

mark_gravity

mark_gravity(mark, direction=nil) Instance Public methods

create_self

create_self(keys) Instance Public methods

define_task

define_task(*args, &block) Class Public methods Define a task given args and an option block. If a rule with the given name already exists, the prerequisites and actions are added to the existing task. Returns the defined task.

print

print(*opts) Instance Public methods Prints the given opts to standard output, see IO#print for more information.

include?

include?(header) Instance Public methods Alias for: has_key?

new

Proc.new {|...| block } â a_procProc.new â a_proc Class Public methods Creates a new Proc object, bound to the current context. Proc::new may be called without a block only within a method with an attached block, in which case that block is converted to the Proc object. def proc_from Proc.new end proc = proc_from { "hello" } proc.call #=> "hello"