aboutsummaryrefslogtreecommitdiffstats
path: root/doc/install/jruby.md
diff options
context:
space:
mode:
authorMichel Etienne2013-05-28 10:10:13 +0200
committerMichel Etienne2013-05-28 10:10:13 +0200
commitd804a47e36d337b5a6650af54ea17a874b9deecb (patch)
tree4597aa362c787054433c638299e039ceec381981 /doc/install/jruby.md
parent4124a427d6422c11c93d8a488710ec945e1225ca (diff)
parent45e0d4f528ed820ddc2efdd1d699bf8009b76726 (diff)
downloadchouette-core-d804a47e36d337b5a6650af54ea17a874b9deecb.tar.bz2
Merge branch 'master' of github.com:dryade/chouette2
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