Sha256: 3824516673c8c7a2a4fdfae61d46a0106a95c82b1bd0bb0c956423a65ae56076

Contents?: true

Size: 326 Bytes

Versions: 2

Compression:

Stored size: 326 Bytes

Contents

module VagrantPlugins
  module Cloudstack
    module Action
      class MessageNotCreated
        def initialize(app, env)
          @app = app
        end

        def call(env)
          env[:ui].info(I18n.t("vagrant_cloudstack.not_created"))
          @app.call(env)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.3.0 lib/vagrant-cloudstack/action/message_not_created.rb
vagrant-cloudstack-1.2.0 lib/vagrant-cloudstack/action/message_not_created.rb