diff --git a/lib/vagrant/plugin/v2/config.rb b/lib/vagrant/plugin/v2/config.rb index 20e08cbfe..8659e2c21 100644 --- a/lib/vagrant/plugin/v2/config.rb +++ b/lib/vagrant/plugin/v2/config.rb @@ -138,6 +138,12 @@ module Vagrant @__finalized = true end end + + class Set < ::Set + def to_json(*args) + self.to_a.to_json(*args) + end + end end end end