Class: VagrantPlugins::Utm::Action::MessageNotRunning
- Inherits:
-
Object
- Object
- VagrantPlugins::Utm::Action::MessageNotRunning
- Defined in:
- lib/vagrant_utm/action/message_not_running.rb
Overview
Print VM not running message.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ MessageNotRunning
constructor
A new instance of MessageNotRunning.
Constructor Details
#initialize(app, _env) ⇒ MessageNotRunning
Returns a new instance of MessageNotRunning.
11 12 13 |
# File 'lib/vagrant_utm/action/message_not_running.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_running.rb', line 15 def call(env) env[:ui].info I18n.t("vagrant.commands.common.vm_not_running") @app.call(env) end |