Class: Vagrant::Action::VM::Destroy
- Inherits:
-
Object
- Object
- Vagrant::Action::VM::Destroy
- Defined in:
- lib/vagrant/action/vm/destroy.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ Destroy
constructor
A new instance of Destroy.
Constructor Details
#initialize(app, env) ⇒ Destroy
Returns a new instance of Destroy.
5 6 7 |
# File 'lib/vagrant/action/vm/destroy.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/vagrant/action/vm/destroy.rb', line 9 def call(env) env[:ui].info I18n.t("vagrant.actions.vm.destroy.destroying") env[:vm].driver.delete env[:vm].uuid = nil @app.call(env) end |