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