How to prevent bundler from generating binstubs?
Bundler generates binstubs on a per-application basis. If you ran bundle install –binstubs at some point in the past, Bundler will remember that and generate binstubs anytime you run install again. To disable them, you can either run bundle install –no-binstubs, or run rm -rf .bundle/config. Either way, that will disable binstub generation.