Sha256: 7583df55cdb9155176699edaafe9c9e4034659b11c99ec66ba8ac047d231e271

Contents?: true

Size: 308 Bytes

Versions: 3

Compression:

Stored size: 308 Bytes

Contents

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-openstack-provider-0.1.2 lib/vagrant-openstack-provider/action/message_not_created.rb
vagrant-openstack-provider-0.1.1 lib/vagrant-openstack/action/message_not_created.rb
vagrant-openstack-provider-0.1 lib/vagrant-openstack/action/message_not_created.rb