Sha256: d393cf91e38b0dae256128db6adb81c2b722d1b4370ac4836751d7ee71fa8f01
Contents?: true
Size: 368 Bytes
Versions: 15
Compression:
Stored size: 368 Bytes
Contents
module VagrantPlugins module Sakura module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_sakura.will_not_destroy", name: env[:machine].name)) @app.call(env) end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems