what is the best way to make JRuby to run in 1.9 mode by default?
i.e, I want to run rake test instead of jruby --1.9 -S rake test
Thank you
|
what is the best way to make JRuby to run in 1.9 mode by default? i.e, I want to run Thank you |
||||
|
|
|
Use the For example (on Linux): $ jruby -v jruby 1.6.0.RC1 (ruby 1.8.7 patchlevel 330) (2011-01-10 769f847) (Java HotSp... $ export JRUBY_OPTS=--1.9 $ jruby -v jruby 1.6.0.RC1 (ruby 1.9.2 trunk 136) (2011-01-10 769f847) (Java HotSpot(TM... $ export JRUBY_OPTS=--1.8 $ jruby -v jruby 1.6.0.RC1 (ruby 1.8.7 patchlevel 330) (2011-01-10 769f847) (Java HotSpo... |
|||||||||
|
|
|
RVM allows now building JRuby/Rubinius with default mode set by default:
The suffix The UPDATE 2012-05-25: Jruby 1.7.0.preview1 is out, it is 1.9 by default! |
||||
|
|
|
An alternative solution is to put the following line (and other settings) in your ~/.jrubyrc file
|
|||
|
|
|
In Windows, use
|
|||||
|
|
|
When using warbler to package an app as a war file, the version can be set by running:
which creates a
Uncomment the second line by removing the |
|||
|
|
|
If you're creating jruby from java:
(Thanks to bbrowning on the #jrubyc irc channel) |
|||
|
|