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.



9
10
11
# File 'lib/vagrant-vmware-desktop/action/created.rb', line 9

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

Instance Method Details

#call(env) ⇒ Object



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

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