Sha256: fa21f981ce4330f5b9d4aed2abac4d65f2dd906397721dee46476996f3df6027
Contents?: true
Size: 380 Bytes
Versions: 9
Compression:
Stored size: 380 Bytes
Contents
module VagrantPlugins module VCenter module Action # Prints out a message that the VM has not yet been created. class MessageNotCreated def initialize(app, env) @app = app end def call(env) env[:ui].info(I18n.t('vagrant_vcenter.power.vm_not_created')) @app.call(env) end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems