Class: VagrantPlugins::Google::Action::MessageWillNotDestroy

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageWillNotDestroy

Returns a new instance of MessageWillNotDestroy.



18
19
20
# File 'lib/vagrant-google/action/message_will_not_destroy.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_will_not_destroy.rb', line 22

def call(env)
  env[:ui].info(I18n.t("vagrant_google.will_not_destroy", name: env[:machine].name))
  @app.call(env)
end