This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 60fbbc62cb04b2fddcd406f01f906482fbc84370
tree 71b8a91b68e6ce1b989526f1118749b5097790fc
parent 4e6d8f7e3326f937a6916ed11984172670a71094
tree 71b8a91b68e6ce1b989526f1118749b5097790fc
parent 4e6d8f7e3326f937a6916ed11984172670a71094
rubinius /
| name | age | message | |
|---|---|---|---|
| |
.autotest | Fri Feb 01 18:04:26 -0800 2008 | [Ryan Davis] |
| |
.gitignore | Tue Feb 05 10:58:22 -0800 2008 | [evanphx] |
| |
AUTHORS | ||
| |
INSTALL | Thu Oct 18 15:32:23 -0700 2007 | [drbrain] |
| |
LICENSE | Mon Jan 29 11:07:42 -0800 2007 | [evanphx] |
| |
Makefile | Tue Nov 13 17:32:37 -0800 2007 | [evanphx] |
| |
README | Thu Oct 18 14:43:12 -0700 2007 | [drbrain] |
| |
README-DEVELOPERS | Mon Feb 04 23:59:56 -0800 2008 | [brixen] |
| |
Rakefile | Mon Feb 11 17:36:54 -0800 2008 | [drbrain] |
| |
THANKS | Wed May 30 14:44:05 -0700 2007 | [System User] |
| |
bin/ | Wed Feb 06 07:57:43 -0800 2008 | [kamal] |
| |
configure | Fri Jan 25 16:42:29 -0800 2008 | [evanphx] |
| |
doc/ | Mon Feb 11 20:49:42 -0800 2008 | [agardiner] |
| |
kernel/ | Mon Feb 11 18:29:41 -0800 2008 | [evanphx] |
| |
lib/ | Mon Feb 11 23:26:31 -0800 2008 | [evanphx] |
| |
mspec/ | Mon Feb 04 17:39:45 -0800 2008 | [Ryan Davis] |
| |
rakelib/ | Mon Feb 11 19:38:54 -0800 2008 | [drbrain] |
| |
runtime/ | Sun Feb 10 13:23:43 -0800 2008 | [evanphx] |
| |
shotgun/ | Mon Feb 11 19:38:54 -0800 2008 | [drbrain] |
| |
spec/ | Mon Feb 11 20:33:49 -0800 2008 | [vvs] |
| |
stdlib/ | Fri Feb 08 14:41:48 -0800 2008 | [dbussink] |
| |
test/ | Tue Jan 22 02:08:13 -0800 2008 | [zimbatm] |
| |
tools/ | Thu Jan 24 15:55:36 -0800 2008 | [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.




