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:
commit  12312ef2a84226bc181a04f17f79c1e4f916948a
tree    713e4d99e28bcb073f0fc75f82edc2aafc3cf044
parent  70a711483dc55cc319f288f5fce303bd106fb7ae
name age message
folder .autotest Tue Mar 18 16:25:21 -0700 2008 simplified autotest fixture/shared mapping [Ryan Davis]
folder .gitignore Mon Jul 07 22:07:16 -0700 2008 added lib/bin to ignore list, sorted others [Ryan Davis]
folder .gitmodules Fri May 09 17:44:46 -0700 2008 Added rubyspecs as a submodule at spec/frozen. [brixen]
folder AUTHORS Sat Sep 29 01:12:28 -0700 2007 Update AUTHORS [kevinclark]
folder CONTRIBUTORS Mon May 05 16:19:32 -0700 2008 Add CONTRIBUTORS file [evanphx]
folder INSTALL Mon Jun 30 10:34:14 -0700 2008 Adding libssl-dev dependency for Ubuntu to the ... [febuiles]
folder LICENSE Wed Feb 27 10:23:15 -0800 2008 Correct typos in LICENSE file, spotted by raggi [wilson]
folder Makefile Tue Nov 13 17:32:37 -0800 2007 Don't complain if the config.mk is missing [evanphx]
folder README Tue Jun 10 10:48:39 -0700 2008 Another README revision [wilson]
folder README-C++ Mon Jul 14 15:48:59 -0700 2008 Revise README [evanphx]
folder README-DEVELOPERS Fri Jun 13 09:17:34 -0700 2008 RMI extension compatibility fixes. [nexcastellan]
folder Rakefile Thu Jul 03 15:07:27 -0700 2008 Updated doco and added -d option to ci.rb per e... [Ryan Davis]
folder THANKS Wed May 30 14:44:05 -0700 2007 blah [System User]
folder benchmark/ Wed Jul 02 07:41:09 -0700 2008 Corrected bm_stringio.rb to reset pos in #each_... [vvs]
folder bin/ Mon Jun 09 15:31:33 -0700 2008 Improve running in dev mode. Use bin/rbx now. [evanphx]
folder doc/ Sat Jun 21 13:42:42 -0700 2008 Added document for FFI in the vm doc. [pluskid]
folder gems/ Thu Jun 26 19:50:51 -0700 2008 Fix fastthread gem so that fastthread.rb can be... [drbrain]
folder kernel/ Tue Jul 15 12:40:00 -0700 2008 Doc'd core/io.rb and core/symbol.rb [seydar]
folder lib/ Tue Jul 15 16:49:59 -0700 2008 made SizedQueue thread safe and more readable a... [dgtized]
folder mspec/ Wed Jul 16 19:53:50 -0700 2008 Updated MSpec source to 1c3ee1c8. [brixen]
folder rakelib/ Thu Jul 10 10:52:55 -0700 2008 Add rake git:really_safe_push. [nexcastellan]
folder runtime/ Fri Jun 06 00:30:31 -0700 2008 Modify loader to look for #{$:.first}/bin/<c... [evanphx]
folder shotgun/ Wed Jul 16 21:47:08 -0700 2008 poured my soul into rubinius, according to brixen [seydar]
folder spec/ Wed Jul 16 22:21:36 -0700 2008 Tagged unstable Resolv spec that intermittently... [brixen]
folder stdlib/ Tue Jul 15 11:55:22 -0700 2008 Move resolv.rb from stdlib to lib. [nexcastellan]
folder test/ Wed Jun 18 15:09:34 -0700 2008 Import RubyGems r1780 (pre 1.2) [drbrain]
folder tools/ Mon Jul 14 16:59:39 -0700 2008 use rake instead [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.