Sha256: 25f64ca3fe91738a30532daff4f43729003f395fe5358c9f368c4b32b6fb6019

Contents?: true

Size: 361 Bytes

Versions: 2

Compression:

Stored size: 361 Bytes

Contents

# frozen_string_literal: true

#
# Copyright (c) 2020-present, Blue Marble Payroll, LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#

module Burner
  class Jobs
    # Do nothing.
    class Dummy < Job
      def perform(_output, _payload)
        nil
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
burner-1.0.0.pre.alpha.5 lib/burner/jobs/dummy.rb
burner-1.0.0.pre.alpha.4 lib/burner/jobs/dummy.rb