gosddc/vagrant-vcloudair

View on GitHub
lib/vagrant-vcloudair/action/message_not_created.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VagrantPlugins
  module VCloudAir
    module Action
      class MessageNotCreated
        def initialize(app, env)
          @app = app
        end

        def call(env)
          env[:ui].info(I18n.t('vagrant_vcloudair.vm.vm_not_created'))
          @app.call(env)
        end
      end
    end
  end
end