Sha256: 64c71bfb658fcdef512019b93dbfc963bc2f5c67e6dc9aa6a2c94b8ecc044905
Contents?: true
Size: 331 Bytes
Versions: 27
Compression:
Stored size: 331 Bytes
Contents
module VagrantPlugins module AWS module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t("vagrant_aws.will_not_destroy", name: env[:machine].name)) @app.call(env) end end end end end
Version data entries
27 entries across 27 versions & 9 rubygems