Class: VagrantPlugins::ProviderLibvirt::Action::MessageNotRunning
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderLibvirt::Action::MessageNotRunning
- Defined in:
- lib/vagrant-libvirt/action/message_not_running.rb
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.
7 8 9 |
# File 'lib/vagrant-libvirt/action/message_not_running.rb', line 7 def initialize(app, _env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
11 12 13 14 |
# File 'lib/vagrant-libvirt/action/message_not_running.rb', line 11 def call(env) env[:ui].info(I18n.t('vagrant_libvirt.not_running')) @app.call(env) end |