Sha256: 88ee7c7db6357fa694c6695048b999ceec38883243b49ac7c061fffd065b2266
Contents?: true
Size: 365 Bytes
Versions: 15
Compression:
Stored size: 365 Bytes
Contents
module VagrantPlugins module VCloud module Action class MessageAlreadyRunning def initialize(app, env) @app = app end def call(env) # FIXME: This error should be categorized env[:ui].info(I18n.t('vagrant_vcloud.vm_already_running')) @app.call(env) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems