Sha256: cf5c52d7a81763c9f6816bfede590974c594c2c07a123e2753c3de62dfddd8a2
Contents?: true
Size: 328 Bytes
Versions: 7
Compression:
Stored size: 328 Bytes
Contents
module VagrantPlugins module ManagedServers module Action class MessageNotReachable def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_managed_servers.host_not_reachable")) @app.call(env) end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems