Class: VagrantPlugins::Utm::Action::MessageNotCreated

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant_utm/action/message_not_created.rb

Overview

Print VM not created message.

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ MessageNotCreated

Returns a new instance of MessageNotCreated.



11
12
13
# File 'lib/vagrant_utm/action/message_not_created.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_created.rb', line 15

def call(env)
  env[:ui].info I18n.t("vagrant.commands.common.vm_not_created")
  @app.call(env)
end