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