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 (
rubinius /
| name | age | message | |
|---|---|---|---|
| |
.autotest | Tue Mar 18 16:25:21 -0700 2008 | [Ryan Davis] |
| |
.gitignore | Mon Jul 07 22:07:16 -0700 2008 | [Ryan Davis] |
| |
.gitmodules | Fri May 09 17:44:46 -0700 2008 | [brixen] |
| |
AUTHORS | Sat Sep 29 01:12:28 -0700 2007 | [kevinclark] |
| |
CONTRIBUTORS | Mon May 05 16:19:32 -0700 2008 | [evanphx] |
| |
INSTALL | Mon Jun 30 10:34:14 -0700 2008 | [febuiles] |
| |
LICENSE | Wed Feb 27 10:23:15 -0800 2008 | [wilson] |
| |
Makefile | Tue Nov 13 17:32:37 -0800 2007 | [evanphx] |
| |
README | Tue Jun 10 10:48:39 -0700 2008 | [wilson] |
| |
README-C++ | Thu Jul 17 16:36:08 -0700 2008 | [Ryan Davis] |
| |
README-DEVELOPERS | Fri Jun 13 09:17:34 -0700 2008 | [nexcastellan] |
| |
Rakefile | Thu Jul 03 15:07:27 -0700 2008 | [Ryan Davis] |
| |
THANKS | Wed May 30 14:44:05 -0700 2007 | [System User] |
| |
benchmark/ | Wed Jul 02 07:41:09 -0700 2008 | [vvs] |
| |
bin/ | Mon Jun 09 15:31:33 -0700 2008 | [evanphx] |
| |
doc/ | Sat Jun 21 13:42:42 -0700 2008 | [pluskid] |
| |
gems/ | Thu Jun 26 19:50:51 -0700 2008 | [drbrain] |
| |
kernel/ | Mon Jul 21 15:00:37 -0700 2008 | [drbrain] |
| |
lib/ | Mon Jul 21 11:20:38 -0700 2008 | [drbrain] |
| |
mspec/ | Wed Jul 16 19:53:50 -0700 2008 | [brixen] |
| |
rakelib/ | Thu Jul 10 10:52:55 -0700 2008 | [nexcastellan] |
| |
runtime/ | Fri Jun 06 00:30:31 -0700 2008 | [evanphx] |
| |
shotgun/ | Wed Jul 16 21:47:08 -0700 2008 | [seydar] |
| |
spec/ | Mon Jul 21 12:59:33 -0700 2008 | [wilson] |
| |
stdlib/ | Tue Jul 15 11:55:22 -0700 2008 | [nexcastellan] |
| |
test/ | Mon Jul 21 11:20:38 -0700 2008 | [drbrain] |
| |
tools/ | Mon Jul 14 16:59:39 -0700 2008 | [Ryan Davis] |
README
1. What is Rubinius Rubinius is an execution environment for the Ruby programming language. It is comprised of three major pieces: a compiler, a 'kernel' (otherwise known as the Ruby Core Library), and a virtual machine. The project's goal is to create a top-of-the-line Ruby implementation. 2. Running Rubinius Refer to the INSTALL file for instructions on getting and building Rubinius. To disable backtrace colorization in Rubinius set the RBX environment variable to rbx.colorize_backtraces=no. 3. Status Rubinius is under heavy development, and currently supports the core Ruby classes and kernel methods. The majority of the existing Ruby libraries should run without modification. If your MRI 1.8.6-compatible code does not run under Rubinius, please open a bug ticket. As Rubinius becomes more and more compatible with Ruby 1.8, the development effort is shifting toward performance, rather than completeness. 4. Goals * Clean, readable code that is easy for users to understand and extend. * Reliable, rock-solid infrastructure. Rubinius is Valgrind clean. * Bring modern techniques to the Ruby runtime. Currently we are up to roughly 1986 in terms of modernity, but the date creeps forward daily. * Support for the best ideas in concurrency, whatever those happen to be. 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 While most of the Rubinius features are implemented in Ruby, the VM itself is written in C++. This is likely to continue to be the case in the coming months, partly to ease the integration of LLVM into the Rubinius system. The compiler, assembler, and bytecode generators are all written in Ruby, and can be found under the ./lib/compiler directory.




