cancel

cancel() Instance Public methods Also aliased as: stop

parent_file_name

parent_file_name() Instance Public methods File name of our parent

attributes

attributes() Instance Public methods IXMLDOMNamedNodeMap attributes the collection of the node's attributes

kanji_configinfo

kanji_configinfo(slot=nil) Instance Public methods

parameter_filter_for

parameter_filter_for(filters) Instance Protected methods

set_eventloop_window_mode

set_eventloop_window_mode(p1) Class Public methods

text_field_tag

text_field_tag(name, value = nil, options = {}) Instance Public methods Creates a standard text field; use these text fields to input smaller chunks of text like a username or a search query. Options :disabled - If set to true, the user will not be able to use this input. :size - The number of visible characters that will fit in the input. :maxlength - The maximum number of characters that the browser will allow the user to enter. :placeholder - The text contained in the fie

start 2

start(helo = 'localhost', user = nil, secret = nil, authtype = nil) Instance Public methods Opens a TCP connection and starts the SMTP session. Parameters helo is the HELO domain that you'll dispatch mails from; see the discussion in the overview notes. If both of user and secret are given, SMTP authentication will be attempted using the AUTH command. authtype specifies the type of authentication to attempt; it must be one of :login, :plain, and :cram_md5. See the notes on SMTP A

rand

rand(max=0) â number Instance Public methods If called without an argument, or if max.to_i.abs == 0, rand returns a pseudo-random floating point number between 0.0 and 1.0, including 0.0 and excluding 1.0. rand #=> 0.2725926052826416 When max.abs is greater than or equal to 1, rand returns a pseudo-random integer greater than or equal to 0 and less than max.to_i.abs. rand(100) #=> 12 When max is a Range, rand returns a random number where range.member?(number)

rewind

rewind() Instance Public methods Shortcut for tempfile.rewind.