Class: VagrantPlugins::Utm::Action::MessageWillNotDestroy

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant_utm/action/message_will_not_destroy.rb

Overview

Print VM will not be destroyed message.

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ MessageWillNotDestroy

Returns a new instance of MessageWillNotDestroy.



11
12
13
# File 'lib/vagrant_utm/action/message_will_not_destroy.rb', line 11

def initialize(app, _env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



15
16
17
18
19
# File 'lib/vagrant_utm/action/message_will_not_destroy.rb', line 15

def call(env)
  env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy",
                       name: env[:machine].name)
  @app.call(env)
end