Class: VagrantPlugins::Rimu::Actions::MessageNotCreated

Inherits:
AbstractAction
  • Object
show all
Defined in:
lib/vagrant-rimu/actions/message_not_created.rb

Instance Method Summary collapse

Methods inherited from AbstractAction

#call

Constructor Details

#initialize(app, _env) ⇒ MessageNotCreated

Returns a new instance of MessageNotCreated.



7
8
9
# File 'lib/vagrant-rimu/actions/message_not_created.rb', line 7

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

Instance Method Details

#execute(env) ⇒ Object



11
12
13
14
# File 'lib/vagrant-rimu/actions/message_not_created.rb', line 11

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