Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jruby -S bundle install jruby: No such file or directory -- bundle (LoadError)

Tags:

path

ruby

jruby

I have my ruby on rails application and I have installed jruby-1.7.4 in my Windows XP.

When I try to run jruby -S bundle install it gives me an error

jruby: No such file or directory -- bundle (LoadError)

I am really stack with this error.. Please help..

like image 480
james raygan Avatar asked Jun 27 '13 01:06

james raygan


1 Answers

Bundler is probably not installed. You can check the output of jruby -S gem list to verify, and then install it with:

jruby -S gem install bundler

In general, a LoadError means you’re missing a gem dependency.

like image 169
Andrew Marshall Avatar answered Sep 19 '22 16:09

Andrew Marshall