vagrant/lib
Alex Rodionov 34ec385c81 core: public_send vs send when merging configs
This fixes the problem when config keys collide with Kernel/Object
methods (private). An example is `exec` which is used in vagrant-exec
plugin.

Compare:

> old.send :exec
ArgumentError: wrong number of arguments (0 for 1+)
> old.public_send :exec
=> #<Vagrant::Config::V2::DummyConfig:0x007fe212cc05c8>
2014-05-07 19:02:21 +07:00
..
vagrant core: public_send vs send when merging configs 2014-05-07 19:02:21 +07:00
vagrant.rb core: Environment#machine_index 2014-04-21 13:51:17 -07:00