Sha256: 57fa4d6f1f7f9e19c58bdc53e00d4be8396ace8935977f9cc63f7db796444e19
Contents?: true
Size: 324 Bytes
Versions: 16
Compression:
Stored size: 324 Bytes
Contents
module VagrantPlugins module Parallels module Action class MessageAlreadyRunning def initialize(app, env) @app = app end def call(env) env[:ui].info I18n.t("vagrant.commands.common.vm_already_running") @app.call(env) end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems