To understand how Ruby works, read its C source code. After learning each part of Ruby's internal implementation we perform an experiment and use Ruby to test itself.
Most of the book discusses how MRI works.
MRI (Matz's Ruby Interpreter) was invented in 1993 by Yukihiro Matsumoto a.k.a Matz.
Alternative implementations:
- RubyMotion - Write cross-platform apps for iOS, Android and OS X in Ruby
- MacRuby - An implementation of Ruby 1.9 directly on top of Mac OS X core technologies such as the Objective-C runtime and garbage collector, the LLVM compiler infrastructure and the Foundation and ICU frameworks
- IronRuby - An open-source implementation of the Ruby programming language which is tightly integrated with the .NET Framework
- Topaz - A high performance implementation of the Ruby programming language, written in Python on top of RPython
- JRuby - A high performance, stable, fully threaded Java implementation of the Ruby programming language
- Rubinius - An implementation of Ruby designed for concurrency using native threads to run Ruby code on all the CPU cores
- mruby - A lightweight implementation of the Ruby language complying with part of the ISO standard
The JRuby and Rubinius implementations are explored in detail in Chapters 10, 11 and 12.
Book club recommendations: