forked from rubinius/rubinius
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
115 lines (71 loc) · 3.79 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
1. What is Rubinius
Rubinius is an implementation of the Ruby programming language. Rubinius
includes a bytecode virtual machine, parser, bytecode compiler, garbage
collector, JIT native machine code compiler, and Ruby core and standard
libraries.
Rubinius currently is compatible with Ruby version 1.8.7. Support for Ruby
version 1.9.2 is coming soon.
2. License
Rubinius uses the BSD license. See LICENSE for details.
3. Installing Rubinius
Rubinius runs on Mac OS X and many Unix/Linux operating systems. Support for
Microsoft Windows is coming soon.
For more information about building and running Rubinius, run 'rake docs'.
To install Rubinius, use the following steps:
1. Ensure you have MRI 1.8.7+, rubygems, rake, and git installed
2. git clone git://github.com/rubinius/rubinius.git
3. cd rubinius
4. ./configure --prefix=/path/to/install/dir
5. rake install
When the install process finishes, follow the directions to add the Rubinius
executable (bin) directory to your PATH.
Rubinius comes with RubyGems built-in. To install a gem, run the following:
rbx -S gem install <gem_name>
After installing Rubinius, you can access the built-in documentation at any
time by running 'rbx docs'.
3.1 Rubinius with RVM
You may wish to use the Ruby enVironment Manager (RVM) project to install
Rubinius. For the most current documentation for RVM, please visit
https://rvm.beginrescueend.com.
Be sure that RVM has been installed properly and is loaded as a function as is
explained in detail on the basics page, https://rvm.beginrescueend.com/rvm/basics/
Assuming all Rubinius dependencies have been preinstalled on the system, you may
now install Rubinius either latest or head as follows,
rvm install rbx # Installs latest release (defaulted to install head)
rvm install rbx-head # Installs Rubinius master branch from github
Once installed,
rvm use rbx # Selects Rubinius into the current shell session.
If you wish to make Rubinius the default interpreter when you open new shells,
rvm use rbx --default
In order to view the dependency list to preinstall for rbx type
rvm notes
For more information on working with rvm please visit the RVM website,
https://rvm.beginrescueend.com/
4. Version 1.1
Rubinius has been under development as a public open-source project since
November 2006. Rubinius development is sponsored by Engine Yard, Inc. and
assisted by the generous work of over 100 contributors.
At version 1.1, Rubinius is significantly feature-complete. It is expected
that your Ruby code will run correctly. Additionally, many MRI C extensions
are expected to work, as long as they do not depend on MRI-specific object
internals or the MRI interpreter internals.
With the JIT, Rubinius performance is quite good, sometimes faster than MRI
and sometimes slower. Rubinius generally executes Ruby code very fast as
compared to MRI. However, since the majority of the Ruby core library is also
implemented in Ruby rather than C as it is in MRI, code that depends heavily
on Array, Hash, String, etc. may run slower in Rubinius right now. As the JIT
improves, overall performance of your code under Rubinius will improve.
5. Goals
* Thread safety. Rubinius intends to be thread-safe so you could embed more
than one interpreter in a single application.
* 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 research in virtual machines, garbage collectors, and compilers
to the Ruby programming language.
6. Tickets
Please file tickets for bugs or problems that you encounter. The issue tracker
is: http://github.com/rubinius/rubinius/issues. Run 'rake docs' for more
details.
7. Contributing
The Rubinius team welcomes contributions. Run 'rake docs' and see the
"Contributing" page.