|
|
|
|
Ruby MRI
|
| |
|
| |
Matz's Ruby Interpreter or Ruby MRI is the reference implementation of the Ruby programming language. As there is currently no specification of the Ruby language, the MRI implementation is considered the de facto reference.
lass="link1" onMouseover='showByLink("m3091393",this)' onMouseout='hide("m3091393")'href="http://www.absoluteastronomy.com/topics/Yukihiro_Matsumoto">Yukihiro Matsumoto started working on Ruby on February 24, 1993, and released it to the public in 1995. "Ruby" was named as a gemstone because of a joke within Matsumoto's circle of friends alluding to the name of the Perl programming language.
As of May 2008, the latest stable version is 1.8.7.

Discussion
Ask a question about 'Ruby MRI'
Start a new discussion about 'Ruby MRI'
Answer questions from other users
|
Encyclopedia
Matz's Ruby Interpreter or Ruby MRI is the reference implementation of the Ruby programming language. As there is currently no specification of the Ruby language, the MRI implementation is considered the de facto reference.
History
Yukihiro Matsumoto started working on Ruby on February 24, 1993, and released it to the public in 1995. "Ruby" was named as a gemstone because of a joke within Matsumoto's circle of friends alluding to the name of the Perl programming language.
As of May 2008, the latest stable version is 1.8.7. Ruby 1.9.1 was released in January, but it is considered a development release. The main developers have thrown their weight behind the virtual machine provided by the YARV project, which was merged into the Ruby source tree on 31 December 2006, and released as part of Ruby 1.9.
The 1.8 branch is still maintained, and 1.8.7 preview releases have been released since April 2008. This version will provide bug fixes, but also Ruby feature enhancements.
Licensing terms
The Ruby interpreter and libraries are distributed disjointedly (dual licensed) under the free and open source licenses GPL and Ruby License .
Operating systems
Ruby MRI is available for the following operating systems:
This list may not be exhaustive.
Criticism
Version 1.8, the current stable version of the interpreter, has some limitations, which include:
- Performance -- the Ruby interpreter's performance trails that of comparable languages such as Perl, PHP, and Python, mainly due to the design of the interpreter: To execute Ruby code, the interpreter builds a syntax tree from the source code and then evaluates the syntax tree directly, instead of first compiling it into more efficiently executable form.
- Threading -- the Ruby threading model uses green threads , and its model has some inherent limitations which render it difficult to use or unsafe in some scenarios.
- Unicode -- Ruby does not yet have native support for Unicode or multibyte strings.
- Backward compatibility -- Ruby suffers from backward compatibility problems.
Ruby 2.0 aims to address all of the aforementioned problems:
- Performance -- a new, faster interpreter, YARV, a virtual machine which executes bytecode instructions.
- Threading -- native threads will be used instead of green threads.
- Unicode -- full support for Unicode strings.
Version 1.9, the codebase which is the development version of 2.0, which was released on 30 January 2008 added Unicode support and significantly improved performance over 1.8.
External links
|
| |
|
|