Class: VagrantPlugins::ArubaCloud::Action::IsCreated
- Inherits:
-
Object
- Object
- VagrantPlugins::ArubaCloud::Action::IsCreated
- Defined in:
- lib/vagrant-arubacloud/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.
7 8 9 10 |
# File 'lib/vagrant-arubacloud/action/is_created.rb', line 7 def initialize(app, env) @app = app @logger = Log4r::Logger.new('vagrant_arubacloud::action::is_created') end |
Instance Method Details
#call(env) ⇒ Object
12 13 14 15 |
# File 'lib/vagrant-arubacloud/action/is_created.rb', line 12 def call(env) env[:result] = env[:machine].id != nil @app.call(env) end |