Sha256: 67eb5df41d09374928a7d95911d87e599cdc20f6d1fabfb5188cafb1301b35b1
Contents?: true
Size: 379 Bytes
Versions: 5
Compression:
Stored size: 379 Bytes
Contents
module VagrantPlugins module Rackspace 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_rackspace.warn_networks")) end @app.call(env) end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems