Sha256: 9332577ff3206ffc87beadcb1463ee6ecd7bc54a759e43f8098d2c315e6c4f3b
Contents?: true
Size: 410 Bytes
Versions: 54
Compression:
Stored size: 410 Bytes
Contents
# frozen_string_literal: true require 'log4r' module VagrantPlugins module ProviderZone 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_zones.states.not_created')) @app.call(env) end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems