Class: VagrantPlugins::ProviderVeertu::Action::Created
- Inherits:
-
Object
- Object
- VagrantPlugins::ProviderVeertu::Action::Created
- Defined in:
- lib/vagrant-veertu/action/created.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, env) ⇒ Created
constructor
A new instance of Created.
Constructor Details
#initialize(app, env) ⇒ Created
Returns a new instance of Created.
5 6 7 |
# File 'lib/vagrant-veertu/action/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 |
# File 'lib/vagrant-veertu/action/created.rb', line 9 def call(env) # Set the result to be true if the machine is created. env[:result] = env[:machine].state.id != :not_created # Call the next if we have one (but we shouldn't, since this # middleware is built to run with the Call-type middlewares) @app.call(env) end |