Software Engineers Handbook/Language Dictionary/Ruby

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Ruby[edit | edit source]

The wikipedia entry is here.

Type[edit | edit source]

Ruby is a full objected-oriented language.

Execution Entry Point[edit | edit source]

<Describe how/where the program is started i.e. C++ main()>

General Syntax[edit | edit source]

<Try to give a high level description of the contents of a typical line of code. An assignment example may be appropriate such as

a = b;

>

Comments[edit | edit source]

Pound signs (#) designate comments in Ruby

# this is an inline comment.  Everything after the # is a comment.

Variable Declarations[edit | edit source]

Ruby does not require explicit variable declarations. The following is perfectly valid Ruby code

x = 5

(x:5)

z = x+3

(z:8)

string = 'a string'

(string:'a string')

longstring = string+string

(longstring:'a stringa string')

Yet there are times when a declaration of type is necessary. In the following operation the array named 'objects' must be defined as an array so it can use the << method of adding elements to the array

objects = []
objects << "my 1st array elements"
objects << "my 2nd array element"
objects << 52+3

(objects: ["my 1st array element", "my 2nd array element", 55])

Method Declaration/Implementation[edit | edit source]

<Describe how methods/functions/procedures are declared and implemented.>

Scope[edit | edit source]

<Describe how scope is defined.>

Conditional Statements[edit | edit source]

<Describe the conditional statements in text and present

code examples. 

(put a space in the front of the line to format as code)>

Looping Statements[edit | edit source]

<Describe looping statements in English and present code examples.>

Output Statements[edit | edit source]

<Describe how to output Hello world! including the new-line with or without a carriage return.>

Error Handling/Recovery[edit | edit source]

<Describe error handling and recovery. Give examples as appropriate.>

Containers[edit | edit source]

<List containers or references to lists of containers available natively for this language. List ways to incorporate containers if they are not native to the language.>

Algorithms[edit | edit source]

<List algorithms or references to lists of algorithms available natively for this language. List ways to incorporate algorithms if they are not native to the language. Or, if not available, describe that.>

Garbage collection[edit | edit source]

<Describe whether the garbage collection is automatic or manual.>

Physical Structure[edit | edit source]

<Describe how the files, libararies, and parts are typically divided and arranged.>

Tips[edit | edit source]

<Please include tips that make it easier to switch to this language from another language.>

Web References[edit | edit source]

<List additional references on the web. Please include for what level reader the references are appropriate. (beginner/intermediate/advanced)>

Books and Articles[edit | edit source]

<List additional books and articles that may be helpful. Please include for what level reader the references are appropriate. (beginner/intermediate/advanced)>