readlines

ARGF.readlines(sep=$/) â arrayARGF.readlines(limit) â arrayARGF.readlines(sep, limit) â array Instance Public methods Reads ARGF's current file in its entirety, returning an Array of its lines, one line per element. Lines are assumed to be separated by sep. lines = ARGF.readlines lines[0] #=> "This is line one\n"

set_numlist_type

set_numlist_type(val) Instance Public methods Also aliased as: numlist_type=

open

open(*args) Class Public methods Creates a new Tempfile. If no block is given, this is a synonym for ::new. If a block is given, then a Tempfile object will be constructed, and the block is run with said object as argument. The Tempfile object will be automatically closed after the block terminates. The call returns the value of the block. In any case, all arguments (+*args+) will be passed to ::new. Tempfile.open('foo', '/home/temp') do |f| ... do something with f ... end # Eq

id2obj

id2obj(pie, id) Class Public methods

index

index(idx) Instance Public methods

child_site

child_site() Instance Public methods

latin_actual_displayof

latin_actual_displayof(win, option=nil) Instance Public methods Also aliased as: ascii_actual_displayof

show_help

show_help() Instance Public methods Display the help message for the command.

each

ARGF.each(sep=$/) {|line| block } â ARGFARGF.each(sep=$/,limit) {|line| block } â ARGFARGF.each(...) â an_enumeratorARGF.each_line(sep=$/) {|line| block } â ARGFARGF.each_line(sep=$/,limit) {|line| block } â ARGFARGF.each_line(...) â an_enumerator Instance Public methods Returns an enumerator which iterates over each line (separated by sep, which defaults to your platform's newline character) of each

find_ancestor_local_symbol

find_ancestor_local_symbol(symbol) Instance Public methods Looks for a symbol in the ancestors. See Context#find_local_symbol.