Class: VagrantPlugins::Filoo::Action::IsCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::Filoo::Action::IsCreated
- Defined in:
- lib/vagrant_filoo/action/is_created.rb
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.
5 6 7 |
# File 'lib/vagrant_filoo/action/is_created.rb', line 5 def initialize(app, env) @app = app end |
Instance Method Details
#call(env) ⇒ Object
9 10 11 12 13 14 15 16 17 18 |
# File 'lib/vagrant_filoo/action/is_created.rb', line 9 def call(env) env[:result] = true if env[:machine].state.id == :not_created env[:result] = false end if env[:machine].state.id == :deleted env[:result] = false end @app.call(env) end |