Sha256: 58e3eb7b848a55ec9191c7dc12f2cb6d1e22101348ee996afa7682e847757080

Contents?: true

Size: 316 Bytes

Versions: 23

Compression:

Stored size: 316 Bytes

Contents

module VagrantPlugins
  module OpenStack
    module Action
      class MessageAlreadyCreated
        def initialize(app, env)
          @app = app
        end

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

Version data entries

23 entries across 23 versions & 3 rubygems

Version Path
vagrant-openstack-plugin-0.1.3 lib/vagrant-openstack-plugin/action/message_already_created.rb
vagrant-openstack-plugin-0.1.2 lib/vagrant-openstack-plugin/action/message_already_created.rb
vagrant-openstack-plugin-0.1.1 lib/vagrant-openstack/action/message_already_created.rb