Class: VagrantPlugins::HP::Action::IsCreated

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-hp/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

Constructor Details

#initialize(app, env) ⇒ IsCreated

Returns a new instance of IsCreated.



12
13
14
# File 'lib/vagrant-hp/action/is_created.rb', line 12

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

Instance Method Details

#call(env) ⇒ Object



16
17
18
19
# File 'lib/vagrant-hp/action/is_created.rb', line 16

def call(env)
  env[:result] = env[:machine].state.id != :not_created
  @app.call(env)
end