coerce

coerce(other) Instance Public methods The coerce method provides support for Ruby type coercion. This coercion mechanism is used by Ruby to handle mixed-type numeric operations: it is intended to find a compatible common type between the two operands of the operator. See also Numeric#coerce.

attributes

attributes(text) Instance Public methods Applies attribute-specific markup to text using RDoc::AttributeManager

safe_constantize

safe_constantize() Instance Public methods safe_constantize tries to find a declared constant with the name specified in the string. It returns nil when the name is not in CamelCase or is not initialized. See ActiveSupport::Inflector#safe_constantize 'Module'.safe_constantize # => Module 'Class'.safe_constantize # => Class 'blargle'.safe_constantize # => nil

fcntl

strio.fcntl Instance Public methods

write

write(data) Instance Public methods Writes data onto the IO

request_uri

request_uri() Instance Public methods Description Returns the full path for an HTTP request, as required by Net::HTTP::Get. If the URI contains a query, the full path is URI#path + '?' + URI#query. Otherwise, the path is simply URI#path.

controller_class

controller_class() Instance Public methods

select

IO.select(read_array[, write_array[, error_array[, timeout]]]) â array or nil Class Public methods Calls select(2) system call. It monitors given arrays of IO objects, waits one or more of IO objects ready for reading, are ready for writing, and have pending exceptions respectably, and returns an array that contains arrays of those IO objects. It will return nil if optional timeout value is given and no IO object is ready in timeout seconds. Parameters read_array an array of

_dump

_dump(limit) Instance Public methods Dump only crucial instance variables.

[]

[](*types) Class Public methods