Function: ruby-end-of-block
ruby-end-of-block is an interactive and byte-compiled function defined
in ruby-mode.el.gz.
Signature
(ruby-end-of-block &optional ARG)
Documentation
Move forward to the end of the current block.
With ARG, move out of multiple blocks.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ruby-mode.el.gz
(defun ruby-end-of-block (&optional arg)
"Move forward to the end of the current block.
With ARG, move out of multiple blocks."
(interactive "p")
(ruby-move-to-block (or arg 1)))