Class: VagrantPlugins::VCloud::Action::MessageWillNotDestroy

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ MessageWillNotDestroy

Returns a new instance of MessageWillNotDestroy.



5
6
7
# File 'lib/vagrant-vcloud/action/message_will_not_destroy.rb', line 5

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

Instance Method Details

#call(env) ⇒ Object



9
10
11
12
13
14
15
16
17
18
# File 'lib/vagrant-vcloud/action/message_will_not_destroy.rb', line 9

def call(env)
  # FIXME: This error should be categorized
  env[:ui].info(
    I18n.t(
      'vagrant_vcloud.will_not_destroy',
      name: env[:machine].name
    )
  )
  @app.call(env)
end