Class: VagrantPlugins::Skytap::Action::MessageWillNotDestroy
- Defined in:
- lib/vagrant-skytap/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.
27 28 29 |
# File 'lib/vagrant-skytap/action/message_will_not_destroy.rb', line 27 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
31 32 33 34 |
# File 'lib/vagrant-skytap/action/message_will_not_destroy.rb', line 31 def call(env) env[:ui].info(I18n.t("vagrant_skytap.will_not_destroy", name: env[:machine].name)) @app.call(env) end |