Class: VagrantPlugins::TiktalikVagrant::Action::IsCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::TiktalikVagrant::Action::IsCreated
- Defined in:
- lib/vagrant-tiktalik/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
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ IsCreated
constructor
A new instance of IsCreated.
Constructor Details
#initialize(app, env) ⇒ IsCreated
Returns a new instance of IsCreated.
7 8 9 |
# File 'lib/vagrant-tiktalik/action/is_created.rb', line 7 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
11 12 13 14 |
# File 'lib/vagrant-tiktalik/action/is_created.rb', line 11 def call(env) env[:result] = env[:machine].state.id != :not_created @app.call(env) end |