This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Escape Sequence Name Meaning | |
| \a Alert Produces an audible or visible alert. | |
| \b Backspace Moves the cursor back one position (non-destructive). | |
| \f Form Feed Moves the cursor to the first position of the next page. | |
| \n New Line Moves the cursor to the first position of the next line. | |
| \r Carriage Return Moves the cursor to the first position of the current line. | |
| \t Horizontal Tab Moves the cursor to the next horizontal tabular position. | |
| \v Vertical Tab Moves the cursor to the next vertical tabular position. | |
| \' Produces a single quote. | |
| \" Produces a double quote. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require File.expand_path(File.join(File.dirname(__FILE__), 'filename')) | |
| # Or only for ruby 1.9 | |
| require_relative 'filename' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # | |
| # * *Args* : | |
| # - ++ -> | |
| # * *Returns* : | |
| # - | |
| # * *Raises* : | |
| # - ++ -> | |
| # | |
| def method_name |
NewerOlder