Class: VagrantPlugins::ManagedServers::Action::IsLinked

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-managed-servers/action/is_linked.rb

Overview

This can be used with “Call” built-in to check if the machine is linked and branch in the middleware.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ IsLinked

Returns a new instance of IsLinked.



7
8
9
# File 'lib/vagrant-managed-servers/action/is_linked.rb', line 7

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
# File 'lib/vagrant-managed-servers/action/is_linked.rb', line 11

def call(env)
  env[:result] = env[:machine].state.id != :not_linked
  @app.call(env)
end