I\'m working on upgrading one of our Rails 2.3.8 apps to Rails 3, and have run into an annoying problem with bundler and deployment. I develop the application on a Windows m
This is a known issue in Bundler. The workarounds are either:
bundle install
without --deploy
). While not recommended in general, this is an often-used workaround until the bug is fixed. For example, this is the recommended solution offered by Heroku.java
). I don't recommend this seriously, but I believe it would fix the problem.