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