class VagrantPlugins::ManagedServers::Action::MessageNotLinked

Public Class Methods

new(app, env) click to toggle source
# File lib/vagrant-managed-servers/action/message_not_linked.rb, line 5
def initialize(app, env)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/vagrant-managed-servers/action/message_not_linked.rb, line 9
def call(env)
  env[:ui].info(I18n.t("vagrant_managed_servers.states.long_not_linked"))
  @app.call(env)
end