copy

copy(destination, sources, options = {}) Instance Public methods

addstr

addstr(str) Instance Public methods add a string of characters str, to the window and advance cursor

change_column

change_column(table_name, column_name, type, options = {}) Instance Public methods Changes the column's definition according to the new options. See ActiveRecord::ConnectionAdapters::TableDefinition#column for details of the options you can use. change_column(:suppliers, :name, :string, limit: 80) change_column(:accounts, :description, :text)

gets

ARGF.gets(sep=$/) â stringARGF.gets(limit) â stringARGF.gets(sep, limit) â string Instance Public methods Returns the next line from the current file in ARGF. By default lines are assumed to be separated by +$/+; to use a different character as a separator, supply it as a String for the sep argument. The optional limit argument specifies how many characters of each line to return. By default all characters are returned.

conflicting_dependencies

conflicting_dependencies() Instance Public methods Return the 2 dependency objects that conflicted

insert

insert(irb) Instance Public methods Add the given irb session to the jobs Array.

after

after(&after) Instance Public methods

each_codepoint

str.each_codepoint {|integer| block } â strstr.each_codepoint â an_enumerator Instance Public methods Passes the Integer ordinal of each character in str, also known as a codepoint when applied to Unicode strings to the given block. If no block is given, an enumerator is returned instead. "hello\u0639".each_codepoint {|c| print c, ' ' } produces: 104 101 108 108 111 1593

safeip_add_to_access_path

safeip_add_to_access_path(dir) Instance Public methods

each_byte

ARGF.bytes {|byte| block } â ARGFARGF.bytes â an_enumeratorARGF.each_byte {|byte| block } â ARGFARGF.each_byte â an_enumerator Instance Public methods Iterates over each byte of each file in +ARGV+. A byte is returned as a +Fixnum+ in the range 0..255. This method allows you to treat the files supplied on the command line as a single file consisting of the concatenation of each named file. After the last byte of the first file has been