vagrant-dsl 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/vagrant/dsl/version.rb +1 -1
- data/lib/vagrant/dsl.rb +2 -1
- metadata +1 -1
data/lib/vagrant/dsl/version.rb
CHANGED
data/lib/vagrant/dsl.rb
CHANGED
@@ -90,6 +90,7 @@ module Vagrant
|
|
90
90
|
extend Forwardable
|
91
91
|
include GenericMixin
|
92
92
|
|
93
|
+
attr_reader :config
|
93
94
|
def_delegator :@config, :configure, :configure
|
94
95
|
|
95
96
|
def initialize(args)
|
@@ -108,7 +109,7 @@ module Vagrant
|
|
108
109
|
def vagrant_prison(args={}, &block)
|
109
110
|
prison = Vagrant::DSL::Prison.new(args)
|
110
111
|
prison.instance_eval(&block)
|
111
|
-
prison
|
112
|
+
prison.config
|
112
113
|
end
|
113
114
|
end
|
114
115
|
end
|