This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

DidYouMean::VariableNameChecker

        # DidYouMean::VariableNameChecker < Object

(from ruby core)
---
# Constants:

NAMES_TO_EXCLUDE
:   [not documented]
RB_RESERVED_WORDS
:   `VariableNameChecker::RB_RESERVED_WORDS` is the list of all reserved
    words in Ruby. They could be declared like methods are, and a typo
    would cause Ruby to raise a `NameError` because of the way they are
    declared.

    The `:VariableNameChecker` will use this list to suggest a reversed
    word if a `NameError` is raised and found closest matches,
    excluding:

        * +do+
        * +if+
        * +in+
        * +or+

    Also see `MethodNameChecker::RB_RESERVED_WORDS`.


# Class methods:

    new

# Instance methods:

    corrections
    cvar_names
    ivar_names
    lvar_names
    method_names
    name

# Attributes:

    attr_reader cvar_names
    attr_reader ivar_names
    attr_reader lvar_names
    attr_reader method_names
    attr_reader name


      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.