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