not_found

not_found(generator, req, res) Instance Public methods Returns a 404 page built by generator for req on res.

parse

parse() Instance Public methods

compile

InstructionSequence.compile(source[, file[, path[, line[, options]]]]) â iseq Class Public methods Takes source, a String of Ruby code and compiles it to an InstructionSequence. Optionally takes file, path, and line which describe the filename, absolute path and first line number of the ruby code in source which are metadata attached to the returned iseq. options, which can be true, false or a Hash, is used to modify the default behavior of the Ruby iseq compiler. For details regar

to_s

to_s(p1 = v1, p2 = v2) Instance Public methods Alias for: export

set_height

set_height(*pairs) Instance Public methods

attributes

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

new

new(*enums) Class Public methods Creates a new SyncEnumerator which enumerates rows of given Enumerable objects.

drop_while

enum.drop_while { |arr| block } â arrayenum.drop_while â an_enumerator Instance Public methods Drops elements up to, but not including, the first element for which the block returns nil or false and returns an array containing the remaining elements. If no block is given, an enumerator is returned instead. a = [1, 2, 3, 4, 5, 0] a.drop_while { |i| i < 3 } #=> [3, 4, 5, 0]

collect

collect() Instance Public methods Like Array#collect. map

rdev_minor

stat.rdev_minor â fixnum Instance Public methods Returns the minor part of File_Stat#rdev or nil. File.stat("/dev/fd1").rdev_minor #=> 1 File.stat("/dev/tty").rdev_minor #=> 0