Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Search Repo:
wilson (author)
Mon Feb 04 12:29:35 -0800 2008
commit  87e2b70bd0aa4a1298c3aecd003687ae2f39e92e
tree    7493a19cc779977d7ce4b9e63e4ba9025852a321
parent  6fe4813db3dac8b3a01cc177ebc1a35f624234c0 parent  4feba7857cd2eda3be307937981cfde5eae953b1
name age message
folder .autotest Thu Jan 31 02:17:23 -0800 2008 More autotest changes [Ryan Davis]
folder .gitignore Sun Jan 27 16:40:54 -0800 2008 Added DTrace probes for function-entry/return a... [crafterm]
folder AUTHORS Sat Sep 29 01:12:28 -0700 2007 Update AUTHORS [kevinclark]
folder INSTALL Thu Oct 18 15:32:23 -0700 2007 Add install task, remove tasks task, make build... [drbrain]
folder LICENSE Mon Jan 29 11:07:42 -0800 2007 Added the BSD license statement [evanphx]
folder Makefile Tue Nov 13 17:32:37 -0800 2007 Don't complain if the config.mk is missing [evanphx]
folder README Thu Oct 18 14:43:12 -0700 2007 Update INSTALL to latest information. [drbrain]
folder README-DEVELOPERS Wed Jan 23 19:36:50 -0800 2008 Updated README-DEVELOPERS. Additions, clarifica... [rue]
folder Rakefile Wed Jan 30 09:44:42 -0800 2008 IO.new uses an undocumented fcntl() feature ins... [rue]
folder THANKS Wed May 30 14:44:05 -0700 2007 blah [System User]
folder bin/ Mon Jan 28 16:36:43 -0800 2008 Fixed autotest support (needs latest version of... [Ryan Davis]
folder configure Fri Jan 25 16:42:29 -0800 2008 Rework DT compiling, fix configure subscripts [evanphx]
folder doc/ Wed Jan 30 19:30:34 -0800 2008 Updated VM docs for deprecated opcodes [agardiner]
folder kernel/ Fri Feb 01 10:52:59 -0800 2008 Add proper primitive failures, fix empty symbol. [evanphx]
folder lib/ Fri Feb 01 13:43:55 -0800 2008 Treat very large negative numbers as literals i... [wilson]
folder mspec/ Thu Jan 31 02:17:23 -0800 2008 More autotest changes [Ryan Davis]
folder rakelib/ Thu Jan 31 15:38:13 -0800 2008 Added process exclusion from stats collection [Ryan Davis]
folder runtime/ Wed Jan 30 17:20:02 -0800 2008 Fix break. It now uses LRE to properly return t... [evanphx]
folder shotgun/ Mon Feb 04 12:29:35 -0800 2008 Merge similar fixnum_mul fixes [wilson]
folder spec/ Fri Feb 01 10:52:59 -0800 2008 Add proper primitive failures, fix empty symbol. [evanphx]
folder stdlib/ Wed Jan 30 21:58:18 -0800 2008 Replace old and busted 1.8 RDoc with new hotnes... [drbrain]
folder test/ Tue Jan 22 02:08:13 -0800 2008 new Module#name benchmark. [zimbatm]
folder tools/ Thu Jan 24 15:55:36 -0800 2008 initial rubuildius commit, read tools/rubuildiu... [Benjamin Andresen]
README
1. What is Rubinius

Rubinius is a next-generation virtual machine and compiler for Ruby.  Based
loosely on the Smalltalk-80 'Blue Book' design, Rubinius will provide a rich,
high-performance environment for running Ruby code.

2. Running Rubinius

Refer to the INSTALL file for instructions on getting and building Rubinius.

3. Status

Rubinius is under heavy development, and currently supports the basic Ruby
classes and kernel methods. The code base is written in a mixture of ANSI C and
Ruby; with more Ruby and less C as the project proceeds.  You should not run
your mission-critical Rails apps under Rubinius yet.

4. Goals

* Thread safety. Rubinius intends to be thread-safe so you could embed more
  than one interpreter in a single application. It does not currently meet
  this goal due to some components borrowed from the mainline Ruby interpreter.

* Clean, readable code that is easy for users to understand and extend.

* Reliable, rock-solid code.  Valgrind is used to help verify correctness.

* Bring modern techniques to the Ruby runtime. Pluggable garbage collectors and
  code optimizers are possible examples.

5. Volunteering to Help

The Rubinius team welcomes contributions, bug reports, test cases, and monetary
support. One possible way to help is implement Ruby library classes. Visit
http://rubinius.lighthouseapp.com for documentation on how to begin hacking
Rubinius.

6. Architecture

Rubinius currently uses C to bootstrap the system. In the future, a limited
dialect of Ruby called cuby/garnet will be used to generate C. This is a
time-honored technique, used by systems such as Squeak, Smalltalk, and Algol on
the Burroughs systems (as seen in the movie 'Tron').

For now, this code is hand-written, and can be found in the ./shotgun/lib
directory.  This code was ported from a Ruby implementation found in the ./lib
directory.  For example, shotgun/lib/object_memory.c is the C translation of
lib/object_memory.rb.

The compiler, assembler, and bytecode generators are all written in Ruby, and
can be found under the ./lib directory.  Other systems use the word
'translator' for what is here referred to as 'compiler'.  The ./bin/rcc script
can be used to display the symbolic output of the compiler, for debugging or
learning purposes.