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