Class: VagrantPlugins::Utm::Action::MessageNotStopped
- Inherits:
-
Object
- Object
- VagrantPlugins::Utm::Action::MessageNotStopped
- Defined in:
- lib/vagrant_utm/action/message_not_stopped.rb
Overview
Print VM not stopped message.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ MessageNotStopped
constructor
A new instance of MessageNotStopped.
Constructor Details
#initialize(app, _env) ⇒ MessageNotStopped
Returns a new instance of MessageNotStopped.
11 12 13 |
# File 'lib/vagrant_utm/action/message_not_stopped.rb', line 11 def initialize(app, _env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
15 16 17 18 |
# File 'lib/vagrant_utm/action/message_not_stopped.rb', line 15 def call(env) env[:ui].info I18n.t("vagrant_utm.commands.common.vm_not_stopped") @app.call(env) end |