Class: VagrantPlugins::ProviderZone::Action::NotCreated

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-zone/action/not_created.rb

Instance Method Summary collapse

Constructor Details

#initialize(app, _env) ⇒ NotCreated

Returns a new instance of NotCreated.



7
8
9
# File 'lib/vagrant-zone/action/not_created.rb', line 7

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

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
# File 'lib/vagrant-zone/action/not_created.rb', line 11

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