Skip to content

Instantly share code, notes, and snippets.

@blaisethomas
Created March 10, 2015 15:55
Show Gist options
  • Save blaisethomas/bc9227dce6270f9f38f0 to your computer and use it in GitHub Desktop.
Save blaisethomas/bc9227dce6270f9f38f0 to your computer and use it in GitHub Desktop.
Ruby is a CLASS based, OBJECT oriented language. Every _______ is an instance of a _______.
Ruby sees everything, from simple values (strings, integers), to complex data structures (arrays), as _________.
Ruby OBJECTS are most often handled via ________ that represent them.
Every OBJECT is capable of understanding a certain set of MESSAGES.
These MESSAGES correspond directly to a _________ - a named, executable routine, whose execution the object has the ability to trigger.
Message sending via the dot operator: ________.__________ .
METHODS can also take _________ (which are also OBJECTS). Ususally in parentheses.
ARGUMENT, METHOD, VARIABLE, CLASS, OBJECT,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment