extensions=

extensions=(p1) Instance Public methods Sets X509_EXTENSIONs

method_added

method_added(event) Class Public methods Adds event subscribers for all new methods added to the class.

chr

int.chr([encoding]) â string Instance Public methods Returns a string containing the character represented by the receiver's value according to encoding. 65.chr #=> "A" 230.chr #=> "\346" 255.chr(Encoding::UTF_8) #=> "\303\277"

configure

configure(&block) Class Public methods Allows you to configure the railtie. This is the same method seen in Railtie::Configurable, but this module is no longer required for all subclasses of Railtie so we provide the class method here.

empty?

sdbm.empty? â true or false Instance Public methods Returns true if the database is empty.

add_c_enclosure

add_c_enclosure(variable, namespace) Instance Public methods Adds module as an enclosure (namespace) for the given variable for C files.

_eval_without_enc

_eval_without_enc(str) Instance Public methods

titleinvoke

titleinvoke(idx) Instance Public methods call title cmds

valid_civil?

Date.valid_civil?(year, month, mday[, start=Date::ITALY]) â bool Class Public methods Returns true if the given calendar date is valid, and false if not. Date.valid_date?(2001,2,3) #=> true Date.valid_date?(2001,2,29) #=> false See also jd and civil.

dev_major

stat.dev_major â fixnum Instance Public methods Returns the major part of File_Stat#dev or nil. File.stat("/dev/fd1").dev_major #=> 2 File.stat("/dev/tty").dev_major #=> 5