Class: VagrantPlugins::ProviderZone::Action::IsCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderZone::Action::IsCreated
- Defined in:
- lib/vagrant-zone/action/is_created.rb
Overview
This can be used with “Call” built-in to check if the machine is created and branch in the middleware.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, _env) ⇒ IsCreated
constructor
A new instance of IsCreated.
Constructor Details
#initialize(app, _env) ⇒ IsCreated
Returns a new instance of IsCreated.
9 10 11 12 |
# File 'lib/vagrant-zone/action/is_created.rb', line 9 def initialize(app, _env) @app = app @logger = Log4r::Logger.new('vagrant_zone::action') end |
Instance Method Details
#call(env) ⇒ Object
14 15 16 17 18 |
# File 'lib/vagrant-zone/action/is_created.rb', line 14 def call(env) m = env[:machine].state.id env[:result] = env[:machine].state.id != :not_created @app.call(env) end |