Ruby is a reflective, object-oriented programming language. It combines syntax inspired by Ada and Perl with Smalltalk-like object-oriented features, and also shares some features with Python, Lisp, Dylan and CLU. Ruby is a single-pass interpreted language. Its main implementation is free software distributed under an open-source license.
Ruby is said to follow the principle of least surprise (POLS), meaning that the language typically behaves intuitively or as the programmer assumes it should. The phrase did not originate with Matz and, generally speaking, Ruby may more closely follow a paradigm best termed as "Matz's Least Surprise", though many programmers have found it to be close to their own mental model as well.
Matz defined it this way in an interview:
Ruby has been described as a multi-paradigm programming language: it allows you to program procedurally (defining functions/variables outside classes makes them part of the root, 'self' Object), with object orientation (everything is an object) or functionally (it has anonymous functions, closures, and continuations; statements all have values, and functions return the last evaluation). It has support for introspection, reflection and meta-programming, as well as support for threads. Ruby features dynamic typing, and supports parametric polymorphism.
According to the Ruby FAQ, "If you like Perl, you will like Ruby and be right at home with its syntax. If you like Smalltalk, you will like Ruby and be right at home with its semantics. If you like Python, you may or may not be put off by the huge difference in design philosophy between Python and Ruby/Perl." *
Ruby currently lacks full support for Unicode, though it has partial support for UTF-8.
The syntax of Ruby is broadly similar to Perl and Python. Class and method definitions are signaled by keywords. In contrast to Perl, variables are not obligatorially prefixed with a sigil. (When used, the sigil changes the semantics of scope of the variable.) The most striking difference from C and Perl is that keywords are typically used to define logical code blocks, without brackets. Line breaks are significant and taken as the end of a statement; a semicolon may be equivalently used. Indentation is not significant (unlike Python).
See the Examples section for samples of code demonstrating Ruby syntax.
Although Ruby's design is guided by the principle of least surprise, naturally, some features differ from languages such as C or Perl:
"" and * are all evaluated to true. In C, the expression 0 ? 1 : 0 evaluates to 0 (i.e. false). In Ruby, however, it yields 1, as all numbers evaluate to true; only nil and false evaluate to false. A corollary to this rule is that Ruby methods by convention — for example, regular-expression searches — return numbers, strings, lists, or other non-false values on success, but nil on failure (e.g., mismatch).
99.0) or an explicit conversion (99.to_f). It is insufficient to append a dot (99.) because numbers are susceptible to method syntax.
char for characters). This may cause surprises when slicing strings: "abc"yields 97 (an integer, representing the ASCII code of the first character in the string); to obtain "a" use "abc"*.chr.
In addition, some issues with the language itself are commonly raised:
A good list of "gotchas" may be found in Hal Fulton's book The Ruby Way, pages 48-64. However, since the list in the book pertains to an older version of Ruby (version 1.6), some items have been fixed since the book's publication. For example, retry now works with while, until and for, as well as iterators.
Some basic Ruby code:
# Everything, including literals, is an object, so this works: -199.abs # 199 "ruby is cool".length # 12 "Rick".index("c") # 2 "Nice Day Isn't It?".split(//).uniq.sort.join # " '?DINaceinsty"
Constructing and using an array:
a =
Constructing and using a hash:
hash = {:water => 'wet', :fire => 'hot'}
The two syntaxes for creating a code block: { puts "Hello, World!" } do puts "Hello, World!" end
Passing a block as a parameter (to be a closure): def remember(&p) @block = p end # Invoke the method, giving it a block that takes a name. remember {|name| puts "Hello, #{name}!"} # When the time is right -- call the closure! @block.call("John") # Prints "Hello, John!"
Returning closures from a method: def foo(initial_value=0) var = initial_value return Proc.new {|x| var = x}, Proc.new { var } end setter, getter = foo setter.call(21) getter.call # => 21
Yielding program flow to a block provided at the location of the call: def bfs(e) q = * e.mark yield e q.push e while not q.empty? u = q.shift u.edge_iterator do |v| if not v.marked? v.mark yield v q.push v end end end end bfs(e) {|v| puts v}
Iterating over enumerations and arrays using blocks: a = 'hi', 3.14 a.each {|item| puts item} # Prints each element (3..6).each {|num| puts num} # Prints the numbers 3 through 6 *.inject(0) {|sum, element| sum+element} # 9, (you can pass both a parameter and a block)
Blocks work with many built-in methods: File.open('file.txt', 'w+b') do |file| file.puts 'Wrote some text.' end # File automatically closed here
Or: File.readlines('file.txt').each do |line| # Process each line, here. end
Using an enumeration and a block to square 1 to 10: (1..10).collect {|x| x*x} => 4, 9, 16, 25, 36, 49, 64, 81, 100
The following code defines a class named Person. In addition to 'initialize', the usual constructor to create new objects, it has two methods: one to override the <=> comparison operator (so Array#sort can sort by age) and the other to override the to_s method (so Kernel#puts can format its output). Here, "attr_reader" is an example of meta-programming in Ruby: "attr" defines getter and setter methods of instance variables; "attr_reader": only getter methods. Also, the last evaluated statement in a method is its return value, allowing the omission of an explicit 'return'.
class Person
def initialize(name, age)
@name, @age = name, age
end
def <=>(person)
@age <=> person.age
end
def to_s
"#{@name} (#{@age})"
end
attr_reader :name, :age
end
group =
The above prints three names in reverse age order: Markus (63) John (20) Ash (16)
An exception is raised with a raise call:
raise
An optional message can be added to the exception: raise "This is a message"
You can also specify which type of exception you want to raise: raise ArgumentError, "Illegal arguments!"
Exceptions are handled by the rescue clause. Such a clause can catch exceptions that inherit from StandardError:
begin
# Do something
rescue
# Handle exception
end
Note that it is a common mistake to attempt to catch all exceptions with a simple rescue clause. To catch all exceptions one must write:
begin
# Do something
rescue Exception
# Handle exception
end
Or particular exceptions:
begin
# ...
rescue RuntimeError
# handling
end
Finally, it is possible to specify that the exception object be made available to the handler clause:
begin
# ...
rescue RuntimeError => e
# handling, possibly involving e
end
Alternatively, the most recent exception is stored in the magic global $!.
More sample Ruby code is available as algorithms in the following articles:
Ruby is available for the following operating systems:
Other ports may also exist.
Free compilers and interpreters | Class-based programming languages | Dynamically-typed programming languages | Object-oriented programming languages | Programming languages | Scripting languages | Ruby programming language
Руби | Ruby | Ruby | Ruby (programmeringssprog) | Ruby (Programmiersprache) | Ruby | Ruby (komputillingvo) | Ruby | 루비 프로그래밍 언어 | Ruby (programski jezik) | Ruby | Ruby | Ruby | Ruby | Ruby (programmeertaal) | Ruby | Ruby | Ruby (język programowania) | Ruby (linguagem de programação) | Руби | Руби | Ruby | Ruby | ภาษารูบี้ | Ruby (ngôn ngữ lập trình) | Ruby
This article is licensed under the GNU Free Documentation License.
It uses material from the
"Ruby programming language".
Home Page • arts • business • computers • games • health • hospitals • home • kids & teens • news • physicians • recreation• reference • regional • science • shopping • society • sports • world