Class: VagrantPlugins::Google::Action::MessageNotCreated

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageNotCreated

Returns a new instance of MessageNotCreated.



18
19
20
# File 'lib/vagrant-google/action/message_not_created.rb', line 18

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

Instance Method Details

#call(env) ⇒ Object



22
23
24
25
# File 'lib/vagrant-google/action/message_not_created.rb', line 22

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