forked from rubinius/rubinius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
80 lines (48 loc) · 2.1 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
1. What is Rubinius
Rubinius is an implementation of the Ruby programming language. Rubinius aims
to be compatible with Ruby version 2.1.
Rubinius includes a Ruby parser, bytecode virtual machine, bytecode compiler,
generational garbage collector, and just-in-time (JIT) native machine code
compiler. Rubinius uses native OS threads with no global interpreter lock.
Rubinius also provides C-API compatibility for native C extensions.
The Ruby core library is written almost entirely in Ruby. Rubinius tools, such
as the bytecode compiler and debugger, are also written in Ruby. Rubinius
provides the same standard libraries as Matz's Ruby implementation (MRI) with
the following exceptions:
* Continuation
* Ripper
* TracePoint
* Tracer
Rubinius runs on Mac OS X and many Unix/Linux operating systems. Microsoft
Windows is not yet supported.
Most popular Ruby applications, like Rails, run on Rubinius.
2. License
Rubinius uses the BSD license. See LICENSE for details.
3. Installing Rubinius from Source
To install Rubinius, use the following steps:
1. Ensure that MRI 2.0+, rubygems, rake, and git are installed
2. git clone git://github.com/rubinius/rubinius.git
3. cd rubinius
4. bundle
5. ./configure --prefix=/path/to/install/dir
6. rake
When the install process finishes, follow the directions printed to the
terminal to add the Rubinius executable (bin) directory to your PATH.
4. Using RubyGems
Rubinius comes with RubyGems built-in. To install a gem, run the following:
rbx -S gem install <gem_name>
5. Documentation
After installing Rubinius, run 'rbx docs' to access the built-in documentation
at any time.
6. Tickets
Please file tickets for bugs or problems. The issue tracker is:
http://github.com/rubinius/rubinius/issues
7. Contributing
The Rubinius team welcomes contributions. For more information read the
CONTRIBUTING file in the root directory of Rubinius.
8. Features Currently Not Supported
The following features of Ruby/MRI are currently not (yet) supported by
Rubinius:
* Keyword arguments (https://github.com/rubinius/rubinius/issues/2669)
* Refinements
* $SAFE levels