I’m trying to install the jQuery Grid Rails Plugin. I’m using JRuby 1.7.0. I tried this command with no luck:
jruby -S plugin install git://github.com/ahe/2dc_jqgrid.git
rails plugin install git://github.com/ahe/2dc_jqgrid.git
And some others…
I know that some commands change for JRuby. Commonly I prepend jruby -S to the command but it’s not working with plugin install. Any suggestion?
Regards.
Problem solved, I was executing the command
jruby -S plugin install git://github.com/ahe/2dc_jqgrid.gitThe error message says:
As you may know there is a rails file under the ../script folder, since the error says No such file or directory I thought of pointing jruby into the right directory and file:
That way jruby knows where is the script that I need. This should work the same way for the other rails commands as generate and server.