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