expand_path

expand_path(p1 = v1) Instance Public methods Returns the absolute path for the file. See File.expand_path.

new

new(markup = nil) Class Public methods Creates a new formatter that will output Markdown format text

reject

reject(t) Instance Public methods See OptionParser#reject.

cb_eval 2

cb_eval(cmd, *args) Instance Public methods def #cb_eval(cmd, *args) #self.eval_callback{ TkComm._get_eval_string(TkUtil.eval_cmd(cmd, *args)) } #ret = self.eval_callback{ TkComm._get_eval_string(TkUtil.eval_cmd(cmd, *args)) } ret = self.eval_callback(*args){|safe, *params| $SAFE=safe if $SAFE < safe TkComm._get_eval_string(TkUtil.eval_cmd(cmd, *params)) } if ret.kind_of?(Exception) raise ret end ret end

max

rng.max â objrng.max {| a,b | block } â obj Instance Public methods Returns the maximum value in the range. Returns nil if the begin value of the range larger than the end value. Can be given an optional block to override the default comparison method a <=> b. (10..20).max #=> 20

accept

accept(tcp) Instance Public methods Accept connection to IO tcp, with context of the current certificate configuration

tokenize

tokenize(text, options) Instance Protected methods

extname

extname() Instance Public methods Returns the file's extension. See File.extname.

at_beginning_of_minute

at_beginning_of_minute() Instance Public methods Alias for: beginning_of_minute

post_match

mtch.post_match â str Instance Public methods Returns the portion of the original string after the current match. Equivalent to the special variable $'. m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie") m.post_match #=> ": The Movie"