challenge

spki.challenge => string Instance Public methods Returns the challenge string associated with this SPKI.

noop

noop() Instance Public methods Issues a NOOP command. Does nothing except return a response.

xml_http_request?

xml_http_request?() Instance Public methods Returns true if the âX-Requested-Withâ header contains âXMLHttpRequestâ (case-insensitive). All major JavaScript libraries send this header with every Ajax request. xhr?

set_symbol_type

set_symbol_type(val) Instance Public methods Also aliased as: symbol_type=

main

main() Instance Public methods Gets the main page for this RDoc store. This page is used as the root of the RDoc server.

new

new(*parts) Class Public methods Creates a new Document with parts

create

create() Instance Public methods

ruby?

ruby?() Instance Public methods Is this verbatim section ruby code?

[]

Hash[ key, value, ... ] â new_hashHash[ [ [key, value], ... ] ] â new_hashHash[ object ] â new_hash Class Public methods Creates a new hash populated with the given objects. Equivalent to the literal { key => value, ... }. In the first form, keys and values occur in pairs, so there must be an even number of arguments. The second and third form take a single argument which is either an array of key-value pairs or an object convertible to a hash. Hash["

rassoc

ary.rassoc(obj) â new_ary or nil Instance Public methods Searches through the array whose elements are also arrays. Compares obj with the second element of each contained array using obj.==. Returns the first contained array that matches obj. See also #assoc. a = [ [ 1, "one"], [2, "two"], [3, "three"], ["ii", "two"] ] a.rassoc("two") #=> [2, "two"] a.rassoc("four") #=> nil