even?

big.even? â true or false Instance Public methods Returns true if big is an even number.

open

open(uri, config) Class Public methods Return an DRb::DRbSSLSocket instance as a client-side connection, with the SSL connected. This is called from DRb.start_service or while connecting to a remote object: DRb.start_service 'drbssl://localhost:0', front, config uri is the URI we are connected to, 'drbssl://localhost:0' above, config is our configuration. Either a Hash or DRb::DRbSSLSocket::SSLConfig

key?

key?(key) Instance Public methods Checks the hash for a key matching the argument passed in: hash = ActiveSupport::HashWithIndifferentAccess.new hash['key'] = 'value' hash.key?(:key) # => true hash.key?('key') # => true include? has_key? member?

package_name

package_name() Class Public methods

has_button

has_button(st=None) Instance Public methods Alias for: hasbutton

next_selector

next_selector(statement, values) Instance Protected methods Called to create a dependent selector (sibling, descendant, etc). Passes the remainder of the statement that will be reduced to zero eventually, and array of substitution values. This method is called from four places, so it helps to put it here for reuse. The only logic deals with the need to detect comma separators (alternate) and apply them to the selector group of the top selector.

finish

finish(name, id, payload) Instance Public methods

merge!

merge!(oth) Instance Public methods Args oth URI or String Description Destructive form of merge Usage require 'uri' uri = URI.parse("http://my.example.com") uri.merge!("/main.rbx?page=1") p uri # => #<URI::HTTP:0x2021f3b0 URL:http://my.example.com/main.rbx?page=1>

parse_top_level_statements

parse_top_level_statements(container) Instance Public methods Parses statements in the top-level container

readline

strio.readline(sep=$/) â stringstrio.readline(limit) â string or nilstrio.readline(sep, limit) â string or nil Instance Public methods See IO#readline.