new

new() Class Public methods

rootx

rootx(win) Class Public methods

text_selection_adjust

text_selection_adjust(idx) Instance Public methods

puts

ios.puts(obj, ...) â nil Instance Public methods Writes the given objects to ios as with IO#print. Writes a record separator (typically a newline) after any that do not already end with a newline sequence. If called with an array argument, writes each element on a new line. If called without arguments, outputs a single record separator. $stdout.puts("this", "is", "a", "test") produces: this is a test

insert

insert(idx, item, keys={}) Instance Public methods

cat

cat(*filename) â Cat Instance Public methods Returns a Cat object, for the given filenames

full_name

full_name() Instance Public methods

http_default_port

http_default_port() Class Public methods The default port to use for HTTP requests; defaults to 80.

zone_offset

zone_offset(zone, year=self.now.year) Class Public methods Return the number of seconds the specified time zone differs from UTC. Numeric time zones that include minutes, such as -10:00 or +1330 will work, as will simpler hour-only time zones like -10 or +13. Textual time zones listed in ZoneOffset are also supported. If the time zone does not match any of the above, zone_offset will check if the local time zone (both with and without potential Daylight Saving Time changes being in

adler32

Zlib.adler32(string, adler) Class Public methods Calculates Adler-32 checksum for string, and returns updated value of adler. If string is omitted, it returns the Adler-32 initial value. If adler is omitted, it assumes that the initial value is given to adler. FIXME: expression.