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

Version Path
vagrant-vcloud-0.3.3 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.3.2 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.3.1 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.3.0 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.2.2 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.2.1 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.2.0 lib/vagrant-vcloud/action/message_not_created.rb