Sha256: f2f71e21afba78581cecfab7841ec89ae270c8cbac44d447ab90810b24ea9e96
Contents?: true
Size: 367 Bytes
Versions: 57
Compression:
Stored size: 367 Bytes
Contents
module VagrantPlugins module MCS module Action class WarnNetworks def initialize(app, env) @app = app end def call(env) if env[:machine].config.vm.networks.length > 0 env[:ui].warn(I18n.t("vagrant_mcs.warn_networks")) end @app.call(env) end end end end end
Version data entries
57 entries across 57 versions & 1 rubygems