Sha256: ad6fc3215d89245ba2ccd8b3ef814f6261e0db758be26aa20203abf054c74b3a
Contents?: true
Size: 349 Bytes
Versions: 7
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
7 entries across 7 versions & 1 rubygems