Class: HashiCorp::VagrantVMwareDesktop::Action::Running
- Inherits:
-
Object
- Object
- HashiCorp::VagrantVMwareDesktop::Action::Running
- Includes:
- Common
- Defined in:
- lib/vagrant-vmware-desktop/action/running.rb
Overview
This can be used with “Call” built-in to check if the machine is running.
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ Running
constructor
A new instance of Running.
Methods included from Common
Constructor Details
#initialize(app, env) ⇒ Running
Returns a new instance of Running.
12 13 14 |
# File 'lib/vagrant-vmware-desktop/action/running.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/running.rb', line 16 def call(env) env[:result] = env[:machine].state.id == :running @app.call(env) end |