vrootheight

vrootheight(win) Class Public methods

CSV

CSV(*args, &block) Instance Public methods Passes args to CSV.instance. CSV("CSV,data").read #=> [["CSV", "data"]] If a block is given, the instance is passed the block and the return value becomes the return value of the block. CSV("CSV,data") { |c| c.read.any? { |a| a.include?("data") } } #=> true CSV("CSV,data") { |c| c.read.any? { |a| a.include?("zombies") } } #=> false

==

digest_obj == another_digest_obj â booleandigest_obj == string â boolean Instance Public methods If a string is given, checks whether it is equal to the hex-encoded hash value of the digest object. If another digest instance is given, checks whether they have the same hash value. Otherwise returns false.

empty?

empty?() Instance Public methods Is the tar entry empty?

inherited

inherited(subclass) Class Public methods

locking_enabled?

locking_enabled?() Instance Public methods Returns true if the lock_optimistically flag is set to true (which it is, by default) and the table includes the locking_column column (defaults to lock_version).

safe_level

thr.safe_level â integer Instance Public methods Returns the safe level in effect for thr. Setting thread-local safe levels can help when implementing sandboxes which run insecure code. thr = Thread.new { $SAFE = 3; sleep } Thread.current.safe_level #=> 0 thr.safe_level #=> 3

hide

hide(idx) Instance Public methods

__eval

__eval(str) Instance Public methods

add

add(child, keys=nil) Instance Public methods