Class: VagrantPlugins::ProviderVeertu::Action::MessageWillNotDestroy
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderVeertu::Action::MessageWillNotDestroy
- Defined in:
- lib/vagrant-veertu/action/message_will_not_destroy.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ MessageWillNotDestroy
constructor
A new instance of MessageWillNotDestroy.
Constructor Details
#initialize(app, env) ⇒ MessageWillNotDestroy
Returns a new instance of MessageWillNotDestroy.
5 6 7 |
# File 'lib/vagrant-veertu/action/message_will_not_destroy.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 |
# File 'lib/vagrant-veertu/action/message_will_not_destroy.rb', line 9 def call(env) env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy", name: env[:machine].name) @app.call(env) end |