Sha256: d03c0d74a81476580b4b5ef4ad577f028640649e8e788306dfa5c3858045e678

Contents?: true

Size: 357 Bytes

Versions: 8

Compression:

Stored size: 357 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('vagrant_vcloud.vm_not_created'))
          @app.call(env)
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
vagrant-vcloud-0.5.0 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.7 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.6 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.4 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.3 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.2 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.1 lib/vagrant-vcloud/action/message_not_created.rb
vagrant-vcloud-0.4.0 lib/vagrant-vcloud/action/message_not_created.rb