Class: HashiCorp::VagrantVMwareDesktop::Action::Created

Inherits:
Object
  • Object
show all
Includes:
Common
Defined in:
lib/vagrant-vmware-desktop/action/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

Methods included from Common

#to_s

Constructor Details

#initialize(app, env) ⇒ Created

Returns a new instance of Created.



12
13
14
# File 'lib/vagrant-vmware-desktop/action/created.rb', line 12

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

Instance Method Details

#call(env) ⇒ Object



16
17
18
19
# File 'lib/vagrant-vmware-desktop/action/created.rb', line 16

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