Class: VagrantPlugins::HP::Action::MessageNotCreated

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageNotCreated

Returns a new instance of MessageNotCreated.



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

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

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
# File 'lib/vagrant-hp/action/message_not_created.rb', line 14

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