helpRelease1

helpRelease1(w, x, y) Instance Public methods

help_msg

help_msg() Instance Public methods

hi_function

hi_function(num) Instance Public methods

httpd

httpd() Instance Public methods Run WEBrick HTTP server. ruby -run -e httpd -- [OPTION] DocumentRoot --bind-address=ADDR address to bind --port=NUM listening port number --max-clients=MAX max number of simultaneous clients --temp-dir=DIR temporary directory --do-not-reverse-lookup disable reverse lookup --request-timeout=SECOND request timeout in seconds --http-version=VERSION HTTP version -v verb

iMovieButton1

iMovieButton1(w, x, y) Instance Public methods

import_ucm

import_ucm(path) Instance Public methods

inspect

obj.inspect â string Instance Public methods Returns a string containing a human-readable representation of obj. By default, show the class name and the list of the instance variables and their values (by calling inspect on each of them). User defined classes should override this method to make better representation of obj. When overriding this method, it should return a string whose encoding is compatible with the default external encoding. [ 1, 2, 3..4, 'five' ].inspect #=&

install

install() Instance Public methods Copy SOURCE to DEST. ruby -run -e install -- [OPTION] SOURCE DEST -p apply access/modification times of SOURCE files to corresponding destination files -m set permission mode (as in chmod), instead of 0755 -v verbose

instance_of?

obj.instance_of?(class) â true or false Instance Public methods Returns true if obj is an instance of the given class. See also Object#kind_of?. class A; end class B < A; end class C < B; end b = B.new b.instance_of? A #=> false b.instance_of? B #=> true b.instance_of? C #=> false

instance_variable_defined?

obj.instance_variable_defined?(symbol) â true or false Instance Public methods Returns true if the given instance variable is defined in obj. class Fred def initialize(p1, p2) @a, @b = p1, p2 end end fred = Fred.new('cat', 99) fred.instance_variable_defined?(:@a) #=> true fred.instance_variable_defined?("@b") #=> true fred.instance_variable_defined?("@c") #=> false