Class: VagrantPlugins::ProviderZone::Action::NotCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderZone::Action::NotCreated
- Defined in:
- lib/vagrant-zones/action/not_created.rb
Overview
This is used to determine if the VM is created
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ NotCreated
constructor
A new instance of NotCreated.
Constructor Details
#initialize(app, _env) ⇒ NotCreated
Returns a new instance of NotCreated.
9 10 11 |
# File 'lib/vagrant-zones/action/not_created.rb', line 9 def initialize(app, _env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
13 14 15 16 |
# File 'lib/vagrant-zones/action/not_created.rb', line 13 def call(env) env[:ui].info(I18n.t('vagrant_zones.states.not_created')) @app.call(env) end |