Sha256: 7edcc6beb069011cd9065f3bcef6c3949ca60241301a0f935cd9e02c313a4647
Contents?: true
Size: 349 Bytes
Versions: 3
Compression:
Stored size: 349 Bytes
Contents
module VagrantPlugins module VCloud module Action class MessageNotCreated def initialize(app, env) @app = app end def call(env) # FIXME: this error should be categorized env[:ui].info(I18n.t("vcloud.vm_not_created")) @app.call(env) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems