Variable: ruby-builtin-methods-no-reqs

ruby-builtin-methods-no-reqs is a variable defined in ruby-mode.el.gz.

Value

("__callee__" "__dir__" "__method__" "abort" "binding" "block_given?"
 "caller" "exit" "exit!" "fail" "fork" "global_variables"
 "local_variables" "print" "private" "protected" "public" "puts"
 "raise" "rand" "readline" "readlines" "sleep" "srand")

Documentation

List of built-in methods that only have optional arguments.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ruby-mode.el.gz
(defconst ruby-builtin-methods-no-reqs
  '("__callee__"
    "__dir__"
    "__method__"
    "abort"
    "binding"
    "block_given?"
    "caller"
    "exit"
    "exit!"
    "fail"
    "fork"
    "global_variables"
    "local_variables"
    "print"
    "private"
    "protected"
    "public"
    "puts"
    "raise"
    "rand"
    "readline"
    "readlines"
    "sleep"
    "srand")
  "List of built-in methods that only have optional arguments.")