initializer

initializer(name, opts={}, &block) Instance Public methods Sends the initializers to the initializer method defined in the Rails::Initializable module. Each Rails::Application class has its own set of initializers, as defined by the Initializable module.

build

build(opts, vpath = ['./']) Class Public methods

check_box_tag

check_box_tag(name, value = "1", checked = false, options = {}) Instance Public methods Creates a check box form input tag. Options :disabled - If set to true, the user will not be able to use this input. Any other key creates standard HTML options for the tag. Examples check_box_tag 'accept' # => <input id="accept" name="accept" type="checkbox" value="1" /> check_box_tag 'rock', 'rock music' # => <input id="rock" name="rock" type="checkbox" value="rock music"

eof?

ARGF.eof? â true or false Instance Public methods Returns true if the current file in ARGF is at end of file, i.e. it has no data to read. The stream must be opened for reading or an IOError will be raised. $ echo "eof" | ruby argf.rb ARGF.eof? #=> false 3.times { ARGF.readchar } ARGF.eof? #=> false ARGF.readchar #=> "\n" ARGF.eof? #=> true

LOG_UPTO

LOG_UPTO(priority_level) => priority_mask Instance Public methods Generates a mask value for priority levels at or below the level specified. See mask=

validate_proc

validate_proc(c, val) Instance Public methods

level_notifier=

level_notifier=(value) Instance Public methods Sets the leveled notifier for this object. When the given value is an instance of AbstractNotifier, level_notifier is set to the given object. When an Integer is given, level_notifier is set to the notifier at the index value in the notifiers Array. If no notifier exists at the index value in the notifiers Array, an ErrUndefinedNotifier exception is raised. An ErrUnrecognizedLevel exception is raised if the given value is not found in

new

new(ts) Class Public methods Creates a new TupleSpaceProxy to wrap ts.

lastChild

lastChild() Instance Public methods IXMLDOMNode lastChild first child of the node

size

size() Instance Public methods @return the number of children of this parent length