Sha256: 1fbccab472e53467be39421cb732f7a194df4e600aa5d64ddb1a73a9968522ed
Contents?: true
Size: 382 Bytes
Versions: 31
Compression:
Stored size: 382 Bytes
Contents
module VagrantPlugins module Parallels module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) env[:ui].info I18n.t("vagrant.commands.destroy.will_not_destroy", :name => env[:machine].name) @app.call(env) end end end end end
Version data entries
31 entries across 31 versions & 1 rubygems