beginning_of_week=

beginning_of_week=(week_start) Class Public methods Sets Date.beginning_of_week to a week start (e.g. :monday) for current request/thread. This method accepts any of the following day symbols: :monday, :tuesday, :wednesday, :thursday, :friday, :saturday, :sunday

echo

echo() Class Public methods Enables characters typed by the user to be echoed by ::getch as they are typed.

bindinfo_all

bindinfo_all(context=nil) Instance Public methods

ordinal

ordinal(number) Instance Public methods Returns the suffix that should be added to a number to denote the position in an ordered sequence such as 1st, 2nd, 3rd, 4th. ordinal(1) # => "st" ordinal(2) # => "nd" ordinal(1002) # => "nd" ordinal(1003) # => "rd" ordinal(-11) # => "th" ordinal(-1021) # => "st"

preferences

preferences() Class Public methods

world_writable?

File.world_writable?(file_name) â fixnum or nil Instance Public methods If file_name is writable by others, returns an integer representing the file permission bits of file_name. Returns nil otherwise. The meaning of the bits is platform dependent; on Unix systems, see stat(2). file_name can be an IO object. File.world_writable?("/tmp") #=> 511 m = File.world_writable?("/tmp") sprintf("%o", m) #=> "777"

pane_configinfo

pane_configinfo(win) Instance Public methods Alias for: paneconfiginfo

pointerx

pointerx(win) Class Public methods

writable?

stat.writable? â true or false Instance Public methods Returns true if stat is writable by the effective user id of this process. File.stat("testfile").writable? #=> true

required_uri

required_uri() Class Public methods