_jisx0301

Date._jisx0301(string) â hash Class Public methods Returns a hash of parsed elements.

id2obj

id2obj(lbox, id) Class Public methods

rake_check_options

rake_check_options(options, *optdecl) Instance Public methods Check that the options do not contain options not listed in optdecl. An ArgumentError exception is thrown if non-declared options are found.

each

each() Class Public methods Enumerate every known spec. See ::dirs= and ::add_spec to set the list of specs.

inspect

inspect() Instance Public methods

iv=

cipher.iv = string â string Instance Public methods Sets the cipher IV. Please note that since you should never be using ECB mode, an IV is always explicitly required and should be set prior to encryption. The IV itself can be safely transmitted in public, but it should be unpredictable to prevent certain kinds of attacks. You may use #random_iv to create a secure random IV. Only call this method after calling #encrypt or #decrypt. If not explicitly set, the OpenSSL default of an

close

close() Instance Public methods Closes the connection. Further operations are impossible until you open a new connection with connect.

do_classes

do_classes() Instance Public methods Scans content for rb_define_class, boot_defclass, rb_define_class_under and rb_singleton_class

reverse!

str.reverse! â str Instance Public methods Reverses str in place.

eos?

eos?() Instance Public methods Returns true if the scan pointer is at the end of the string. s = StringScanner.new('test string') p s.eos? # => false s.scan(/test/) p s.eos? # => false s.terminate p s.eos? # => true