views:

110

answers:

2

Hi, I did something while trying to install the vestal_versions plug-in that ended up creating a vestal_versions directory in my app's root with the following:

 - Application
  - APP
  - DB
   - vestal_versions
    - ruby
     - 1.8
      - bin
      - cache
      - doc
      - gems
      - specifications

Which if deleted prevents the app from working... How do I update bundle to install all this stuff in the right place, which I believe is outside of the app?

Thanks

A: 

I had the same problem and found that I had a .bundler directory in my application's root folder that was causing this. After I removed the directory, the bundle install installed everything to the correct ruby directory again. Thanks to this post by Caleb.

Pascal Lindelauf