Sha256: 3c6525b9aae0d707bbf4a766000cd36e8f0a6d5cb84c3195fc47d976b9de7583
Contents?: true
Size: 344 Bytes
Versions: 23
Compression:
Stored size: 344 Bytes
Contents
# frozen_string_literal: true module VagrantPlugins module ProviderLibvirt module Action class MessageNotCreated def initialize(app, _env) @app = app end def call(env) env[:ui].info(I18n.t('vagrant_libvirt.not_created')) @app.call(env) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems