log

log(priority, format_string, *format_args) Class Public methods Log a message with the specified priority. Example: Syslog.log(Syslog::LOG_CRIT, "Out of disk space") Syslog.log(Syslog::LOG_CRIT, "User %s logged in", ENV['USER']) The priority levels, in descending order, are: LOG_EMERG System is unusable LOG_ALERT Action needs to be taken immediately LOG_CRIT A critical condition has occurred LOG_ERR An error occurred LOG_WARNING Warning of a possible problem LOG_NO

current_server

current_server() Class Public methods Get the 'current' server. In the context of execution taking place within the main thread of a dRuby server (typically, as a result of a remote call on the server or one of its objects), the current server is that server. Otherwise, the current server is the primary server. If the above rule fails to find a server, a DRbServerNotFound error is raised.

table_name=

table_name=(value) Instance Public methods Sets the table name explicitly. Example: class Project < ActiveRecord::Base self.table_name = "project" end You can also just define your own self.table_name method; see the documentation for ActiveRecord::Base#table_name.

inline_xhtml?

inline_xhtml?() Instance Public methods

==

ec == other â true or false Instance Public methods

delta

delta(deltax, deltay) Instance Public methods def delta(deltax=None, deltay=None)

cloneNode

cloneNode(arg0) Instance Public methods IXMLDOMNode cloneNode BOOL arg0 --- deep [IN]

new

new(tree, parent, keys={}) Class Public methods

create

create(input) Class Public methods REFACTOR: There's no reason that this can't be unified with .new. .new is the standard Ruby factory method.

background_eval_proc

background_eval_proc(*args, &blk) Class Public methods Alias for: bg_eval_proc