Class: VagrantPlugins::HP::Action::IsRunning

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-hp/action/is_running.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) ⇒ IsRunning

Returns a new instance of IsRunning.



12
13
14
# File 'lib/vagrant-hp/action/is_running.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_running.rb', line 16

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