Class: VagrantPlugins::ProviderLibvirt::Action::MessageNotCreated

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-libvirt/action/message_not_created.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ MessageNotCreated

Returns a new instance of MessageNotCreated.



5
6
7
# File 'lib/vagrant-libvirt/action/message_not_created.rb', line 5

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

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
# File 'lib/vagrant-libvirt/action/message_not_created.rb', line 9

def call(env)
  env[:ui].info(I18n.t('vagrant_libvirt.not_created'))
  @app.call(env)
end