Sha256: 307df8ce3210f23116f70bf554088d77fd396ebd1e3345b6a46451d6518727b5

Contents?: true

Size: 300 Bytes

Versions: 7

Compression:

Stored size: 300 Bytes

Contents

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

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
vagrant-xhyve-0.4.1 lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.4.0 lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.3.0 lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.2.0 lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.1.1 lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.1.1.pre lib/vagrant-xhyve/action/message_not_created.rb
vagrant-xhyve-0.1.0.pre lib/vagrant-xhyve/action/message_not_created.rb