Sha256: e5b935167be2c2b333a657865e2f435945052bb0c099a4edc889aad061d0c40f

Contents?: true

Size: 302 Bytes

Versions: 2

Compression:

Stored size: 302 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
vagrant-ganeti-0.1.1 lib/vagrant-ganeti/action/message_not_created.rb
vagrant-ganeti-0.0.1 lib/vagrant-plugin-ganeti/action/message_not_created.rb