set_trace

set_trace( arg ) Class Public methods

blt_table_add

blt_table_add(*args) Instance Public methods

has_basic_credentials?

has_basic_credentials?(request) Instance Public methods

encode_www_form

encode_www_form(enum) Class Public methods Generate URL-encoded form data from given enum. This generates application/x-www-form-urlencoded data defined in HTML5 from given an Enumerable object. This internally uses ::encode_www_form_component. This method doesn't convert the encoding of given items, so convert them before call this method if you want to send data as other than original encoding or mixed encoding data. (Strings which are encoded in an HTML5 ASCII incompatible encod

years_ago

years_ago(years) Instance Public methods Returns a new date/time the specified number of years ago.

subwin

subwin(height, width, top, left) Instance Public methods Contruct a new subwindow with constraints of height lines, width columns, begin at top line, and begin left most column.

+

filter1 + filter2 Instance Public methods Outputs filter1, and then filter2 using Join.new

state_set

state_set(*args) Instance Public methods

join

join(*str) Class Public methods Synopsis URI::join(str[, str, ...]) Args str String(s) to work with Description Joins URIs. Usage require 'uri' p URI.join("http://example.com/","main.rbx") # => #<URI::HTTP:0x2022ac02 URL:http://localhost/main.rbx> p URI.join('http://example.com', 'foo') # => #<URI::HTTP:0x01ab80a0 URL:http://example.com/foo> p URI.join('http://example.com', '/foo', '/bar') # => #<URI::HTTP:0x01aaf0b0 URL:http://example.com/bar>

headers

headers(args = nil) Instance Public methods Allows you to pass random and unusual headers to the new Mail::Message object which will add them to itself. headers['X-Special-Domain-Specific-Header'] = "SecretValue" You can also pass a hash into headers of header field names and values, which will then be set on the Mail::Message object: headers 'X-Special-Domain-Specific-Header' => "SecretValue", 'In-Reply-To' => incoming.message_id The resulting Mail::Message will ha