15

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..

james raygan
  • 681
  • 5
  • 10
  • 28

1 Answers1

26

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.

Andrew Marshall
  • 95,083
  • 20
  • 220
  • 214