aboutsummaryrefslogtreecommitdiffstats
path: root/doc/install/jruby.md
diff options
context:
space:
mode:
authorLuc Donnet2013-05-27 14:52:07 +0200
committerLuc Donnet2013-05-27 14:52:07 +0200
commit08d099e6b8d0cf7214da0b79ec71ca2d12049d53 (patch)
tree35aa50bb7512da1734755d5c17ca776f53d65cf1 /doc/install/jruby.md
parentbaf4983fce9de9f1d4b8b288f23c39ef86f51e69 (diff)
downloadchouette-core-08d099e6b8d0cf7214da0b79ec71ca2d12049d53.tar.bz2
Init the refactoring of documents
Diffstat (limited to 'doc/install/jruby.md')
-rw-r--r--doc/install/jruby.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/install/jruby.md b/doc/install/jruby.md
new file mode 100644
index 000000000..ff3cb9024
--- /dev/null
+++ b/doc/install/jruby.md
@@ -0,0 +1,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
+``` \ No newline at end of file