Sha256: c431ca29a3eafad8c8fa9c059ae0173a23b48a65c22d46bb79ff4f068de0d0c1

Contents?: true

Size: 411 Bytes

Versions: 3

Compression:

Stored size: 411 Bytes

Contents

# frozen_string_literal: true

require 'log4r'
module VagrantPlugins
  module ProviderLocal
    module Action
      # This is used to determine if the VM is created
      class NotCreated
        def initialize(app, _env)
          @app = app
        end

        def call(env)
          env[:ui].info(I18n.t('vagrant_local.states.not_created'))
          @app.call(env)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-local-0.0.3 lib/vagrant-local/action/not_created.rb
vagrant-local-0.0.2 lib/vagrant-local/action/not_created.rb
vagrant-local-0.0.1 lib/vagrant-local/action/not_created.rb