enumerate

enumerate(tag, options={}) Class Public methods Prints all annotations with tag tag under the root directories app, config, db, lib, and test (recursively). Additional directories may be added using a comma-delimited list set using ENV['SOURCE_ANNOTATION_DIRECTORIES']. Directories may also be explicitly set using the :dirs key in options. SourceAnnotationExtractor.enumerate 'TODO|FIXME', dirs: %w(app lib), tag: true If options has a :tag flag, it will be passed to each annotation'

each

ENV.each { |name, value| } â HashENV.each â EnumeratorENV.each_pair { |name, value| } â HashENV.each_pair â Enumerator Class Public methods Yields each environment variable name and value. If no block is given an Enumerator is returned.

tabbind_remove

tabbind_remove(tag, context) Instance Public methods

imagebind_append

imagebind_append(context, *args) Instance Public methods def #imagebind_append(*args) _bind_append_for_event_class(Event_for_Items, [path, 'bindImage'], *args) self end

demoInternetOptions_2

demoInternetOptions_2(t) Instance Public methods Alternate implementation that doesn't rely on run-time styles

unix_server_socket

unix_server_socket(path) Class Public methods creates a UNIX server socket on path If no block given, it returns a listening socket. If a block is given, it is called with the socket and the block value is returned. When the block exits, the socket is closed and the socket file is removed. socket = Socket.unix_server_socket("/tmp/s") p socket #=> #<Socket:fd 3> p socket.local_address #=> #<Addrinfo: /tmp/s SOCK_STREAM> Socket.unix_server_socke

sequence_name=

sequence_name=(value) Instance Public methods Sets the name of the sequence to use when generating ids to the given value, or (if the value is nil or false) to the value returned by the given block. This is required for Oracle and is useful for any database which relies on sequences for primary key generation. If a sequence name is not explicitly set when using Oracle or Firebird, it will default to the commonly used pattern of: #{table_name}_seq If a sequence name is not explicitl

preserveWhiteSpace=

preserveWhiteSpace=(arg0) Instance Public methods VOID preserveWhiteSpace indicates whether the parser preserves whitespace

yconfig

yconfig(key, value=None) Instance Public methods

peep

peep(p1) Instance Public methods Equivalent to peek. This method is obsolete; use peek instead.