blob: ff3cb90249dcebb86c5b3a550f666b2913ce5337 (
plain)
| 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
 | # Install JRuby 1.6.8 
Download JRuby on http://www.jruby.org/download
```sh
mkdir application
```
Copy jruby-bin-1.6.8.tar.gz in application
```sh
cd application
tar xfz jruby-bin-1.6.8.tar.gz
```
Create a repository jruby-1.6.8
```sh
ln -s jruby-1.6.8 jruby
```
Add to path application/jruby/bin
```sh
cd
vi .profile
```
Add this in the file : 
```sh 
if [ -d "$HOME/application/jruby/bin" ] ; then
   PATH="$HOME/application/jruby/bin":$PATH
fi
```
Apply Profile
```sh
. .profile
```
Test JRuby
```sh
jruby -v
```
 |