Sha256: 37dc61b47760deec9072d65ad2fe1d365059a7bf48d46ddf4e27332b42d379a5
Contents?: true
Size: 308 Bytes
Versions: 16
Compression:
Stored size: 308 Bytes
Contents
module VagrantPlugins module Shell module Action class MessageAlreadyCreated def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_shell.already_created")) @app.call(env) end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems