set_to_all

set_to_all() Instance Public methods Also aliased as: all

ontransformnode=

ontransformnode=(arg0) Instance Public methods VOID ontransformnode register an ontransformnode event handler

top 2

top(n = 0) Instance Public methods Returns the n number of frames on the call stack from the last frame initialized. Raises FrameUnderflow if there are no frames in the given stack range.

noon

noon() Instance Public methods Alias for: middle_of_day

upstream_proxy

upstream_proxy() Instance Public methods

add_filter

add_filter(&block) Instance Public methods Adds a filter from the block provided. Each line in the backtrace will be mapped against this filter. # Will turn "/my/rails/root/app/models/person.rb" into "/app/models/person.rb" backtrace_cleaner.add_filter { |line| line.gsub(Rails.root, '') }

instructions

instructions() Instance Public methods Get an array of all Instruction children. IMMUTABLE

blank

blank() Instance Public methods Blank the image; that is, set the entire image to have no data, so it will be displayed as transparent, and the background of whatever window it is displayed in will show through.

add_method_documentation

add_method_documentation(out, klass) Instance Public methods Adds documentation for all methods in klass to out

cmsg_is?

ancillarydata.cmsg_is?(level, type) => true or false Instance Public methods tests the level and type of ancillarydata. ancdata = Socket::AncillaryData.new(:INET6, :IPV6, :PKTINFO, "") ancdata.cmsg_is?(Socket::IPPROTO_IPV6, Socket::IPV6_PKTINFO) #=> true ancdata.cmsg_is?(:IPV6, :PKTINFO) #=> true ancdata.cmsg_is?(:IP, :PKTINFO) #=> false ancdata.cmsg_is?(:SOCKET, :RIGHTS) #=> false