disable_ddl_transaction!

disable_ddl_transaction!() Class Public methods Disable DDL transactions for this migration.

notify?

notify?() Instance Public methods Whether to output messages to the output method, depending on the level of this notifier object.

equal?

obj.equal?(other) â true or false Instance Public methods Equality â At the Object level, == returns true only if obj and other are the same object. Typically, this method is overridden in descendant classes to provide class-specific meaning. Unlike ==, the equal? method should never be overridden by subclasses as it is used to determine object identity (that is, a.equal?(b) if and only if a is the same object as b): obj = "a" other = obj.dup a == other #=> true a.equal?

service

service(req, res) Instance Public methods Dispatches to a do_ method based on req if such a method is available. (do_GET for a GET request). Raises a MethodNotAllowed exception if the method is not implemented.

package_version 2

package_version() Class Public methods

generate

generate() Instance Public methods

def_to_euc_jp_from_iso_2022_jp

def_to_euc_jp_from_iso_2022_jp() Instance Public methods

new

new(err, buf) Class Public methods Create a new DRbUnknown object. buf is a string containing a marshalled object that could not be unmarshalled. err is the error message that was raised when the unmarshalling failed. It is used to determine the name of the unmarshalled object.

new

File.new(filename, mode="r" [, opt]) â fileFile.new(filename [, mode [, perm]] [, opt]) â file Class Public methods Opens the file named by filename according to the given mode and returns a new File object. See IO.new for a description of mode and opt. If a file is being created, permission bits may be given in perm. These mode and permission bits are platform dependent; on Unix systems, see open(2) and chmod(2) man pages for details. Examples f = File.new("testfil

path

path() Instance Public methods Path of the file being run