Sha256: 6db90f534f697cde4d1bf3b36b6debcd88ef5829d766eb49c57f1fd72b009514
Contents?: true
Size: 455 Bytes
Versions: 15
Compression:
Stored size: 455 Bytes
Contents
module VagrantPlugins module VCloud module Action class MessageWillNotDestroy def initialize(app, env) @app = app end def call(env) # FIXME: This error should be categorized env[:ui].info( I18n.t( 'vagrant_vcloud.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