I have a Rails app I am trying to test in Jruby on Engineyard. I can get it locally working when i switch ruby version in rvm to 1.9.2 (jruby) However when on engineyard a deploy fails:

syntax error, unexpected ':'

I solved this error locally using 1.9.2 export JRUBY_OPTS=--1.9 I have tried this on engineayrd but i am still getting the same error.

Does anyone know how to set EngineYard to default to 1.9.2 not ruby-1.8.7-p330?

Any help is greatly appreciate

link|improve this question

65% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try putting the following in /home/deploy/.jrubyrc:

compat.version=1.9
link|improve this answer
that file is not in that directory? – Charlie Davies Nov 13 '11 at 1:16
but thank you for the response, i have found trinidad_config, however adding the above line did not make a difference. unless the instance needs to be restarted for it to take effect? – Charlie Davies Nov 13 '11 at 1:27
Sorry, create the file and put that line in it. – Nick Sieger Nov 13 '11 at 5:10
Aha that worked. I'm now getting a SQL error but I'm getting there. Thanks for your help. – Charlie Davies Nov 13 '11 at 12:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.