YARV: Yet Another Ruby VM
=========================

* What's this?

YARV is a virtual machine written by Koichi Sasada (ko1@atdot.net) for 
the Ruby programming language. It aspires to be the official engine 
powering ruby 2.0. See http://www.atdot.net/yarv for more information.


* Build and Install

Build and Install:

[yarv]  yarv extract (checkout) directory
[build] build directory

  $ cd [yarv]
  $ autoconf
  $ cd [build]
  $ configure --prefix=[your install dir] --program-suffix=-yarv # if you wish
  $ make           # build ruby and ext/
  $ make test      # show some errors (around block parameters)
  $ make test-all  # show some errors (about 20 or so)
  $ make install   # install files and generating RI files


And check install:

  $ [your install dir]/bin/ruby-yarv -v


* How do it work.

See sources.


* License

YARV is copyrighted free software by Koichi Sasada. It is made
available under the same license as the Ruby code base. See
http://www.ruby-lang.org/en/LICENSE.txt for the specifics.


Thank you for reading.

-- 
SASADA Koichi
ko1@atdot.net

