README.md in vagrant-exec-0.5.1 vs README.md in vagrant-exec-0.5.2
- old
+ new
@@ -141,9 +141,18 @@
To make plain SSH work, it saves current SSH configuration of Vagrant to temporary file when you run `vagrant exec --binstubs`. This means that if your VM network configuration has changed (IP address, port), you will have to regenerate binstubs again. So far I had no problems with this, but it's not very convenient for sure.
Moving forward, you can use projects like [direnv](https://github.com/zimbatm/direnv) to add `bin/` to `PATH` and completely forget that you have VM running.
+It is also possible to configure binstubs directory (e.g. default `bin/` collides with Rails binstubs):
+
+```ruby
+Vagrant.configure('2') do |config|
+ config.vm.box = 'precise32'
+ config.exec.binstubs_path = 'vbin'
+end
+```
+
Testing
----------------
Before running features, you'll need to bootstrap box.