process

process(name) Instance Public methods

to_s

to_s() Instance Public methods

new

new(sec=180) Class Public methods Creates a new SimpleRenewer that keeps an object alive for another sec seconds.

_fromUTF8

_fromUTF8(str, encoding=nil) Class Public methods

config

config() Instance Public methods Define the configuration object for the engine.

coerce

num.coerce(numeric) â array Instance Public methods If aNumeric is the same type as num, returns an array containing aNumeric and num. Otherwise, returns an array with both aNumeric and num represented as Float objects. 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. 1.coerce(2.5) #=> [2.5, 1.0] 1.2.coerce(3) #=> [3.0, 1.2] 1.coerce(2) #=> [

filename

ARGF.filename â String Instance Public methods Returns the current filename. â-â is returned when the current file is STDIN. For example: $ echo "foo" > foo $ echo "bar" > bar $ echo "glark" > glark $ ruby argf.rb foo bar glark ARGF.filename #=> "foo" ARGF.read(5) #=> "foo\nb" ARGF.filename #=> "bar" ARGF.skip ARGF.filename #=> "glark"

prepare

prepare(object, store_attribute) Class Public methods

classicWrap

classicWrap() Class Public methods

find_header

find_header(header, *paths) Instance Public methods Instructs mkmf to search for the given header in any of the paths provided, and returns whether or not it was found in those paths. If the header is found then the path it was found on is added to the list of included directories that are sent to the compiler (via the -I switch).